Search results for query: *

  1. R

    copying a file

    Thank you it work perfect.
  2. R

    copying a file

    not really, I just want to write a program that when executed it will copy all the file in the F directory on the server machines to a C drive on the local machine.
  3. R

    copying a file

    Hello everyone, I'm trying to write a simple program where a user click on a button and it copy all the file in drive D for example and store it in drive E. The program will be running in windows 98. If you can post sample code. Thanks.
  4. R

    VB.net Beginner

    You can download a free visual studio express 2005 from microsoft website and search for help there.
  5. R

    Byref and Byval

    byref is quicker because you are actually passing the memory location, becareful when using byref because the changes made by the calling procedure will change the variable. ByVal is more safer but consume more memory and slower because it have to copy itself.
  6. R

    Function pls...

    How would you call this function from an event procedure?
  7. R

    annual percent raise

    thanks, i think i got it
  8. R

    error: End of statement expected

    try this: If the text input is greater than 100 and less than 501 then display number else if it is less than 101 then display message "number too small" and if it is over 501 then display "too large". hope this help!
  9. R

    annual percent raise

    So far I am using a for...loop from current age to retirement age. The problem I am having is try to write a code for calculating the current salary times Annual raise from the current age to retire age using a loop.
  10. R

    annual percent raise

    I'm trying to built a program that a user enter their current age, salary, annual raise and retirement age. the program should calculate their lifetime earning. I am having problem with writing code for annual percent raise any suggestion?. Thanks
Back
Top