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. LordDuzy

    2 Questions about the winsock control

    1. Is there a possibility to "Listen" & "SendData" with the same winsock control at one time?? 2. How to send a file using the SendData method and haw to save it back after reciving it ( GetData method). Plz help me... Thanks in advance If there is a will, there is a way :D
  2. LordDuzy

    How to find and change filenames

    How to find all: for example mp3 files on my C drive. I would be interested if i'd be able to change there names to music and index number thx in advance
  3. LordDuzy

    how to add source code??

    Oh, never thought of that :) thx vbSun
  4. LordDuzy

    API to turn off screen saver?

    Hmmm Do you want to turn of the screen-saver permenently?? If so, try the registry
  5. LordDuzy

    how to add source code??

    I want to create more objects like theese. And it's not so easy to write source code for every one before lunching the project. how to build a function that creates sub functions????????
  6. LordDuzy

    how to add source code??

    I've created a control while the program is working: Set lblTree = Main.Controls.Add("VB.Image", "Tree") With lblTree .Width = 700 .Visible = True .Height = 700 .ToolTipText = "HI" .Top = 500 .Left = 500 End With And how to add source code to the created control?? (Private Sub Tree_Click()...
  7. LordDuzy

    Disconnect with internet

    How to disconnect if i'm on-line?? Are the API functions able to do it?? thx in advance ************** the person who said that money doesn't bring happines... didn't know where to go shoping :D
  8. LordDuzy

    How to use fso.GetFile to get more files??

    thanks :) just what i need
  9. LordDuzy

    How to use fso.GetFile to get more files??

    This is the problem When i get a file, i have to place the full name Like: Set myfile = fso.GetFile("C:\Myfolder\file.dat") Is there a possibility to "Get" all the files in one dir without knowing the file names?? or just one after a nother useing "For each next"? thx in advance
  10. LordDuzy

    How to use the inet control on lan servers

    is there a possibylity to use the inet control (and its properties) on my LAN With inet1 .AcceseType = inDirect (????) .Protocol = icFTP .UserName = (do i have to fill it??) .Password = (the same??) what else Thanks in advance :D
  11. LordDuzy

    How to PUT or SEND a file to a FTP server??

    cool It works. Thanks for the help :) Here's a star for you
  12. LordDuzy

    How to PUT or SEND a file to a FTP server??

    With Inet1 .Protocol = icFTP .URL = "ftp://xxxxxxxxxxxxx" .AccessType = icDirect .Password = "*********" .UserName = "*********" End With Inet1.Execute , "SEND C:\windows\pulpit\keys.txt /keys.txt"
  13. LordDuzy

    How to PUT or SEND a file to a FTP server??

    When i do like Inet1.Execute "SEND c:\file1.txt /file1.txt", icByteArray there's an error: cannot coerce type (35760) what do I have to do?? icString fails also help me plz!
  14. LordDuzy

    how to detect an internet connection

    hey thanks man it works :D
  15. LordDuzy

    how to detect an internet connection

    I need my program to detect an internet connection. I need it because i want to use the internet transfer control when the computer is connected.
  16. LordDuzy

    use FTP without Internet transfer control

    Oh...... :) good point thx a lot
  17. LordDuzy

    use FTP without Internet transfer control

    I dont want to use any special controls i want my application to be easyly installed without winsock to
  18. LordDuzy

    use FTP without Internet transfer control

    Is there a possibility to create an application, that will put a file on a FTP serwer (i know the user and password), the same goes to deleting, downloading files, ect. LordDuzy
  19. LordDuzy

    capture key

    Thanks for the help :)
  20. LordDuzy

    capture key

    what is the best and efective way to catch the key's that are typed on the keyboard, when the form is not on focus?? LordDuzy

Part and Inventory Search

Back
Top