Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Matilde
  • Content: Threads
  • Order by date
  1. Matilde

    Function returning array???

    how do you return an array from a function? ie. function something(a:integer;b:integer):??? (array[1..2]) begin ... .. . end; ?? := something(15,67);
  2. Matilde

    Negative power...

    How can you do ie. -5^-4, without using the power function? You can't do the exp(-4*ln(-5)) because ln(var) can not be negative...? Matilde... ;o)
  3. Matilde

    Call function....

    How come i can't call a function inside a procedure??? And how do I fix this? Thanks Matilde...
  4. Matilde

    I'm doing this graphing program in

    I'm doing this graphing program in delphi, but i was wondering how can you make the program draw functions that you input in an edit box.... Thanks! Matilde... :O)
  5. Matilde

    Returning more than one value???

    How do you return more than one value in a function? i.e. if you calculate several results and you want to reurn them... double equation(double a = 0, double b = 0, double c = 0) { double sol1 = 0; double sol2 = 0; sol1 = (-b+sqrt((b*b)-4*a*c)/2*a; sol2 = (-b-sqrt((b*b)-4*a*c)/2*a...
  6. Matilde

    Sharing

    I'm on a local network on my school, and I would like to know how you share a folder on the local network with VBScript!
  7. Matilde

    Net send/msdos Prompt

    How do I open a msdos prompt window in the background so the user can't see it and how do I run net send in it?
  8. Matilde

    Net send/msdos Prompt

    How do I open a msdos prompt window in the background so the user can't see it. And how do I use net send in it?

Part and Inventory Search

Back
Top