Search:

Type: Posts; User: SuperSparks

Page 1 of 7 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    16
    Views
    5,795

    Re: Huh??? Wierd browser issue

    Alt + left cursor key (left arrow) works the same as clicking on the back button
  2. Replies
    2
    Views
    1,378

    Re: Change user name

    All done! How's that for quick service? :)
  3. Re: How to change my displayed name in vbforum

    PM me with what you'd like your username changed to and I'll do it for you
  4. Replies
    21
    Views
    6,975

    Re: Trouble logging in?

    Please note that some ISPs seem to just balckhole emails from forums, they don't put the emails into junk folders, the emails just disappear :mad: We know for a fact that this happens, and is...
  5. Replies
    34
    Views
    3,444

    Re: Accessing VBForums is impossible

    At this stage, seeing as how you've tried everything else, I'd try doing a hard reset of the router to factory defaults. You should be able to back up the router settings beforehand, and than you can...
  6. Re: [RESOLVED] 550 Server error - but only on two threads.

    I'm sorry to say that it really was my doing :o :o

    I shall give myself a thoroughly good talking to over the weekend, and I promise not to do that again. Now let me go and see what else I can...
  7. Replies
    38
    Views
    1,522

    Re: [2008] Notice Program

    Have a good look at the Timespan structure in MSDN Library, you'll find it very useful for this project.
  8. Replies
    38
    Views
    1,522

    Re: [2008] Notice Program

    Yep, that's not a bad little project. I wrote one like that myself a few years ago :)
  9. Replies
    23
    Views
    1,035

    Re: [02/03] urgent help

    Hit Shift + F7 (or go to View>Designer), and you should get the design window back.
  10. Replies
    14
    Views
    1,438

    Re: Help Please Visual Studio 2008

    There is a built in constant for pi, so you can use Math.Pi whenever you need it. You don't need semicolons at the end of each statement in VB either.

    Add a button to the form along with the...
  11. Replies
    14
    Views
    1,438

    Re: Help Please Visual Studio 2008

    Post the code that you've got so far please.
  12. Re: SELECT ALL -- text in one than more textbox

    I don't think this can be done, only one control can have the focus at any one time, and by it's very nature selecting the text in a textbox must also give the textbox the focus. In any case, even if...
  13. Re: Too many arguments to Public Sub Show?

    Sorry, I didn't test it, that was just off the top of my head :o

    Mark, you still need to make your original declaration:


    Dim D As New IO.DriveInfo("C")
  14. Re: Too many arguments to Public Sub Show?

    You need to convert the string to a numeric value before you can work on it:


    Dim Size as Integer = CInt(D.AvailableFreeSpace)

    Then you can divide it to give GB:


    Size /= 1073741824
  15. Re: How to run again a specific Private Sub

    Thanks guys :)

    Although I always comment subroutine or function calls, I think I'll start using Me in future.
  16. Re: How to run again a specific Private Sub

    Out of curiosity, is there an advantage in prefixing the sub call with Me? I've always just put the name of the sub.

    Private Sub SomeMethod()
    SayHello()
    End Sub
  17. Re: [RESOLVED] [2008] Console.beep doesn't do anything

    What OS are you running? I'm starting to wonder if 64-bit does make a difference.
  18. Re: [RESOLVED] [2008] Console.beep doesn't do anything

    According to IntelliSense the minimum value is 37Hz. But anything below that would be beyond the range of human hearing in any case.
  19. Re: [2008] Console.beep doesn't do anything

    I reckon it's a glitch with my installation then (I'm using Vista 64-bit, but I doubt that makes any difference). Oh well I was planning on reinstalling everything soon anyway.

    Thanks for trying...
  20. Re: [2008] Console.beep doesn't do anything

    ^^^ Bumpety bump ^^^

    I was hoping that someone else with VS2008 could confirm whether Console.Beep works for them or not.
  21. Re: [2008] Console.beep doesn't do anything

    Full version, downloaded from MSDN subscriptions.
  22. Re: [2008] Console.beep doesn't do anything

    That sounds through any speakers or headphones that are attached, provided that Windows sounds are not disabled. I expressly want to sound the case speaker.
  23. [RESOLVED] [2008] Console.beep doesn't do anything

    I'm trying to get a beep from the system speaker (just top show that a keypress is invalid). Console.beep used to work just fine in VS2005 on this PC, but now that I'm using VS2008 it doesn't do...
  24. Re: [2008] A Bug? I'm totally baffled

    Many thanks, that was exactly what the problem was. This did the trick :)


    Private Sub NumericUpDown1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  25. [RESOLVED] [2008] A Bug? I'm totally baffled

    I've been getting an error messaqge in my project when I try and run it, where it won't even compile. In the end I made a test form, and put a ComboBox set to "DropDownList", and a Numeric UpDown...
  26. Replies
    5
    Views
    990

    Re: [RESOLVED] [2005] Resize TrackBar

    You're very welcome :)
  27. Replies
    5
    Views
    990

    Re: [2005] Resize TrackBar

    In Design View, if you set the Trackbar's Autosize property to False, then you will be able to set it to any height that you like.
  28. Re: Making a form movable/unmovable in Visual Studio 2005

    If it's any help, you can make the form unmoveable by setting it's BorderStyle to "None".
  29. Re: [2005] Access parts of a file by hex code??

    You've added the two Hex numbers together - &H10 + &H11 = &H21. And in decimal &H21 is 33, which is what you are seeing.
  30. Replies
    8
    Views
    1,700

    Re: [02/03] Setting working area?

    That site catches a lot of folks out, but if you scroll down the page you will find the replies underneath the ads, you don't actually have to pay the membership.
  31. Re: [2005] Please recommend a book for VB.net 2005

    I like both of these:

    http://www.amazon.com/gp/product/0764571982/sr=8-2/qid=1143249480/ref=pd_bbs_2/103-1341102-5013430?%5Fencoding=UTF8
    ...
  32. Replies
    12
    Views
    968

    Re: simple thing need help

    If day = day1 AndAlso time = time1 Then

    That is never going to work because day and time are DateTime types and day1 and time1 are strings. They will never evaulate to equal. You need to keep...
  33. Replies
    4
    Views
    568

    Re: VS 2005 Upgrade From 2003 - ERRORS

    I've had exactly the same thing on every project that I've converted. Though the vast majority of things that 2005 complains about are trivial and easily fixed. Curiously a quite large project that I...
  34. Replies
    3
    Views
    682

    Re: Random password generator

    A good place to start is to look up the RNGCryptoServiceProvider class in the MSDN Library. That will give you cryprographic standard random number generation, and you can use it to fill a Byte array...
  35. Replies
    19
    Views
    1,149

    Re: Dubugger problems

    You need to make sure that you compile the app as a Debug build and not a Release build. It's different in 2005 than it was in 2003, but typing "debug builds" into the Library should give you the...
  36. Re: Windows Form Designer code block

    Ah, that's worth knowing, I thought the designer generated code was gone for good. Thanks :)
  37. Re: Windows Form Designer code block

    Would this be a project that's been imported into VS 2005 by any chance? Because the Form Designer Genereated Code appears to have been dropped in VS2005, though it still remains in projects that...
  38. Replies
    15
    Views
    12,165

    Re: Rollover buttons

    I notice that somehow you've got both your events are handling the click events and not MouseEnter and MouseLeave. You'll need to change that before they'll work properly

    Private Sub...
  39. Re: Do vb.net 2003 projects migrate directly into vs 2005?

    Same with me, you'll almost certainly get some errors after conversion, but 2005 is very good at telling you what it doesn't like and usually tells you exactly what you need to change. So far I've...
  40. Replies
    17
    Views
    1,422

    Re: Difference between VS2003 Versions

    Not that I'm aware of. It's a good idea though, I'll see if I can suggest that to someone at MS :)

    I did write a little info thread over on our sister site some time back:
    ...
Results 1 to 40 of 267
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width