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

Search:

Type: Posts; User: RoyK

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds; generated 4 minute(s) ago.

  1. Replies
    2
    Views
    963

    Re: How to Sign executable for Vista etc.

    Makecert allows you to make your own test certificates or so the story goes.
  2. Replies
    2
    Views
    963

    How to Sign executable for Vista etc.

    I was playing around with just running the IDE on Vista under a non-admin account and I got the following error: An unidentified program wants access to your computer

    So I tried to sign it by...
  3. Replies
    81
    Views
    226,544

    Re: VB6.0 will live until Windows 7!

    MS needs to release the source doe to the open source community and stop worrying about it.
  4. Replies
    2
    Views
    1,037

    Re: Load or Performance Testing

    So many of the websites that I have seen that offer unlimited bandwidth looks like resellers. Those resellers will try to get as many sites on one server as space will allow. If you notice, they...
  5. Replies
    5
    Views
    2,671

    Re: How To Add A Scheduled Task

    I try these. Thanks for the suggestions.
  6. Replies
    2
    Views
    1,169

    Re: Controling multiple IE pages using VB

    The server will do processing and will typically send back a new page with the updated values.

    I would use asp.net and set the postback value to true. Much easier.
  7. Replies
    2
    Views
    1,037

    Load or Performance Testing

    Can anyone recommend any tools for this? I keep seeing hosting sites advertise unlimited band width. Not that I believe it, but I don't believe it.
  8. Replies
    5
    Views
    2,671

    Re: How To Add A Scheduled Task

    So I have to run a shell command. I can do that. Thanks.
  9. Replies
    5
    Views
    2,671

    How To Add A Scheduled Task

    How can you do this? I want to have my program run every once in a while but I don't want to make it a service.
  10. Replies
    4
    Views
    1,495

    Re: Prevent Paste or Trap Paste into Edit Box

    I would add a either a menu item with a paste option or command button that allows you to paste.
  11. Replies
    4
    Views
    1,495

    Prevent Paste or Trap Paste into Edit Box

    Found how to do it:

    In the key down event for a text or rich text box:

    If (e.Control) And (e.KeyCode = Keys.V) Then e.SuppressKeyPress = True


    To prevent pasting for all text boxes on your...
  12. Replies
    4
    Views
    2,330

    Re: Clicking Toolbar button on another app

    You are only doing one action. You need to press it, wait a few miliseconds and then release it.

    I thought 0 was false, so it only looks like you are releasing it.
  13. Replies
    1
    Views
    583

    Re: Copying a chat box from a program

    Send it a Control - A and then Control - C.
  14. Replies
    1
    Views
    1,099

    Re: real time parallel port data

    Robust with out extra circuitry? Unless you want to program in assembly or write a device driver, not really.

    Since your switch is mechanical, it will bounce(multiple open/close) until it...
  15. Replies
    2
    Views
    886

    Re: problem with splash screen

    You need to given more information. What application are you running? What is the actual startup code? What do you mean by "department"?
  16. Replies
    3
    Views
    852

    Re: sending text to other applications

    Use
    SendInput API
  17. Replies
    1
    Views
    1,081

    Re: Counting the number of open window using VB.

    It's much easier to use:

    Declare Function EnumWindows Lib "user32" (ByVal lpEnumFunc As Long, ByVal lParam As Long) As Long
  18. Replies
    1
    Views
    1,061

    Re: engine management sytems software

    If the engineers at BMW had half a brain, they would have written their software in C.

    You might find some interesting engine tweeks at: http://www.jaycarelectronics.com/

    They are based in...
  19. Replies
    3
    Views
    2,088

    Re: rich text box control background

    Well, I thought the VB.net book I was reading was a little to "rah, rah ..VB.net is hear to save the day...". Thanks for the correction.
  20. Replies
    3
    Views
    2,088

    Re: rich text box control background

    If you want transparent controls, you will have to switch to VB.net .
  21. Re: How to make a particular window respond to a mouse scroll message?

    Not exactly sure, but I would try to write a global mouse hook similar to keyboard.
  22. Replies
    6
    Views
    1,399

    Re: multiThread's question in vb6

    It's real easy to do using ActiveX.exe. If you take that approach, make sure your communication is as optimized as you can get it. In other words, try to to pass a buch of data back and forth.
  23. Thread: UDP port scan

    by RoyK
    Replies
    1
    Views
    2,048

    Re: UDP port scan

    create a stocket to the port and try sending in an SNMP command.
  24. Replies
    6
    Views
    1,111

    Re: textfile,...??

    You will have to read it. After you read it, you can parse the string. One easy way to do it is use the Instr function.
  25. Replies
    2
    Views
    667

    Re: Accesing data from device driver

    I am assuming that your device driver coder is still writing code and you are asking how they can pass data back to you. There are several ways to do this. One is that he can write the value to a...
Results 1 to 25 of 227
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured