Search:

Type: Posts; User: gwdash

Page 1 of 13 1 2 3 4

Search: Search took 0.36 seconds.

  1. Replies
    26
    Views
    4,772

    Keep talking here. No reason to recreate the...

    Keep talking here. No reason to recreate the thread and lose the auto email capability

    Any Questions?
  2. Replies
    26
    Views
    4,772

    That was a table of the codes with the first and...

    That was a table of the codes with the first and second places as the axese(sp?). "0x" is just to denote Hexidecimal thus, "0xDE" means "D(or 14 * 16 (sixteens place)) + E(or 15 * 1 (ones place)),...
  3. Replies
    26
    Views
    4,772

    The format sasitrax was using is a text...

    The format sasitrax was using is a text representation of the file format. You can view it in a hex editor to view the actual bytes, or you can simply figure out the ascii codes of those commands. ...
  4. HANDLE hMutex; int WINAPI WinMain(HINSTANCE...

    HANDLE hMutex;

    int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow)
    {

    hMutex = CreateMutex( NULL, FALSE, _T("ApplicationName") );
    if ( hMutex &&...
  5. Replies
    3
    Views
    371

    shouldn't be a problem, just use gcc or gpp or cc...

    shouldn't be a problem, just use gcc or gpp or cc or cpp
  6. Thread: sin and cos

    by gwdash
    Replies
    7
    Views
    3,893

    You give arcsin a value between 0 and 1...

    You give arcsin a value between 0 and 1 inclusive, the output of a sin command. It will return the number of radians (pi radians=180 degrees). The number you give it is the ratio formed

    from...
  7. Thread: sin and cos

    by gwdash
    Replies
    7
    Views
    3,893

    try deleteing the space after the first "-" sign

    try deleteing the space after the first "-" sign
  8. Thread: sin and cos

    by gwdash
    Replies
    7
    Views
    3,893

    there aren't They are dirived as follows (from...

    there aren't

    They are dirived as follows (from vb-help):

    Inverse Sine: Arcsin(X) = Atn(X / Sqr(-X * X + 1))
    Inverse Cosine: Arccos(X) = Atn(-X / Sqr(-X * X + 1)) + 2 * Atn(1)
  9. Thread: xml to txt

    by gwdash
    Replies
    4
    Views
    953

    yes, it involves writing the XSL Style sheet and...

    yes, it involves writing the XSL Style sheet and then using a script in html to "transformNode":



    <HTML>
    <HEAD.
    <TITLE>XSL Example</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    function showXML()...
  10. Replies
    5
    Views
    1,853

    use a "\" instead of "div". It's integer divison...

    use a "\" instead of "div". It's integer divison

    I checked on some stuff and found that "\" may not work with decimals, you can always do int(12.35/1) or whatever is nesscessary d
  11. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    i agree, Metric SO much better, but is only...

    i agree, Metric SO much better, but is only taught in science :confused:
  12. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    thanks. i'm calculating the angle for lauch to go...

    thanks. i'm calculating the angle for lauch to go a distances in a certain range(determined by the avalible water presure which i can regulate manually). thanks, i will post when i impliment it all
  13. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    thanks alot, when i solved that for x, i got...

    thanks alot, when i solved that for x, i got sqrt(cos-1(sin-1(9.8d/(2V2)))).

    i know this is wrong, but where?
  14. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    Thanks for all the help, i will attempt with...

    Thanks for all the help, i will attempt with projectile formulas and the filling the liter technique. As for what i'm doing, i will attatch photographs once i finsh this programing.

    In Fonduze's...
  15. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    I believe that is a valid assumption and how i...

    I believe that is a valid assumption and how i was planing to approach the problem. What are these equations(relating launch velocity and angle) to distance traveled?




    Thanks alot
  16. Thread: Flowing Water

    by gwdash
    Replies
    17
    Views
    1,204

    Flowing Water

    I relieze there are many variables and only an approximation is possible, but giving the following situation, what formulae are required and what are they:

    I have a stream of water flowing through...
  17. Replies
    12
    Views
    727

    I was fooling around and noticed e^(pi*i) = -1,...

    I was fooling around and noticed e^(pi*i) = -1, thus ln -1 = pi * i

    Weird...
  18. Replies
    8
    Views
    2,575

    try sending InvalidateRectangle, and then send...

    try sending InvalidateRectangle, and then send WM_PAINT, that should force it to repaint.
  19. Replies
    8
    Views
    620

    no point in using a timer interval of less than...

    no point in using a timer interval of less than about 32. the resolution of your clock interupt is about 32 milliseconds. so anyting less won't make any difference
  20. Replies
    2
    Views
    495

    look into this code: Const EWX_LOGOFF = 0...

    look into this code:


    Const EWX_LOGOFF = 0
    Const EWX_SHUTDOWN = 1
    Const EWX_REBOOT = 2
    Const EWX_FORCE = 4
    Const CCDEVICENAME = 32
    Const CCFORMNAME = 32
    Const DM_BITSPERPEL = &H40000
  21. Replies
    7
    Views
    742

    ok, try this: Dim MyArray() As Byte ...

    ok, try this:


    Dim MyArray() As Byte

    MyArray = LoadResData(101, 10)

    Open "C:\somefile.exe" For Binary As #1
    Put #1, MyArray
    Close #1
  22. Replies
    5
    Views
    509

    Const AW_HOR_POSITIVE = &H1 'Animates the window...

    Const AW_HOR_POSITIVE = &H1 'Animates the window from left to right. This flag can be used with roll or slide animation.
    Const AW_HOR_NEGATIVE = &H2 'Animates the window from right to left. This...
  23. Replies
    5
    Views
    509

    try the AnimateWindow API, it lets you do stuff...

    try the AnimateWindow API, it lets you do stuff like that
  24. Replies
    8
    Views
    440

    how do you send your mail then?? without...

    how do you send your mail then??

    without sendmail, you have to talk directly to SMTP server(s).

    and i doubt your entire company knows the SMTP protocol like that back of their hand
  25. Replies
    8
    Views
    440

    correct, but it will only list the proccess of...

    correct, but it will only list the proccess of the current user if called with no options, i don't know what the options are to list proccess for a specific user
  26. Replies
    8
    Views
    440

    well, if it's being run as root, the ps will give...

    well, if it's being run as root, the ps will give you a list of proccesses being run

    uptime will give you the uptime of the machine

    not sure about load average or freespace, but i know you can...
  27. Thread: threads

    by gwdash
    Replies
    4
    Views
    438

    not EXACTLY the same time unless you have...

    not EXACTLY the same time unless you have multiple proccessors, your OS(windows, usually), does something called timeslicing in which it allocates each thread a certain amount of time to do stuff,...
  28. Replies
    7
    Views
    627

    same, and very anoying

    same, and very anoying
  29. use the tabstrib control, it has it's own...

    use the tabstrib control, it has it's own containers and is one hundred times easier to use.
  30. Replies
    13
    Views
    558

    i had the same problem at work, running A very...

    i had the same problem at work, running A very fast inet, UNIX, and netscape 4, but running IE on the same network(on a pc), it was faster
  31. Replies
    12
    Views
    783

    ah yes, no one can find the decaration for the...

    ah yes, no one can find the decaration for the net functions, look in MSDN
  32. Replies
    12
    Views
    783

    that function gets who is currently logged into...

    that function gets who is currently logged into the computer your sitting at now
  33. Replies
    16
    Views
    1,104

    i think it uses an algorithm as well, thats how...

    i think it uses an algorithm as well, thats how i've always thought it generates Random numbers. thats why there called "pseduo-random" because there are some patterns in the numbers do to the use...
  34. Replies
    12
    Views
    783

    well, using windows NT(2000) you might be able to...

    well, using windows NT(2000) you might be able to with some of the APIs

    ...looks them up...

    ok here is what i found, you can use the NetServerEnum function with the SV_TYPE_WORKSTATION flag to...
  35. Replies
    17
    Views
    724

    i had some glitches in my code, try this: ...

    i had some glitches in my code, try this:



    <table cols="2" rows="1">
    <tr>
    <td align="left">
    <table border="0">
    <tr>
    <td><img...
  36. Replies
    17
    Views
    724

    try this: ...

    try this:



    <table cols="2" rows="1">
    <tr>
    <td align="left">
    <table border="0">
    <tr>
    <td><img src="images/buttontbw.bmp" alt=""></td>
  37. no, only if its the href of a link, onclick...

    no, only if its the href of a link, onclick doesn't, ie:

    <a href="javascript:history.back();">Go Back</a>

    vs.

    <a href="" onclick="history.back();">Go Back</a>
  38. Replies
    3
    Views
    456

    with IE 5 you can use the DataControl and script...

    with IE 5 you can use the DataControl and script it to do client side DBs. i have a sample
  39. Replies
    1
    Views
    315

    mine is just a sample using his code: it's...

    mine is just a sample using his code:



    it's not designed to work
  40. Replies
    3
    Views
    481

    see the SMTP RFC, RFC821, at...

    see the SMTP RFC, RFC821, at http://www.freesoft.org/CIE/RFC/821/
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width