User Profile

Collapse

Profile Sidebar

Collapse
Wrycu
Wrycu
Joined: Sep 4 '06
Location: USA
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Wrycu
    replied to setting variables i think
    you mean...
    Code:
    With cnUser
        .Provider = FrmOptions.TxtProvider.Text
        .Open FrmOptions.provider
    ??

    Cause otherwise, i dont see why you set provider to anything. its unneeded. And.. it should probably be defined as a string.

    <edit>
    And i dunno what language you are using (it doesnt look like VB6), but it looks to me like you cannot 'open' a text box... or its...
    See more | Go to post

    Leave a comment:


  • Wrycu
    replied to rnd() not so random?
    It cant be random. At least, not truely random. It cannot chose which to pick, it has to be coded in. So, it says...
    rnd =
    .1343
    .453342
    .423
    .85654
    .45634
    .1433
    .3453
    etc
    and every time you run it, you get those numbers in that order.
    Randomize makes it more random. I dunno how, it probably has some complex thingy that makes it.. more random. or at least, makes it seem...
    See more | Go to post

    Leave a comment:


  • Wrycu
    replied to Compiling VB
    Include any .dll's and/or ocx's that are needed. I think mswinsck.ocx is neded.... but im not sure.
    See more | Go to post

    Leave a comment:


  • Wrycu
    replied to rnd() not so random?
    Rnd isnt random. Think about it. How could it be? Everything here is coded in. But, as the other person said, if you add Randomize (right before rnd is good), it kills the pattern and the same order the 'random' numbers come up in.
    See more | Go to post

    Leave a comment:


  • Use a for loop to add everything... add the name... and then try it? :-/
    If its random i dont think there is much you can do about it.
    See more | Go to post

    Leave a comment:


  • Wrycu
    replied to plz fast help
    and a for loop is like:

    Code:
    For i = 1 to 10
      i = i + 1
      hello = hello & i
    next i
    See more | Go to post

    Leave a comment:


  • Wrycu
    started a topic VB Question

    VB Question

    A friend of mine is making a program that allows you to visit web pages. We need to know how to get the source code from that webpage, and move it into a text box. Any ideas?
    See more | Go to post

  • Wrycu
    replied to Problems.
    in C
    Sweet, thanks.
    See more | Go to post

    Leave a comment:


  • Wrycu
    started a topic Problems.
    in C

    Problems.

    Hello people.

    I am pretty new to C++, but not very new to coding. I would like to have a C++ program do something at a certain date and time. I currently have the code:
    Code:
    #include <cstdlib>
    #include <iostream>
    
    using namespace std;
    string timee;
    
    int main()
    {
        timee="Sun 09/03/2006";
        if (system("date /t")==timee)
    ...
    See more | Go to post
No activity results to display
Show More
Working...