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 SkipVought 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: LJR
  • Order by date
  1. LJR

    Open Folder

    Search help for FolderBrowserDialog...
  2. LJR

    Strange queue browsing behaviour

    Oops, roaming around on the IBM MQSeries website, I found an exact description of this problem (IC24289). I have downloaded the CSD07 update and my problems are gone. (The other suggestion: setting an environment variable MQGETPERF=NO did not work for me). LJ
  3. LJR

    Strange queue browsing behaviour

    Hi, I am experiencing very strange behaviour when browsing a queue. I must be missing something very obvious here. I am running MQSeries 5.1 for NT and using Visual Basic 5.0 and the ActiveX data components to access MQSeries. I have a small test application that puts three messages in a...
  4. LJR

    MTS memory leak?

    I know about the issues involved wih SP3 and VB5 but this has the same result in VB6 and SP6. (Our production environment (which is quite large) prevents us from upgrading at this point. However, did you notice the extreme simplicity of the program? It looks like that calling...
  5. LJR

    MTS memory leak?

    Hi, We have memory leaks in a component running under MTS. This is the mail that I posted in the Microsoft MTS programming mailgroup. -----> We have created a MTS component that is used by about 80 users to access a SQL database. Every two days or so, the MTS server process (mtx.exe) consumes...
  6. LJR

    Combo boxes again ;)

    Hmmm, This is supposed to be Hungarion notation so it is the lowercase letter L, which identifies the variable as a Long. Best to copy the code from the message and paste it into VB(that's what I did to post the message). So in order to select your Smith guy call: SelectItemByItemData 45 Cheers
  7. LJR

    Combo boxes again ;)

    Better check my code again. It does *not* say: Combo1.ListIndex = Index but it says: Combo1.ListIndex = lIndex lIndex (mind the letter 'l' in front of it) lIndex is the index in the combobox found by the for-loop of the Itemdata that is passed to the function. cheers
  8. LJR

    CreateProcess calls only from Windows dir

    Hmmm, This might be too easy: Shell "e:\Program Files\Internet Explorer\Iexplore.exe", vbMaximizedFocus
  9. LJR

    Combo boxes again ;)

    Hi, Private Sub SelectItemByItemData(ByVal lItemData As Long) Dim lIndex As Long Dim bFound As Boolean bFound = False For lIndex = 0 To Combo1.ListCount - 1 bFound = (Combo1.ItemData(lIndex) = lItemData) If bFound Then Exit For End If Next lIndex If bFound...

Part and Inventory Search

Back
Top