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 strongm 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: *

  1. GermanSpyder

    Using a Sub Name as a variable

    Bobby, You can use the Application.Run command to run a Function. Your code would look like this. 'Inside your forms: Sub cmdCall_Click(othersub as String) Application.Run othersub End Sub 'Inside of a module Function HelloWorld() msgbox "Hello World" End Function Function HelloSpace()...
  2. GermanSpyder

    How to share session variable between asp and asp.net

    You should check to see if the session is empty. Your Menu page passes the ID which is requested to setup your sessions variable. Your addnew.aspx page propably does not pass ID so that would set your session to null.
  3. GermanSpyder

    Function what to be Set to Value?

    Have you tried using: Call myfunction I have noticed on the databases that I have created that this works the same as: value = myfunction Scott

Part and Inventory Search

Back
Top