Search:

Type: Posts; User: Mage33

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Thread: Uploading

    by Mage33
    Replies
    1
    Views
    326

    Uploading

    Argh, I've tried all the different classes and stuff out there, but I can't get them to work. Is there an easy way to upload a file from a person viewing a webpage to the server when the user...
  2. Replies
    3
    Views
    420

    k thx

    k thx
  3. Replies
    3
    Views
    420

    Chaning a filename

    how can I change a filename within a program?

    For instance.. c:\banana.txt to c:\apple.txt?
  4. Thread: Go to Next Line

    by Mage33
    Replies
    19
    Views
    859

    if what you're asking for is wordwrap all you...

    if what you're asking for is wordwrap all you gotta do is set multiline to true :)
  5. Replies
    1
    Views
    314

    make the form snap to the edge of the screen but...

    make the form snap to the edge of the screen but I don't mean after you move it, that's easy enough, but with greg's code when you're dragging just the outline of the form.
  6. Thread: string checking

    by Mage33
    Replies
    6
    Views
    429

    nevermind, I got it.. it only works w/ ASCII in...

    nevermind, I got it.. it only works w/ ASCII in the keypress function.
  7. Thread: string checking

    by Mage33
    Replies
    6
    Views
    429

    wait - I lied, that didn't work after all. It...

    wait - I lied, that didn't work after all. It still adds the letter in there


    Private Sub txtSales_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
    If KeyCode < 47 Or KeyCode...
  8. Thread: string checking

    by Mage33
    Replies
    6
    Views
    429

    aah, okay, thanks man, that fixed everything :)

    aah, okay, thanks man, that fixed everything :)
  9. Thread: string checking

    by Mage33
    Replies
    6
    Views
    429

    string checking

    Hey guys, I need some help ASAP - how can I check a textbox as a new character is entered and if it's a number not allow it to be entered at all? I know how to do it all up to that last part.. how...
  10. Thread: .ini writing

    by Mage33
    Replies
    2
    Views
    501

    .ini writing

    I have a security program and I want to log when invalid passwords are entered in an ini file along with the time + date... how would I do this? :confused:
  11. Thread: Random

    by Mage33
    Replies
    2
    Views
    409

    Random

    I'm at a location where I can't access my library of code, and I can't remember how to get a random number between say 1 and 25... can someone quickly remind me? Thanks :)
  12. Thread: Screensavers

    by Mage33
    Replies
    17
    Views
    884

    Screensavers

    How can I make a screensaver out of my program in Visual Basic? Is there some kind of Add-On or something?
  13. Thread: Digits

    by Mage33
    Replies
    4
    Views
    571

    LOL!

    Now that I think about it that's the dumbest thing I've ever asked... jeeze, guess I need more sleep, eh? :) In any case, thanks.
  14. Thread: Digits

    by Mage33
    Replies
    4
    Views
    571

    Digits

    What's the easiest way to find the # of digits (or letters) in a string or in a int? Is there a built in function or do you have to do it manually?
  15. Replies
    1
    Views
    371

    I'm parsing quote marks in my code, as strings,...

    I'm parsing quote marks in my code, as strings, so I have """" to get a single quote... but whenever I do that it takes out the next letter in the string, any ideas why/how to fix this?
  16. Thread: Looping Strings

    by Mage33
    Replies
    8
    Views
    556

    Hrm

    Doesn't work... but the other method is more appropriate for what I'm doing, anyway.
  17. Thread: Looping Strings

    by Mage33
    Replies
    8
    Views
    556

    Not exactly... you can't do a ubound on ba...

    Not exactly... you can't do a ubound on ba because it's not an array... Could I use len instead? I'll try it.
  18. Thread: Looping Strings

    by Mage33
    Replies
    8
    Views
    556

    Hey, what I want to be able to do is use a for...

    Hey, what I want to be able to do is use a for loop to loop through all the characters in a string... so I get each individual character at once... how would I do this? :confused:
  19. Well, not really but: Here's what I want to do,...

    Well, not really but:
    Here's what I want to do, you press this button, if myVar (which is an array) isn't dimensioned yet dimension it from 0 to 1... if it is dimensioned go 0 to ubound(myVar)...
  20. Replies
    7
    Views
    643

    Erk

    Nevermind, fixed that problem. How can I see if the ubound of my array is 0... in other words it has the () but isn't dimensioned yet?
  21. Replies
    7
    Views
    643

    Ok, next problem

    Thanks for the solution, it works, yay!
    Next problem: Then I try to redim the the variable to an array... it says array expected, I've tried it both starting out w/ an array and w/o one......
  22. Thread: Redim this!

    by Mage33
    Replies
    4
    Views
    541

    Hehe

    I've tried both ways... right now it's actually not dimensioned w/ any size when I declare it.
  23. Replies
    7
    Views
    643

    Yup

    Sure did.
  24. Thread: Redim this!

    by Mage33
    Replies
    4
    Views
    541

    Hmmk

    I was doing the first... there's no way to redim something that's dimmed w/ an array?
  25. Thread: Redim this!

    by Mage33
    Replies
    4
    Views
    541

    Hey yo, I wanna redim my lil array variable, but...

    Hey yo, I wanna redim my lil array variable, but for some reason it's not letting me, saying that that variable is already dimensioned... well isn't that kinda' the point of REdim, to REdemension it?...
  26. Replies
    7
    Views
    643

    Ok, so I have this User-Defined Data-type, right?...

    Ok, so I have this User-Defined Data-type, right? And it's in one of my module's, but when I try to do a is_array on it, it says "Only user-defined data types defined in public object modules can be...
  27. Thread: Grrays

    by Mage33
    Replies
    1
    Views
    462

    How do I check whether a variable is an array or...

    How do I check whether a variable is an array or not? Thanks for letting me know, dumb question, I know.
  28. Replies
    1
    Views
    400

    I want my MP3 player to keep whatever is in its...

    I want my MP3 player to keep whatever is in its playlist there the next time it loads... do you think I should use a .ini file or some other method? also, could someone tell me how to use .inis? ...
  29. Replies
    1
    Views
    433

    How can I stop my program from closing when...

    How can I stop my program from closing when someone clicks on the "x" in the upper right hand corner? I want to have it go down to the systray instead, which I know how to do.
  30. Replies
    3
    Views
    640

    I posted something similiar to this a couple days...

    I posted something similiar to this a couple days ago but didn't really get an answer and I think I worded it badly... can someone point me towards some code that would allow me to recieve the ID3...
  31. Replies
    4
    Views
    529

    hehe

    local computer store.
  32. Replies
    4
    Views
    529

    Nevermind

    Thanks for the help but I found a CD for five bucks that has 1,200 controls... take me a while to browse through those, neh? ;)
  33. Replies
    4
    Views
    529

    Anyone know of any large/good libraries of custom...

    Anyone know of any large/good libraries of custom controls?
  34. Replies
    3
    Views
    340

    Hmm...

    MS Interdev is my personal favorite, but of course you have to shell over the money for visual studio if you havn't already.
  35. Replies
    1
    Views
    381

    If I disable a text box can I not retrieve its...

    If I disable a text box can I not retrieve its value with request.form? It doesn't seem to be working and the only difference from the working ones that I can figure out is that it is disabled.
    ...
  36. Thread: Start <-----

    by Mage33
    Replies
    2
    Views
    476

    Hey, I'm making a replacement for my start bar...

    Hey, I'm making a replacement for my start bar that'll cover it up, but I'm wondering how I'd get a list of open programs, and also how I could get their icons. Oh, and one more thing: How can I...
  37. Thread: Dates

    by Mage33
    Replies
    5
    Views
    554

    Meep

    Well, almost, I'll give you half of my first born child ;) What if the next tuesday isn't one of -the- tuesdays that's a pay date? I need to compare it against a certain day and hmm... ooh, maybe...
  38. Thread: Also....

    by Mage33
    Replies
    2
    Views
    427

    ?

    Hmm..
    scrollbars are automatically added to listboxes if the content goes too far (at least in the vb6 version of the ocx)
  39. Thread: Dates

    by Mage33
    Replies
    5
    Views
    554

    TheBao

    I love you. I'll let you have my first born child. The code works perfectly, and I really appreciate it.

    THANKS!
  40. Thread: Closing Ports

    by Mage33
    Replies
    2
    Views
    406

    Not sure...

    Not sure... but if you keep a program running that uses that port but does nothing with it wouldn't it keep other programs from using it? Or maybe it would lose control once another program tried to...
Results 1 to 40 of 138
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width