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

Search:

Type: Posts; User: softweng

Page 1 of 20 1 2 3 4

Search: Search took 0.22 seconds.

  1. Replies
    2
    Views
    1,085

    Tried that, didn't work. Spy++ could only locate...

    Tried that, didn't work. Spy++ could only locate the main window of the access form, it couldn't find any of the controls.
  2. Replies
    2
    Views
    1,085

    Multi Column ComboBox

    Does anyone know the name of the DLL or OCX for the multi column combobox used on Microsoft Access forms? I need this same functionality in my app.
  3. Replies
    2
    Views
    2,682

    Try This: Application.Run

    Try This:



    Application.Run
  4. Replies
    2
    Views
    563

    You could try putting your loop in a thread and...

    You could try putting your loop in a thread and just start the thread. If you needed some delay you can sleep the thread in the beginning of the method that contains your loop.

    Pseudo Code:


    ...
  5. Thread: Binary Comms

    by softweng
    Replies
    14
    Views
    1,124

    Check Out This...

    Check Out This Thread. It Might Give You Some Help.
  6. Replies
    5
    Views
    939

    In case you haven't noticed this is a VB.NET...

    In case you haven't noticed this is a VB.NET forum, hence the program is written in VB.NET!
  7. Replies
    5
    Views
    939

    I have put Trace (similiar to Debug) statements...

    I have put Trace (similiar to Debug) statements all over the code in every function. Everything is working fine. Since the DLL's I am using were all created by me they are part of my solution so i...
  8. Replies
    5
    Views
    939

    Some Debugging Help Please

    I have written an application that I am currently testing. There are a few classes and custom dlls that I use in the project. It is a fairly complicated sortation system. I won't go into all the...
  9. Replies
    6
    Views
    2,139

    Yes it should work. The COM port selected in the...

    Yes it should work. The COM port selected in the project is COM1, so make sure COM1 exists on both computers and is not being used by any other application. You can change the COM port by changing...
  10. Replies
    6
    Views
    2,139

    It was created with VS.NET 2003. If you have...

    It was created with VS.NET 2003. If you have VS.NET 2002 then try to create a new solution and add in the source files to that new project.
  11. Replies
    6
    Views
    2,139

    I have attached a little example I did for...

    I have attached a little example I did for someone in my office. It should help you out and to understand it.
  12. Replies
    0
    Views
    1,974

    Reading Data From Keyboard PS2 Port?

    Can anyone tell me how to read data from the Keyboard PS2 port? I have an application that is using a magnetic stripe card reader that connects to the Keyboard PS2 port via a Y adapter so that both...
  13. Replies
    0
    Views
    646

    MSAgent Voices

    I am using MSAgent (Merlin) in an application. The voice for Merlin doesn't sounds very real, more like computer speak. i have seen applications with Merlins voice sounds very good. Does anyone...
  14. Replies
    20
    Views
    2,777

    Check your email. I also fixed that problem so...

    Check your email. I also fixed that problem so it will clear out the right numbers. As far as the Try Catch blocks, they are used to trap errors and handlem them in code versus the application...
  15. Replies
    20
    Views
    2,777

    In the form load event set Label4.Text = "0"

    In the form load event set Label4.Text = "0"
  16. Replies
    20
    Views
    2,777

    Make sure label4.text is initialized to "0" on...

    Make sure label4.text is initialized to "0" on startup
  17. Replies
    20
    Views
    2,777

    Ok this will check the length each time the text...

    Ok this will check the length each time the text changes in Label1. If the length is smaller then it will increment Label4 by 1.



    Private _LastLength As Int32

    Private Sub...
  18. Replies
    20
    Views
    2,777

    So basically you are generating a random number...

    So basically you are generating a random number and storing it in label1. If the number is > 21 places long then it stops. Each time the space bar is pressed the number in label2 is removed from...
  19. Replies
    20
    Views
    2,777

    Can you show an example of what you are trying to...

    Can you show an example of what you are trying to do?

    i.e.

    Label1.Text = "1234567890"

    Label2. Text = "6"

    When SPACE bar pressed then Label1.Text = "123457890" and Label4.Text = "1"
  20. Replies
    20
    Views
    2,777

    What is the Text value for label1 and label4 at...

    What is the Text value for label1 and label4 at startup? What are the vaules you are setting for label1 in your code?
  21. Replies
    20
    Views
    2,777

    Yes see previous post

    Yes see previous post
  22. Replies
    20
    Views
    2,777

    Forgot to include the declaration of the...

    Forgot to include the declaration of the _LastValue variable. I edited the post with the code to reflect its declaration.
  23. Replies
    20
    Views
    2,777

    The code above does just that. It is not complex...

    The code above does just that. It is not complex but if you want then remove the error handling (Try-Catch blocks).
  24. Replies
    2
    Views
    1,225

    This might get you going: Private Sub...

    This might get you going:



    Private Sub txtTextBox_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtTextBox.KeyPress

    Select Case...
  25. Replies
    20
    Views
    2,777

    Here is a quick stab at it. It should get you...

    Here is a quick stab at it. It should get you moving in the right direction.



    Private _LastValue As Int32

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
Results 1 to 25 of 494
Page 1 of 20 1 2 3 4





Click Here to Expand Forum to Full Width

Featured