Click here to Skip to main content
15,909,896 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to create a Bitmap image from a array of Pixel data.... Pin
Anonymous12-Oct-04 2:09
Anonymous12-Oct-04 2:09 
Generalhow Pin
Yulianto.11-Oct-04 19:14
Yulianto.11-Oct-04 19:14 
GeneralRe: how Pin
McClamm12-Oct-04 11:53
McClamm12-Oct-04 11:53 
GeneralFind List View Item Pin
Popoxinhxan11-Oct-04 16:30
Popoxinhxan11-Oct-04 16:30 
QuestionHow to hide a form at the program startup? Pin
ting66811-Oct-04 15:54
ting66811-Oct-04 15:54 
AnswerRe: How to hide a form at the program startup? Pin
Alex Korchemniy11-Oct-04 16:35
Alex Korchemniy11-Oct-04 16:35 
GeneralHelp needed..Urgent.....using CreateBitmap function in c# Pin
Kiran Satish11-Oct-04 12:26
Kiran Satish11-Oct-04 12:26 
GeneralMSMQ over HTTP Pin
francis10011-Oct-04 11:02
francis10011-Oct-04 11:02 
Can anyone please help?

I am able to create a private MSMQ queue using: .\private$\MyQueue. However, when I try to do the exact same thing over HTTP, it fails.
MessageQueue.Create parameter string is:
string strQueuePathName = "FormatName:DIRECT=HTTP://127.0.0.1/msmq/private$/MyQueue"

When I check for:
if(MessageQueue.Exists(strQueuePathName)) it says that it cannot check for this path.

I tried may combinations, sometimes it'll fail sometimes it doesn't complain, but when you into Computer Management tool, under Services and Applications, Private Queues, the queue is Not created.
Here's my code:

string strQueuePathName = @"FormatName:DIRECT=HTTP://127.0.0.1/msmq/private$/MyQueue";

private MessageQueue GetQ(string strQueuePathName)
{
MessageQueue mq = null;

if(MessageQueue.Exists(strQueuePathName))
mq = MessageQueue.Create(strQueuePathName);
else
mq = new System.Messaging.MessageQueue(strQueuePathName);
return mq;
}

Thanks in advance for your help.


QuestionCan you safely start a form on a new thread? Pin
eyoung7011-Oct-04 10:59
eyoung7011-Oct-04 10:59 
AnswerRe: Can you safely start a form on a new thread? Pin
eyoung7011-Oct-04 11:16
eyoung7011-Oct-04 11:16 
GeneralRe: Can you safely start a form on a new thread? Pin
Dave Kreskowiak11-Oct-04 15:30
mveDave Kreskowiak11-Oct-04 15:30 
QuestionHow to access a control on a form from another class? Pin
DTWC_Lawrence11-Oct-04 10:20
DTWC_Lawrence11-Oct-04 10:20 
AnswerRe: How to access a control on a form from another class? Pin
Heath Stewart11-Oct-04 10:52
protectorHeath Stewart11-Oct-04 10:52 
GeneralProblem reading Files Pin
ee9903511-Oct-04 8:24
ee9903511-Oct-04 8:24 
GeneralRe: Problem reading Files Pin
Mike Dimmick11-Oct-04 10:15
Mike Dimmick11-Oct-04 10:15 
GeneralTrying to copy a datatable... Pin
Carl Mercier11-Oct-04 7:54
Carl Mercier11-Oct-04 7:54 
GeneralRe: Trying to copy a datatable... Pin
Anonymous11-Oct-04 8:08
Anonymous11-Oct-04 8:08 
GeneralRe: Trying to copy a datatable... Pin
Carl Mercier11-Oct-04 8:16
Carl Mercier11-Oct-04 8:16 
GeneralSimple HTML editor for winforms Pin
Brett Slaski11-Oct-04 7:20
Brett Slaski11-Oct-04 7:20 
GeneralRe: Simple HTML editor for winforms Pin
Jacob Hammack11-Oct-04 10:53
Jacob Hammack11-Oct-04 10:53 
GeneralRe: Simple HTML editor for winforms Pin
Brett Slaski11-Oct-04 15:59
Brett Slaski11-Oct-04 15:59 
GeneralTime entry 'lost' in dtp Pin
DF_Bandit11-Oct-04 7:18
DF_Bandit11-Oct-04 7:18 
GeneralRe: Time entry 'lost' in dtp Pin
DF_Bandit11-Oct-04 12:59
DF_Bandit11-Oct-04 12:59 
GeneralTime stamp Pin
wk_vigorous11-Oct-04 6:51
wk_vigorous11-Oct-04 6:51 
GeneralRe: Time stamp Pin
Heath Stewart11-Oct-04 10:56
protectorHeath Stewart11-Oct-04 10:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.