CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 6 of 6 FirstFirst ... 3456
Results 76 to 81 of 81
  1. #76
    Join Date
    Aug 2007
    Posts
    448

    Re: Problem with module and form load slow

    Yes I do GremlinSA, I understand the way of how to write the method. I got the string correct by writing less than or equal 999 so what about writing 1.0 instead 1000 of trackbar value??




    I'm only to use and write the code for my textbox. You said that String to Decimal Comparison is wrong. What is the correct way of writing the string using with greater than 1.0 to receive the textbox.showdialog??




    I'm sorry for being insulting to guru members but something that give me frustrating on the hard job I have ever deals with so your advise would get my job done without being frustrating.



    Thanks,
    Mark

  2. #77
    Join Date
    Nov 2004
    Location
    Slough, UK
    Posts
    184

    Re: Problem with module and form load slow

    Quote Originally Posted by mark103
    What is the correct way of writing the string using with greater than 1.0 to receive the textbox.showdialog??
    Code:
    Double.Parse(stringHere)
    
    ' OR
    
    Single.Parse(stringHere)
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || ClickOnline ||

    Did I ever say I was an expert?

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Please mark threads resolved by going to the thread tools menu and clicking the Mark Thread Resolved button.

    Has a post really helped you? Please Rate it.

  3. #78
    Join Date
    Apr 2008
    Posts
    4

    Re: Problem with module and form load slow

    Holy crap this guy must be related to that girl in the other thread. Mark I take it English is not your first language?

    Anyway, I just started to learn Visual Basic myself, but I am blown away that you are unable to grasp something so simple after coding in it for 3 years? I sat down this morning and wrote a whole program and all I did was read a book.

  4. #79
    Join Date
    Aug 2007
    Posts
    448

    Re: Problem with module and form load slow

    There is no need to shout, argument or be rude with each other. I have decided to upload the following attachment which it would save me a time around by having alot of trouble. You can see what goes wrong. The trackbar value are working fine if I type 1.0 on the textbox or empty the textbox and I move the value then I have no problem. Used to be received the message box when I moved the value so I am glad that I have fixed the problem.




    When I removed the text on the textbox, the trackbar value moved to 0 and when I type 1.0, the trackbar value moved to 1000. When I type higher than 1.4, I received the message box which it works GREAT! But I cannot type any of the lowest numbers like 2,3,4,5,6,7,8......etc because the message box will appear. I can only type an empty textbox and 1.0. How can I get pass of the loops which it will allows me to type any of the lowest numbers and if I type higher than 1.0 then the message box will appears to come up on the screen??



    Thanks,
    Mark
    Attached Files Attached Files

  5. #80
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Problem with module and form load slow

    You have something wrong here:
    higher than 1.4, I received the message box which it works GREAT! But I cannot type any of the lowest numbers like 2,3,4,5,6,7,8....
    1.x IS LOWER than 2, not HIGHER. 2 cannot be a LOWEST NUMBER
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  6. #81
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: Problem with module and form load slow

    OK guys, I've had enough. Here I draw the line.
    I've decided to close this thread, because there were too many insults to one another.
    We are all here to help and to learn, if we cannot do that in a civilised manner, then I don't know anymore.

    Mark, please start a new thread, but concider the fact that good advice was given all the way through this thread. You cannot expect us to do your job for you - that is what you get paid to do. Make an effort, from your side too, else, by being spoon fed all the time, will benefit you nothing.

    Others, please, don't get too insulting again.
    Last edited by HanneSThEGreaT; May 2nd, 2008 at 01:30 AM.

Page 6 of 6 FirstFirst ... 3456

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured