Search:

Type: Posts; User: Motoxpro

Page 1 of 13 1 2 3 4

Search: Search took 0.36 seconds.

  1. Replies
    5
    Views
    815

    Re: [2005] Standby

    Thanks Paul, the reason I ask Pino is im making a program for someone and they want it to start up whenever they come out of standby
  2. Replies
    5
    Views
    815

    Re: [2005] Standby

    Ah, Yea true. Is there any way of knowing when it comes out?
  3. Re: [2005] String manipulation (switching out vowels)

    I'm sure he searched msdn but its hard to find what your looking for, all I did was rearange a few things he was on the right track
  4. Re: [2005] String manipulation (switching out vowels)

    This is what ive come up with, tried to keep your code the same. Probably an easier way to do this but im still learning also. Just add Y to the string list if you want to use that

    ...
  5. Replies
    5
    Views
    815

    [2005] Standby

    I need my program to close when the computer in in standby mode ans open when it comes out, is there any way to check for this?
  6. Replies
    5
    Views
    636

    Re: [2005] Getting the images in a imagelist

    Ive been playing around with it and this is what ive come up with so far
    dim pic as string = "C:\Pic1|C:\Pic2|C:\stuff\Pic3"
    split1 = pic.Split("|")
    For Each str As String In...
  7. Replies
    5
    Views
    636

    Re: [2005] Getting the images in a imagelist

    Hm well maybe you can help me out with my problem. Im making a slideshow where the user can add, delete and view pictures. The pictures are contained in a string, for example...
  8. Re: Know of Any Good "Game Programming with VB .NET" Books?

    Well, after reading all of your post I can tell you that having done some studies and talking to people about how things work on the programmin side of games that there is no reason for people to...
  9. Replies
    5
    Views
    636

    [2005] Getting the images in a imagelist

    Is there anyway to get the image names that are currently in a listview?
  10. Replies
    6
    Views
    907

    Re: Adding nodes to a TreeView

    Ah, thanks. Just one more thing when im reading my textfile how can i get all the text between to variables. Say i wanted all the text inbetween the title and a new line:

    title=Hello
    text here
    ...
  11. Replies
    6
    Views
    907

    Re: Adding nodes to a TreeView

    Yea.
  12. Replies
    6
    Views
    907

    Re: Adding nodes to a TreeView

    Well it works but how would I loop through it so I dont have to make a million variables? At the moment it only adds 2 nodes, how would i add multiple nodes with differnt strings.
  13. Replies
    6
    Views
    907

    [RESOLVED] Adding nodes to a TreeView

    I need to be able to add nodes to a treeview at runtime but I dont know how many I need to add before I run the program. Here is what happends, I read a txtfile then I certain info from that textfile...
  14. Replies
    8
    Views
    1,046

    Re: [2005] A simple uploader

    you could try somthing like Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim Address As String =...
  15. Re: [2005] Checking how many items are checked

    Thanks Guys
  16. [RESOLVED] [2005] Checking how many items are checked

    I need a way to find out how many items are checked within a checked list box, is there any way to do this?
  17. Re: Help me understand why 'Finally' supercedes 'Exit Sub'

    Can you guys explain why you say that?
  18. Re: .net 2005 - win form - manifest - win xp style

    No im saying that you shouldnt have to use any code at all to get win xp buttons, they should be like that as soon as you place them on the form.
  19. Re: .net 2005 - win form - manifest - win xp style

    You shouldnt have to use a manifest file to get windows xp style buttons. I think that was in VB6, unless im misunderstanding you.
  20. Replies
    1
    Views
    597

    Re: [2005] Highlight Keywords

    You could try somthing like:

    Private Sub HighlightText()
    RichTextBox1.Find("'")
    RichTextBox1.SelectionColor = Color.Green
    RichTextBox1.Find("Sub")
    ...
  21. Thread: convert

    by Motoxpro
    Replies
    3
    Views
    574

    Re: convert

    Im pretty sure they removed the printer object in .net. However they made it much easier becuase you can just add a printdialog to your project and use ShowDialog() to open it.
  22. Replies
    3
    Views
    574

    Re: Setting Checkbox Values

    Thanks for the help!
  23. Replies
    3
    Views
    574

    Setting Checkbox Values

    Im making a program that lets you select a color from a list of checkboxes. There are 3 lbls and 3 groups of checkboxes all with the same colors, this all works fine but i have made a function to...
  24. Replies
    6
    Views
    641

    Re: More Advanced Learning

    I understand what youre saying and i have progressed alot from the 'beginner' books on my own but, id rather learn the right way first instead of learning and then figuring out that i was doing it...
  25. Replies
    6
    Views
    641

    Re: More Advanced Learning

    Well, yea. But if i dont know how to write the code then how can i write the progam? For example, if I didnt know how to check if a textbox was equaled to 0 then I might search on google and think...
  26. Replies
    6
    Views
    641

    More Advanced Learning

    Ive finished a few of the * in 24 hours, for dummies and other beginner series. I was wondering what do i start learning now, should i get an advaned book? Should i look at tutorials? and if so where...
  27. Replies
    1
    Views
    668

    [2005] MySql Question

    had a question about security. Would it be bad for me to hard code the username and pw of my database and then check for the username and password in the database for the user to login. Here is my...
  28. Re: I need a little bit of help. Please look here

    you dont have to know VB....its math :\ you pretty much answered your own question when you asked it. Im sure they taught you how to do if statements and thats all you need. Just dont use the forums...
  29. Re: I need a little bit of help. Please look here

    Just make some checks, Somthing like



    text1.text = Side1
    text2.text = Side2
    Text3.text = Side3

    If (Side1 * Side1) + (Side2 * Side2) = (Side3 * Side3) then
    msgbox "right triangle"
  30. Replies
    2
    Views
    609

    Forms ontop of Everything

    I'm making a program that lets you see the time while you're in a game so you dont have alt tab. Right now it stays above everything BUT the game here is my code:



    Private Declare Function...
  31. Thread: $ Sign Error

    by Motoxpro
    Replies
    7
    Views
    661

    Re: $ Sign Error

    No, but there are multiple $ signs in the code so it just happend at a different part.
  32. Thread: $ Sign Error

    by Motoxpro
    Replies
    7
    Views
    661

    Re: $ Sign Error

    Yes.
  33. Thread: $ Sign Error

    by Motoxpro
    Replies
    7
    Views
    661

    Re: $ Sign Error

    It's checked, but there are a few is there a certain dll I need to have in there?
  34. Thread: $ Sign Error

    by Motoxpro
    Replies
    7
    Views
    661

    $ Sign Error

    Hi im reading over one of my buddies peices of code and i keep getting errors wherever there is a dollar sign. For example:
    iniRead = Left$(iniString, iniLength) gives me the error "Can't find...
  35. Replies
    3
    Views
    438

    thats the whole error its not somthing that wrong...

    thats the whole error its not somthing that wrong with the code because somtimes it works and somtimes it doesnt. It just shows that error in the output and it shows that send error report dialog.
  36. Replies
    3
    Views
    438

    C++ Compile Error

    Hi All! Im trin to compile the Doom3 SDK in Visual C++ Express 2005 Beta and I always get a compile error, here is an example:



    c:\doom3\sdk\game\actor.cpp(950) : fatal error C1001: INTERNAL...
  37. Replies
    2
    Views
    401

    no for VB not vb.net

    no for VB not vb.net
  38. Replies
    2
    Views
    401

    Ending a Process

    how would i end a process from through vb? would i have to shell the task manager?
  39. Replies
    5
    Views
    534

    Check if somthings in a listbox

    How would a check if a certian item is in a listbox?
  40. Replies
    3
    Views
    971

    thanks

    thanks
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width