Search:

Type: Posts; User: peet1909

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    10,268

    Re: Log buttons clicked and other user activity?

    Yeah!!!

    That's what I'm talking about!

    Thanks a lot guys!!
  2. Replies
    5
    Views
    10,268

    Re: Log buttons clicked and other user activity?

    Thanks for the reply.
    Can you give me a bit more info please?
    Maybe a small example?
  3. Replies
    5
    Views
    10,268

    Log buttons clicked and other user activity?

    Is there a way to log all the buttons clicked on any form in my application from a central place (in the same application)?

    I have a very big application so adding code to each button click will...
  4. Replies
    2
    Views
    560

    Monitor TV power status?

    I have a big problem.
    We use TV's hooked up to windows PC's to broadcast adverts.
    The problem is that the guys are forgetting to turn the TV's back on (the PC's stay on).

    Is there a way with VB6...
  5. Replies
    5
    Views
    1,600

    Re: MshFlexgrid highlight active row

    It doesn't highlight the row though.
    It seems to highlight it if I click on it with the mouse first. Then I can navigate using the arrow keys and it does what it's supposed to.

    Currently I set...
  6. Replies
    5
    Views
    1,600

    Re: MshFlexgrid highlight active row

    Thanks, but not working.
    The by row works, but I want the cell background color to change when moving between rows (using arrow keys).
  7. Replies
    5
    Views
    1,600

    MshFlexgrid highlight active row

    I need to highlight the active row in a mshflexgrid.
    the user is navigating using arrow keys.
    Whichever row the user's on must highlight.

    How can I do that?:confused:
  8. Re: VB6 Listbox - need to load thousands of items

    Thanks si_the_geek and Delboy23!
    I have changed my application to force the users to use the filter and searches and only displayed the first 100 records in the list box.
    They will just have to use...
  9. Re: VB6 Listbox - need to load thousands of items

    The users have to have a list with all products in, so there's no way of getting around that.
    They do have search functions and filter functions to use on set listbox items if they prefer.
  10. VB6 Listbox - need to load thousands of items

    I need to load thousands of items into a listbox.
    Currently I am reading records from an Access database and adding them to the listbox.

    This is very slow.
    What is the fastest way I can add...
  11. Replies
    2
    Views
    882

    Re: Monitor bandwidth over spesified port?

    Either will do, but if I can find some sample code I would like to create it myself.
  12. Replies
    2
    Views
    882

    Monitor bandwidth over spesified port?

    I want to monitor bandwidth over a port I spesify.

    Ex: If I specify port 80, it will monitor the upload and download volume downloaded and uploaded from the web.

    I have no idea where to start...
  13. How can I Get filename of latest file in folder?

    I am trying to get the filename of the latest file created in a specified folder.

    Can anyone help me on how to do this?
  14. Replies
    9
    Views
    1,075

    Re: Binary connection to spesific IP and Port?

    I know the IP and port.
    I just don't know how to connect to it.
  15. Replies
    9
    Views
    1,075

    Re: Binary connection to spesific IP and Port?

    I know how the Inet and Winsock controls work, but I cant get it to connect to the IP and Port I need. The Port is not a ftp or http or any other recognised port.
  16. Replies
    9
    Views
    1,075

    Re: Binary connection to spesific IP and Port?

    I am not using any control at the moment.
    I am just trying to create this connection by any means.
    Can I use Inet?
  17. Replies
    9
    Views
    1,075

    Binary connection to spesific IP and Port?

    I need to create a binary connection to a spesific IP and port.
    I am using VB6.

    Any help would be greatly appreciated.
  18. Replies
    0
    Views
    394

    Find spesified files in a drive?

    How can I find all .doc files on a certain drive?
    I want to get the full name and path of the files.

    Ultimately I want a program running through a drive to display the name and path of .doc,...
  19. Replies
    3
    Views
    870

    Monitor traffic on ports

    How can I monitor traffic on ports I spesify?
    I want to know how much traffic (in kb) are going through the ports I spesify.
    Ex: Getting the size of all the traffic that went through port 80 will...
  20. Replies
    1
    Views
    3,992

    MS Access ODBC connection string for VB6 ?

    Could someone please supply me with the connection string to connect to a MS Access ODBC ?

    ODBC is set up as system.
  21. Replies
    1
    Views
    959

    Inet control - cannot upload file to FTP

    I am trying to upload a 60kb file to an FTP site at driveHq.com using the Inet control.

    Inet2.Execute Inet2.URL, "Put c:\" & FileNameSMS & " " & FileNameSMS

    It puts the file on the FTP site,...
  22. Re: [RESOLVED] Possible to download/upload files into FTP using WinSock 2.0 or CSocket ?

    Thank you very much!!!

    You have no idea how much this will help me!!!

    Thanks again!
  23. Re: [RESOLVED] Possible to download/upload files into FTP using WinSock 2.0 or CSocket ?

    Ok is that all?
    So I don't need to calculate nPercent (that I must pass to oFTP_TransferProgress) in any way?
  24. Re: [RESOLVED] Possible to download/upload files into FTP using WinSock 2.0 or CSocket ?

    I understand that, but I want to know how to calculate that nPercent so that when I use it in the progress bar, the progress bar would actually show the correct progress of the file being uploaded.
    ...
  25. Re: [RESOLVED] Possible to download/upload files into FTP using WinSock 2.0 or CSocket ?

    Ok thanks, but where do I get nPercent from?
    Where / how do I calculate that?
  26. Re: [RESOLVED] Possible to download/upload files into FTP using WinSock 2.0 or CSocket ?

    I am using the code and examples you supplied Joacim.
    I am trying to get a progress bar to show the progress of the upload of a file to the ftp site.

    Please supply me with code on this one.
  27. Re: File upload status - how to show in progress bar ?

    Thanks Hassan. I see what you mean, but there's not upload function. I will definitely use it for the download function.

    Can anyone supply me with sample code as to how I can break the file into...
  28. Re: File upload status - how to show in progress bar ?

    Thanks
    I have that in at the moment, but I thought that an accurate progress bar would give better feedback to the user.
  29. Re: File upload status - how to show in progress bar ?

    No it does not go through a loop

    I use Inet1.execute URL, "Put localFile RemoteFile"
    URL = remote FTP server
    localFile = File to upload
    RemoteFile = Where to place / what to call file on FTP...
  30. File upload status - how to show in progress bar ?

    I am using an Inet control to upload files to an FTP site.

    How can I use a progress bar to indicate the status of the file being uploaded?
  31. Replies
    2
    Views
    443

    How to search for a spesific file ?

    How can I search for a spesific file on a drive using VB6?
    I want VB6 to return the file path.

    I want to enter the file name in a textbox.
    Then I want the app to search the entire drive for that...
  32. Replies
    1
    Views
    1,556

    How can I view My Network places in VB6 ?

    I want to view My Network Places in VB6.

    Example: I want to use something like a DriveListBox or DirListBox to show my network places (Windows XP as well as 98 if possible).

    Please help.
  33. Replies
    2
    Views
    772

    Re: How can I share a folder through VB6 ?

    Thank you very much amrita.
    That helped!
  34. Replies
    2
    Views
    772

    How can I share a folder through VB6 ?

    How can I share a folder over a network through VB6?

    I have folder called FolderName.
    I want to change FolderName's attributes to be shared over the network.
    I want to do this from VB6.
    ...
  35. Replies
    3
    Views
    1,451

    Mousepointer = vbhourglass - ERROR

    When I use the mousepointer = vbHourGlass or VBDefault functions I get an error: "Object or library not found".

    Please help. How can I fix this?

    (Visual Basic 6)
  36. SQL Select statement progress in progress bar?

    I want to see the progress of my SQL select statement (made from VB) in a progress bar.

    How can I do this?

    Thanks
  37. Re: VB6 package distribution - how can I include SQL Server?

    This is what I have in mind, but I need an exe to install SQL Server agent automatically so I can add it as shown.

    Any ideas?
  38. Re: VB6 package distribution - how can I include SQL Server?

    Using a different database option than SQL is unfortunately not an option for me. (long story).
  39. Re: VB6 package distribution - how can I include SQL Server?

    The machines I am installing my application on is in no way connected to each other and does not have a SQL connection of any kind.

    This is why I need to install the SQL client.
    I know how to...
  40. Re: VB6 package distribution - how can I include SQL Server?

    I have databases and tables in SQL that stores the information displayed by the VB6 application I wrote.
    I need to install SQL agent on the client machine so my application will be able to access...
Results 1 to 40 of 51
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width