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 TouchToneTommy 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 Hawkeye123456

  1. Hawkeye123456

    Microsoft Explorer Mouse

    Thanks for the link, but I was looking for more of a compleeted program that would do it. I am not that good with C and that stuff is just Greek to me.
  2. Hawkeye123456

    How do you read from an .INI file?

    ok thanks for the declairs, but now what do I do with them? I pu them in my program and I was reading through the variables, and could not figure out what each one did.
  3. Hawkeye123456

    Microsoft Explorer Mouse

    Does any one know how to set the buttons of the Explorer mouse with out having to go to the mouse program every time. I would like to set up some presets for games, and have a exe, or bat or somethink like that change the values for the mouse quickly so that I could have full access to all of...
  4. Hawkeye123456

    How do you enter data in a tree view

    I want to use a tree view to show inventory in a game that I am writing. and I dont know how to use it at all. Any help would be nice.
  5. Hawkeye123456

    How do you read from an .INI file?

    I am planning on storing data for my program in an INI file, but I dont know how to read from one. Some one told me that there is an api that does it, but I could not find it. Any help would be nice
  6. Hawkeye123456

    Winsock - Sending an Array

    Thanks, but that did not help me out too much. I need to pass a Variable array through the control. Thanks though --Joe
  7. Hawkeye123456

    Winsock - Sending an Array

    Is there any way to send an array over a winsock controll? I am writing a game that used a server to get map files from. The files are stored in an array. I need to send it to the client. I really hope that I can send the array, and not have to get all the data out of it then send, and...
  8. Hawkeye123456

    How do I change the color of a rich text box control?

    That would work except MSDN said Remarks If there is no text selected in the RichTextBox control, setting this property determines the color of all new text entered at the current insertion point. and I dont want to see the selection flash like it would using that method. Thanks though
  9. Hawkeye123456

    How do I change the color of a rich text box control?

    This is the code that I have right now and txtstuff is a rich text box Private Sub client_DataArrival(ByVal bytesTotal As Long) Dim stuff() As String, i As Integer Dim str As String client.GetData str stuff = Split(str, Chr(255)) For i = 0 To UBound(stuff) If Trim(stuff(i)) <> &quot;&quot...
  10. Hawkeye123456

    Explorere mouse buttons

    I have the mocrosoft explorer mouse and I want to be able to change the buttons of the side two for certain things. I though I could write a VB program that changed their values and changed them back later. Then I thought I have no clue how to do that, so I though maybe tek-tips does. Any...
  11. Hawkeye123456

    Rediming a Variable array

    Well thanks, I got it working last night. I was redimming it twice and the second one was killing all of the data.
  12. Hawkeye123456

    Rediming a Variable array

    That would sure, but I am not going to pass it to a diffrent sub. I am going call it from a diffrent sub. Like the code shows.
  13. Hawkeye123456

    Rediming a Variable array

    Is there a way to redim a variable array and assign values to it in one sub, and then use the values in a diffrent sub? This is my code below. Private Sub Form_Click() Dim Equ As Long Dim temp As String Dim Lines() As String Dim c As Integer Dim w As String Dim U As Integer SetB...
  14. Hawkeye123456

    How to Insert HTML into Browser control w/o actual HTML file

    Why dont you write it to a file then display the file and when the program unloads kill the HTML that you created. That is the simpleset way that I can think of.
  15. Hawkeye123456

    Macros

    I want to create a macro for a game. I want to have visual basic record what I am doing with the keyboard then play it back to the program that I am curently running. I am not sure how I can do this. Any help would be nice.

Part and Inventory Search

Back
Top