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!

Search results for query: *

  • Users: xjazz
  • Order by date
  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...
  16. xjazz

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

    actually, i am trying to this: my client will send some info to my server using SOAP. there is a DLL in my server which receive and handle the infos sent by the client. however, i need this DLL be able to send those infos(or values) to a running EXE program, so that this EXE program can base on...
  17. xjazz

    multi-language resource file doesn't work sometimes

    of course i distribute my program with setup program which created by installshield. but i have no idea about what dependency it use here. :( can anyone help me out?
  18. xjazz

    multi-language resource file doesn't work sometimes

    hi, guys i installed a vm machine which is WinXP Pro+SP1 then i tried to run my program. but it didn't work. always use English(US) then i installed Visual Studio 6 + SP6(because i can't run VB until installed SP6) before installed SP6, it didn't work either. but after SP6 installed and VB can...
  19. xjazz

    multi-language resource file doesn't work sometimes

    JAG i don't think you are right. on those working machine, when you choose a language from the list of "Standards and forms", you don't even click apply button, the program will run with proper language. anyway, i tried to change Location to Mexico or France too. doesn't work either. once...
  20. xjazz

    multi-language resource file doesn't work sometimes

    no, the program didn't do anything to determine what language to use. because Windows supposes to be able to choose the right language base on windows OS's language setting. and it works sometimes, it really confused me. i have two computers, A and B. A has Win XP Pro+SP2 and VS 6.0 installed...

Part and Inventory Search

Back
Top