Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
GeneralRe: also i am asking about xml ?? Pin
abdallahziad20-Sep-06 3:18
abdallahziad20-Sep-06 3:18 
QuestionHow to display numbers in different formats like exponential Pin
deepualuru20-Sep-06 0:33
deepualuru20-Sep-06 0:33 
AnswerRe: How to display numbers in different formats like exponential Pin
Christian Graus20-Sep-06 0:42
protectorChristian Graus20-Sep-06 0:42 
QuestionORCA Pin
MHASSANF20-Sep-06 0:23
MHASSANF20-Sep-06 0:23 
AnswerRe: ORCA Pin
Christian Graus20-Sep-06 0:26
protectorChristian Graus20-Sep-06 0:26 
QuestionUsing C#, how to compare table data from 2 different databases Pin
JPD20-Sep-06 0:08
JPD20-Sep-06 0:08 
AnswerRe: Using C#, how to compare table data from 2 different databases Pin
Christian Graus20-Sep-06 0:29
protectorChristian Graus20-Sep-06 0:29 
QuestionC# and IBM WebSphere MQ message borwsing Pin
How Gee19-Sep-06 23:51
How Gee19-Sep-06 23:51 
Hello,

Can anyone help me, how can i browse the all messages in the queue? i have found several examples to get or put the messages, but about the browsing i haven't.

The folloing example is browse the first messages, but i would like to see the all messages...
<br />
<br />
    MQQueueManager mqQMgr;<br />
    MQQueue mqQueue;<br />
    MQMessage mqMsg = new MQMessage();<br />
    MQGetMessageOptions mqGetMsgOpts = new MQGetMessageOptions();<br />
    mqQMgr = new MQQueueManager(qmName);<br />
    mqQueue = mqQMgr.AccessQueue(qName,<br />
                    MQC.MQOO_BROWSE | MQC.MQGMO_LOGICAL_ORDER    // open queue for browse<br />
                    + MQC.MQOO_FAIL_IF_QUIESCING);<br />
    mqGetMsgOpts.Options = MQC.MQGMO_WAIT | MQC.MQGMO_BROWSE_FIRST;<br />
    mqQueue.Get(mqMsg, mqGetMsgOpts);<br />
    MessageBox.Show(mqMsg.ReadString(mqMsg.TotalMessageLength));<br />


Thanx,
Gee
AnswerRe: C# and IBM WebSphere MQ message borwsing Pin
Gavin Jerman20-Sep-06 1:39
Gavin Jerman20-Sep-06 1:39 
QuestionHow to add a seperator in windows context menu ? Pin
Waqas Nasir19-Sep-06 23:47
Waqas Nasir19-Sep-06 23:47 
Questiondoubt about onlayout Pin
kalaveer19-Sep-06 23:22
kalaveer19-Sep-06 23:22 
QuestionHow to get the last command line argument or argument without the delimiter Pin
zxc8919-Sep-06 23:16
zxc8919-Sep-06 23:16 
AnswerRe: How to get the last command line argument or argument without the delimiter Pin
Christian Graus19-Sep-06 23:27
protectorChristian Graus19-Sep-06 23:27 
GeneralRe: How to get the last command line argument or argument without the delimiter Pin
zxc8919-Sep-06 23:47
zxc8919-Sep-06 23:47 
GeneralRe: How to get the last command line argument or argument without the delimiter Pin
Christian Graus19-Sep-06 23:49
protectorChristian Graus19-Sep-06 23:49 
GeneralRe: How to get the last command line argument or argument without the delimiter Pin
zxc8919-Sep-06 23:58
zxc8919-Sep-06 23:58 
GeneralRe: How to get the last command line argument or argument without the delimiter Pin
Christian Graus20-Sep-06 0:05
protectorChristian Graus20-Sep-06 0:05 
QuestionStreamReader and special tag problem Pin
cecildt19-Sep-06 23:08
cecildt19-Sep-06 23:08 
AnswerRe: StreamReader and special tag problem Pin
Christian Graus19-Sep-06 23:15
protectorChristian Graus19-Sep-06 23:15 
GeneralRe: StreamReader and special tag problem Pin
cecildt19-Sep-06 23:21
cecildt19-Sep-06 23:21 
QuestionBit Fields Pin
Sabry190519-Sep-06 23:01
Sabry190519-Sep-06 23:01 
AnswerRe: Bit Fields Pin
Christian Graus19-Sep-06 23:19
protectorChristian Graus19-Sep-06 23:19 
QuestionSELECT * FROM DB WHERE aFIELD = Null Pin
Glen Harvy19-Sep-06 22:40
Glen Harvy19-Sep-06 22:40 
AnswerRe: SELECT * FROM DB WHERE aFIELD = Null Pin
Christian Graus19-Sep-06 22:44
protectorChristian Graus19-Sep-06 22:44 
GeneralRe: SELECT * FROM DB WHERE aFIELD = Null Pin
Glen Harvy19-Sep-06 23:34
Glen Harvy19-Sep-06 23:34 

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.