Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BrianJH

  1. BrianJH

    I would like advice on a scalable server application

    Has anyone here ever developed a server app like this one? If not, could someone direct me to a good article or another forum that might be able to help me better? I wonder if I gave enough information to enable someone to help me out...if not let me know what kind of information you might...
  2. BrianJH

    I would like advice on a scalable server application

    I was unaware that there was server software capable of handling message IO's. I will certainly look into it, however I would still like some constructive criticism about my current architechture; this project is as much for learning as it is for anything else. I do have a computer here...
  3. BrianJH

    I would like advice on a scalable server application

    I see my question was overlooked all the way to page 4 of the forums. Is there any other information I can provide to make it easier to answer?
  4. BrianJH

    I would like advice on a scalable server application

    Hello, I have developed the client side of a UDP client-server application that will handle about 100 people at a time. I would, however, like some advice on how I should go about building the server. Here's how I have it planned (remember that this is my first try at something like this)...
  5. BrianJH

    error message when trying to execute a custom DLL function- any ideas?

    I am not using vb6, I am using .net; the database class is written in VC++ 6. I tried the code you provided and it wouldn't work. I also tried using the C++ string class instead of CString with the same error. The function DLL runs seperately from vb correct? the dll accesses a file on C:\...
  6. BrianJH

    error message when trying to execute a custom DLL function- any ideas?

    in C++ CString is a null-terminated string just like String in VB. I don't know if it is true in vb, but in C++ CString is declared as a class.
  7. BrianJH

    error message when trying to execute a custom DLL function- any ideas?

    Hello, I have created a DLL using VC++ 6.0 with one entry point: CString test(CString string,BOOL mode). As you can see in the code below I know how to access and use the Windows API...and in this brief test project it works. However, when I click the button and the program comes to...
  8. BrianJH

    Timer not working, maybe a problem with threading...help!!!

    Hello, I have two timers in my app and multiple threads. I will show you how I am working with them: (threads running) Main Thread ( program starts ) timer 1,2 created as friend withevents timer 1 started in form.load event ---On button event, new thread ( listen thread for udp...
  9. BrianJH

    Emulating Mouse Events

    I took your hint about the windows API before and have been doing some research. It is actually quite easy to use API functions in your aps and it is very powerful. The best site I found, which also had a new version of the windows API viewer is here: http://www.mentalis.org/index2.shtml I...
  10. BrianJH

    How to change the color of a portion of text in label box

    Hello, I know how to change the color of the entire text in my label box: ************** *My Label Box * ************** public label1 as new label public sub doit() label1.text = "My Label Box" label1.forecolor = **whatever color** end sub BUT I want to change the color...
  11. BrianJH

    How to suppress textbox.keypress events

    Thank you JohnYingLing for the reply. It works perfectly.
  12. BrianJH

    How to suppress textbox.keypress events

    This is the keypress event. It takes text that is written in a multiline text box, and places into a string for later use, the text that has been edited after the last &quot;enter&quot; button pressed. for example: This is line 1 <uneditable> This is line 2...
  13. BrianJH

    Emulating Mouse Events

    I ended up downloading a macro program off that site, but the programs aren't very good. To be honest I would still like to know how this can be done...
  14. BrianJH

    Emulating Mouse Events

    The program was not built by ME or by my company...it was contracted out and built by a company that builds these kinds of programs. Since I have to sway and the company will not pay to have it altered, I must make do with what I have...The layout of the boxes is also not designed well so you...
  15. BrianJH

    Emulating Mouse Events

    Hehe, yeah the program isn't very efficient. 1. you press OK after you enter in the appropriate information. 2. confirm that you are finished with this invoice 3. double-check the address is correct 4. Invoice saved and sent, click OK to send another invoice 5. Choose invoice type: (I...

Part and Inventory Search

Back
Top