Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dqmq
  • Order by date
  1. dqmq

    Parent Child Table relationship

    You need to join the two tables in the where clause, ie. "where customer_info.ID = xxxx and Customer_info.ID = customer_VID.ID"
  2. dqmq

    Duplicate Correlation ID

    You need to either clear the md.correlid before each put or use MQPMO_new_correl_id. Otherwise, MQ will use (and return) whatever was there before the put instead of generating a unique value to serve your purpose.
  3. dqmq

    mqput message identifier

    memcpy(md.MsgId, MQMI_NONE, sizeof(md.MsgId) ); memcpy(md.MsgId, yourvalue, sizeof(yourvalue) ); The first line clears out message-id, the second line populates it with yourvalue. If yourvalue is always 24 bytes, then you don't need the first line.
  4. dqmq

    How to set the Msg Id in VB while putting Message in IBM MQ.

    Assuming transaction ID always contains hex digits, then you can convert every two hex digits to a binary value that occupies 1 byte. The entire 32 digits can then be passed in 16 bytes of the message-id. MQ won't touch the value in message-id, so at the other end or when the message makes it's...
  5. dqmq

    DOS EDIT will not run on XP

    Maybe your program will run, maybe not. It certainly won't need the PIF. Open windows explorer and navigate to the folder that contains the .exe file you want to run. Double click on it. If you are lucky, it will startup the DOS program in a command window.

Part and Inventory Search

Back
Top