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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by xjazz

  1. xjazz

    how to localize msgbox?

    I took a look and tried. but I don't think this is what I'm looking for. thank you anyway
  2. xjazz

    Opening a form depending on value in list box & option button

    I don't know if I got you correctly. maybe you can use frames in on form. and display one frame base on the option. and use different calculation.
  3. xjazz

    Opening a form depending on value in list box & option button

    I think you'd better tell us what the difference between those forms. if the only difference is the caption, then you can just change it when you load it. but I bet it's not that simple though. :)
  4. xjazz

    creating XML file with VB6

    hmmm thanks but you missed a ";" it should be: strBlahBlah=replace(strBlahBlah,"&","&")
  5. xjazz

    how to localize msgbox?

    thanks you so much. but there are three downloads. 1 for SP5, 1 for SP4, 1 for SP3. I am using SP6, should I go ahead install the one for SP5 and try it? :(
  6. xjazz

    creating XML file with VB6

    that's the point :( btw: just tried put "CRLF" in. but nothing happened.
  7. xjazz

    creating XML file with VB6

    thanks but is there other restrictions? how about "\"? "|"... ? do I just need to take care of "&"? thanks
  8. xjazz

    creating XML file with VB6

    my program needs to write some information into a log file. now I use XML file as this log. I was using XML object to create and add entries. but seems it will slow down the perfermance.bigger the file, longer it takes to add an entry. so I decide to use file functions to do that. I use "open"...
  9. xjazz

    how to localize msgbox?

    I use resource file to localize my program. but the caption of button in msgbox will still remain in English as "Yes", "No", "OK"... how can I change those as well? thanks
  10. xjazz

    program hang when using Named Pipe

    strongm: you are right. thank you so much finally, it works. thank you everybody :)
  11. xjazz

    program hang when using Named Pipe

    i tried. i use this to create named pipe: dwOpenMode = PIPE_ACCESS_DUPLEX Or FILE_FLAG_OVERLAPPED dwPipeMode = PIPE_WAIT Or PIPE_TYPE_MESSAGE Or PIPE_READMODE_MESSAGE hPipe = CreateNamedPipe(szPipeName, dwOpenMode, dwPipeMode, _ 10, 10000, 2000...
  12. xjazz

    program hang when using Named Pipe

    tried, but failed. because i found actually, it's the ConnectNamedPipe function block the process. it will hang until it connected to that named pipe. don't know what to do now. :(
  13. xjazz

    program hang when using Named Pipe

    hi, i am using named pipe to pass values from a dll to a exe file. the executable is an application run as the named pipe server. and it will do something else besides get values from the dll which is the client side of the named pipe. i used a Do Loop in the server. but the program will hang...
  14. xjazz

    what's the best to send values from DLL to EXE ?

    Sheco: you are right. there are four programs. Client.exe, (send SOAP request) Server.exe(actually is IIS or other web server) Server.dll(to listen SOAP request) User.exe(communicate with user base on the info received) BobRodes could you give me more hints? thanks
  15. xjazz

    multi-language resource file doesn't work sometimes

    i didn't see any dependancies i left out with the tools. and i don't know why it always uses EN-US. but as long as there is EN-US in the string table, it will use it no matter if it's default or what the language setting is. if you are talking about setting as default is making the column the...

Part and Inventory Search

Back
Top