Search:

Type: Posts; User: shirazamod

Page 1 of 13 1 2 3 4

Search: Search took 0.21 seconds.

  1. System.Speech LoadGrammar() Not Working Consistently

    I've coded a VB.Net application that loads multiple grammar objects on startup.

    When a flash drive is connected I've coded it to unload one of the grammar objects, recreate it (as it would need to...
  2. Replies
    2
    Views
    7,840

    Re: Read/Extract & Parse Firefox History

    Thanks I'm glad you like it :D
  3. Replies
    2
    Views
    7,840

    Read/Extract & Parse Firefox History

    I've been looking for a way to get the website history of firefox for a while, but I couldn't find any existing code that did it, so I coded my own.

    This function will read the Firefox history for...
  4. WebBrowser Events Not Firing On Vista With IE7

    I'm using a webbrowser and none of its events are fired after the first call to .Navigate.

    Any help?
  5. Replies
    2
    Views
    578

    Re: Set identifier for object

    Ok I managed to solve this problem myself.
    In case anyone was wondering how to do it, I created a temporary InternetExplorer object (tmpIE) and then modified part of the code to this:
    If...
  6. Replies
    2
    Views
    578

    Re: Set identifier for object

    Here's the code I'm using to connect to the IE windows:Dim objShell As Object
    Dim objShellWindows As Object
    Dim sWin As Object
    Dim x As Integer
    Dim winCount As Integer

    Dim dbgTime As Long
    ...
  7. Replies
    2
    Views
    578

    [RESOLVED] Set identifier for object

    I'm using

    Set objShell = CreateObject("Shell.Application")
    Set objShellWindows = objShell.WindowsTo get a list of IE windows and I need to set some sort of attribute on each window so that I can...
  8. Re: 4 questions on VB

    I'm afraid I don't know how to do any of those.
    The only thing I can help you with is if you want to turn off the monitor programmatically, in which case you can use the code sample found here >...
  9. Replies
    3
    Views
    1,867

    Re: Webbrowser: how to disable Error message?

    I believe that the error is not from the website that you are visiting, its a problem with something that you are trying to make the browser do, so setting it to silent won't fix this problem.
    ...
  10. Replies
    3
    Views
    627

    Re: Capturing data from a webpage

    To connect to the site you could use the Inet control, WebBrowser or Winsock.
    The WebBrowser is fastest to load but it will download all images so will take a bit longer than the other 2.

    You can...
  11. Replies
    6
    Views
    649

    Re: Webbrowser Help in Submit

    I think you're meant to use Web.Document.All("Submit").click or HTML.All("Submit").click if you've setup HTML as Web.Document already
  12. Re: How to read instructions from a text file on timer?

    Look on the toolbar [left side of the screen] and you will see a icon that looks like a stopwatch. Click it and then click and drag your mouse over a small portion of the screen and you will have a...
  13. Re: How to read instructions from a text file on timer?

    You will need to add a timer control to your form vip2k.
  14. Replies
    4
    Views
    1,697

    Re: Capture USB Swipe Card Data

    You can use the GetAsyncKeystate API to receive the keyboard input even when your app doesn't have focus. :thumb:
  15. Replies
    4
    Views
    1,697

    Re: Capture USB Swipe Card Data

    Are you asking for a way to receive input from the swipe card reader?
  16. Thread: Sound

    by shirazamod
    Replies
    1
    Views
    575

    Re: Sound

    Well in games you should use DirectSound, but to play a sound using the quickest method use Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal lpszName As String, ByVal...
  17. Replies
    12
    Views
    1,032

    Re: Web browser help

    To change the size just use WebBrowser.Height and WebBrowser.Width
  18. Replies
    11
    Views
    881

    Re: save wave file

    Welcome to the forum!

    Search pscode.com for a file binder and you'll have your solution
  19. Replies
    3
    Views
    713

    Re: Reading Data from Web Page

    Yes the webBrowser is easier to use than Winsock and it works asynchronously whereas Inet doesn't.
  20. Replies
    3
    Views
    713

    Re: Reading Data from Web Page

    I suggest you use a combination of server side scripts (in PHP or ASP) and Winsock or Inet to connect to these pages with the relevant arguments in the url (so to send the value "123" in the variable...
  21. Replies
    4
    Views
    3,112

    Re: Using DocumentComplete??

    In order to use the _DocumentComplete EVENT you will need to declare the browserObject as a WebBrowser.

    To do this you can add the Microsoft Internet Controls reference in your project and then...
  22. Replies
    5
    Views
    3,966

    Re: Equalizer in VB

    I have no experience in this sort of thing but here's a link to an equalizer written in VB6.
    I don't know how well it works as I haven't tried it myself.

    Hope this helps!
  23. Re: [Resolved] A Quicky about Text on a web page...

    My pleasure :thumb:
  24. Re: A Quicky about Text on a web page...

    Using DoEvents will not work with the Inet control, nor will it work with the popular DownloadToFile() API.

    I suggest you use the Winsock control, which can download files asynchronously, so your...
  25. Replies
    3
    Views
    981

    Re: ftp download/upload whole directory

    I believe you will have to list all the files in the directory and then download each of them separately.
    I don't have any experience with programming with FTP so I can't help you with the commands...
  26. Thread: FileCopy

    by shirazamod
    Replies
    11
    Views
    972

    Re: FileCopy

    To format the code in vbforums use [Highlight=VB] tags around it (not [vb])
  27. Replies
    2
    Views
    3,441

    Re: Create cookies in VB6

    How are you creating the cookie?
    Posting your code might help.
  28. Thread: FileCopy

    by shirazamod
    Replies
    11
    Views
    972

    Re: FileCopy

    In windows explorer check that you can create a file in the folder that you are trying to copy to.
  29. Replies
    3
    Views
    1,218

    Re: Download File From Remote Server

    Ok thanks, how would I do that?
  30. Replies
    3
    Views
    1,218

    Download File From Remote Server

    Hi
    I need to make a script to download files from a remote webserver.
    The files will be approximately 200 MB.
    How can I do this, and (I'm not sure if it's possible, but) how can I download files...
  31. Replies
    2
    Views
    600

    Re: Better button graphics

    I remember downloading a couple good ones from pscode.com
    Go there and search & you'll find quite a few
  32. Replies
    2
    Views
    485

    Re: Read Regitry

    I think you'll have to make a server app on the remote machine and code that app to make the winsock connection with your machine and then read the registry keys that your computer sends to it.
  33. Re: Newbie Q:Is it possible to have PHP script run on server every minute automatically

    Thanks for the heads up.
    Do you know of any way around this? Also, do you happen to know how often GoDaddy would restart their servers (every day? week? month?)

    I think a possible workaround...
  34. Re: Newbie Q:Is it possible to have PHP script run on server every minute automatically

    I've actually found a few by searching Google, but none of them seem to work fine.
    I've found a PHP script called Virtual Crontab which supposedly allows you to simulate Cron jobs, but I haven't...
  35. Re: Newbie Q:Is it possible to have PHP script run on server every minute automatically

    Damn! Do you know of any free hosts that support cron jobs?
  36. Re: Newbie Q:Is it possible to have PHP script run on server every minute automatically

    Thanx for the help.
    How would I setup the cron job if I'm using GoDaddy shared Linux hosting?
  37. Newbie Q:Is it possible to have PHP script run on server every minute automatically

    I'm trying to make a script that will monitor a certain site (eg: weather forecast) and if it contains a certain value then the script must email me.
    I want this script to continually run, but...
  38. Replies
    11
    Views
    2,714

    Re: Downloading Images using VB6

    I agree with Tommahawk, use the Inet control (Microsoft Internet Transfer Control).
    Google it for sample code to download an image (as Al42 said, you need to give it the address to the image)
  39. Replies
    11
    Views
    1,075

    Re: Auto Fill Web Control Form

    You could use this:Web.Document.All("user").value = "username"
    Web.Document.All("pass").value = "password"
  40. Thread: Sendkeys

    by shirazamod
    Replies
    7
    Views
    1,017

    Re: Sendkeys

    You will need to get the hWnd of the game using FindWindow API, then use the SendMessage API with the hWnd of the game.
    I'm not sure what the variable name for the key is, could be vbNum0
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width