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: *

  1. Crystalinity

    Winsock prob

    He said, "Let me know if you download it, so I can take it back off the server" Obviously it is off the server now, so of course the link is dead. Crystalinity
  2. Crystalinity

    Winsock prob

    He said, "Let me know if you download it, so I can take it back off the server" Obviously it is off the server now, so of course the link is dead.
  3. Crystalinity

    Winsock prob

    This is perfect, thanks! Crystalinity P.S. Thanks for the credit, but you spelt my name wrong...
  4. Crystalinity

    Winsock prob

    Thanks mate. I've downloaded it. Crystalinity
  5. Crystalinity

    Dir() command problems

    Try using DOS no-more-than-8.3 notataion, e.g. [code] Debug.Print Dir("c:\progra~1\visio\f*.*") ---------------------------------------- Crystalinity | /| _/_|_\_ Pure \ | / Silicon \|/ Data |
  6. Crystalinity

    Shell Wait 16 Bit

    Sendkeys, anyone? Set Timer.Interval 'and timeout in milliseconds Private Sub Timer_Timer() SendKeys "%F x" 'or whatever exit keys the program requires SendKeys "exit" End Sub The only problem with this is if the user removes focus from your 16-bit program. Crystalinity
  7. Crystalinity

    MAPI Control

    However, Winsock can be used for email if one connects to 127.0.0.1:25. Never heard of JMail What is it? Crystalinity ---------------------------------------- Crystalinity | /| _/_|_\_ Pure \ | / Silicon \|/ Data |
  8. Crystalinity

    Winsock prob

    Thanks for the advice ;-) This is exactly what I am trying to do. Sorry to have posted so much code, but it probably won't happen again as (joy of joys!) I have discovered the Split() function :-) Crystalinity
  9. Crystalinity

    MAPI Control

    No, as a lot of programs notify if an email is being sent via MAPI, which makes your program look messy and unprofessional. Crystalinity P.S. I recommend Winsock.
  10. Crystalinity

    Winsock error

    Have you done anything to the variable type before sending it? Try converting it to a string. Crystalinity
  11. Crystalinity

    to convert vb 5 source code into vb 6...

    Sorry, don't quite get you... You have a VB5 program and want to convert it to VB6, or you want to hack your copy of VB5 and turn it into VB6? If the former, you should be able to use the same source, unless it's particularly complex; most VB5 functions and key words are also in VB6. I started...
  12. Crystalinity

    How to Disable PopUpMenu and Ctrl + V in a textbox

    How about doing onKeyUp and check for ctrl, then check for V, and if they are both there setting the textbox's Text property to ""? That should fix the ctrl+v problem. I've still got to give the other some thought... Crystalinity
  13. Crystalinity

    English Text into VB

    Complex task is right. You'd have to make a database of every possible English word or phrase, and its VB equivalent. This would be a nightmare. Prepared to take about 20 years? Crystalinity P.S. In 10 years, VB will probably be obsolete. VB6 definately will. My advice: FORGET IT. P.P.S...
  14. Crystalinity

    Winsock prob

    I think it's OK because I have no idea where the porblem is occurring so I have no choice but to post the entire program.
  15. Crystalinity

    Winsock prob

    P.P.S. Is this post too long? Plz tell so I know next time.
  16. Crystalinity

    communicating between too compiled programs??

    Alternatively, you could use Winsock. I now love Winsock, it's got to be one of the most powerful controls built into VB. Private Sub Form_Load() Winsock1.RemotePort = 1001 ' or other availabe port Winsock1.RemoteHost = 127.0.0.1 ' address assigned by default to localhost Winsock1.Connect...
  17. Crystalinity

    Multi timer problem

    Check if a certain file exists at Form_Load(), then if it doesn't, store the time in a file at Form_Unload(). If it does, load the time from the file and subtract it from the current time. This way you can find out how much time has passed since the last time the program was run, and make...
  18. Crystalinity

    Winsock prob

    I created a project composed of two executives - a server designed to run silently in the background and display message boxes at a signal from a client. Server.exe is composed of: AdvServer.frm: VERSION 5.00 Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0&quot...
  19. Crystalinity

    Winsock error

    Um... Windsock? ;-) If that's how you typed it in code, no wonder...

Part and Inventory Search

Back
Top