CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: TurboBob

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    16,993

    Re: Speech to Text in VB6 - Help

    I found going through the code in this sample was a great help.

    http://msdn.microsoft.com/en-us/library/ms720416(v=vs.85).aspx

    The project "RecoVB" includes most of the functions you might...
  2. Replies
    9
    Views
    8,056

    Re: looping problem VB

    You need to set a reference to the Ms Excel 12.0 library




    Dim objExcel As Excel.Application
    Dim objWorkbook As Excel.Workbook
    Dim objWorksheet As Excel.Worksheet
    Dim strExcelFileName As...
  3. Replies
    5
    Views
    3,078

    Re: WebBrowser Input Problem

    BTW please do no destroy the earth with this as I have no where else to Live. !!!!
  4. Re: VB6 How to Read text/String Using binary method ?

    [QUOTE
    actually i want to add a string before the bytes something like this
    bytes = "Fixed !" & bytes
    can i add string to bytes(0) at zero position, is there any way to open an .exe file and add...
  5. Replies
    5
    Views
    3,078

    Re: WebBrowser Input Problem

    The following works in VB.Net 2008.



    WebBrowser1.Navigate("www.lockerz.com") ' Follow this with some code to wait for page ready...
  6. Re: Create A Dump File for a Running Process

    No problem - I use em all. Actually VB 2008 would not open your project but VB 2010 does it fine.
    Thanks again.

    Marking this Resolved
  7. Re: Create A Dump File for a Running Process

    That Does it !

    I was messing around with ReadProcessMemory() and I guessed I was on the wrong track!

    Thanks a million HanneSThEGreaT. I'm sure you put quite some time into "slapping this...
  8. [RESOLVED] Create A Dump File for a Running Process

    Hi

    In Windows 7 if I launch Task Manager and select a process (eg:Notepad.exe) I can right click on this and select "Create Dump File".

    This creates a dump of the file to my hard drive.

    I...
  9. Replies
    21
    Views
    4,725

    Re: Problem with SendKeys ... please help!

    Is This Thread still unresolved ?

    I have played around with it a bit and it seems to work fine for me.
  10. Replies
    12
    Views
    13,234

    Re: VB6 - Simulate Shift+Click and Ctrl+Click

    Thks WoF

    Using the keybd_event approach with SendMessage() also seems to work.ie:

    Call keybd_event(16, 0, 0, 0)
    Sleep 100:DoEvents
    Call SendMessage(hwnd, &HF5, 0&, 0&) ' Button Click
    Call...
  11. Replies
    12
    Views
    13,234

    Re: VB6 - Simulate Shift+Click and Ctrl+Click

    LOL the "****" say "Shift"

    I am not swearing!!!
  12. Replies
    12
    Views
    13,234

    Re: VB6 - Simulate Shift+Click and Ctrl+Click

    I guess you are trying to select a rang of items in a list like in windows explorer or the likes.
    **** lets you select between two points ctrl lets you select additional items.

    This is some code...
  13. Re: Need help with Macro: Copy selection from one app insert to another application!

    Sorry Folks

    VB6 version
  14. Re: Need help with Macro: Copy selection from one app insert to another application!

    This is a project that uses the functions that I use.

    It is developed in VB.Net 2008 and I am using Windows 7 which has quite a different UI than XP


    First open "Map Network Drive"

    Press...
  15. Re: Need help with Macro: Copy selection from one app insert to another application!

    yeh but the box he is talking about is a drop down combo box, not a text box and you need to select an item from the list before you can apttempt to get the text from it. This is why he wants to...
  16. Re: Need help with Macro: Copy selection from one app insert to another application!

    Hi Groom

    I may be totally on a different wavelength but I do quite a bit of this stuff and it strikes me that the stuff you are copying from the "Map Network Drive" window is data that resides...
  17. Replies
    7
    Views
    896

    Re: Timer function problems

    Leave out the "Item" bit

    The Correct code is Timer1.enabled=False

    not Timer1.Item.Enabled=false

    I think this solves your problem
  18. Replies
    7
    Views
    1,532

    Re: Controlling Windows Remote Desktop - RESOLVED

    That does it Sotoasty Thanks for that.


    You were on the right track dglenna thanks also.

    BTW the 101 code articles are great.
  19. Replies
    7
    Views
    1,532

    Re: Controlling Windows Remote Desktop

    Thanks for replying dglienna.

    When I log in on the main machine the remote machine goes to the user log in screen. This has to happen cos 2 users can't log in to a windows machine at the same...
  20. Replies
    7
    Views
    1,077

    Re: Help reading pixels

    After just 4 Days I was still trying to put a command button on a form !!

    Best of Luck
  21. Replies
    7
    Views
    1,532

    Re: Controlling Windows Remote Desktop

    This Live Mesh is very impressive. It give you access to all your pcs using the net and your live id. This is really useful if you are at work and need to get at your machine at home. It works a lot...
  22. Replies
    7
    Views
    1,077

    Re: Help reading pixels

    No problem - Need any further help just ask
  23. Replies
    81
    Views
    226,658

    Re: VB6.0 will live until Windows 7!

    Actually I just downloaded the RC version of VB.Net 2010.

    It is a really lovely product to use but unfortuately it no longer lets you upgrade projects from VB6.
  24. Replies
    81
    Views
    226,658

    Re: VB6.0 will live until Windows 7!

    Vista was so bad that doing anything with it caused problems. Windows 7 is much better
  25. Replies
    7
    Views
    1,077

    Re: Help reading pixels

    Heres how I do It:


    Imports System.Drawing
    Imports System.Drawing.Drawing2D
    Imports System.Windows.Forms
    Public Class Form1
    Dim g As System.Drawing.Graphics
    Private Sub...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured