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 Mike Lewis 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: scalp
  • Order by date
  1. scalp

    Passing pointers through windows messages?

    Have a look in the 'Win32 Programmers reference' help file (came with builder) for the function call CreateSemaphore. If you are creating the new process from within the initial process (CreateProcess), the semaphore seems to encapsulate the functionality you are looking for with the bool stuff...
  2. scalp

    Time Offsets

    create a new TDateTime object with a value of 1 in the hours argument: /*Template*/ __fastcall TDateTime(unsigned short hour, unsigned short min, unsigned short sec, unsigned short msec); get the current time, and add the two together; TDateTime one_hour = TDateTime(1,0,0,0); TDateTime...
  3. scalp

    making a Flash movie expire?

    Password protect, or make the file rely on another, external file (just a simple text file will do - parse the file and assign some essential variables from it). If this is running from a web server, as opposed to a desktop or mobile that he is showing investors, check the url that is loading...
  4. scalp

    problem with variables and actionscript

    Assuming the code you present is exactly as appears in your action script then you should be checking for equality with double '=' == is for equality test = is for assignment The code you have submitted in your question will assign "button1" to the value of var then test for true...
  5. scalp

    How do you link from HTML page to a particular frame in a flash movie?

    Pass the start frame number as a parameter in the Flash movie url on your HTM page: ie <PARAM NAME=movie VALUE=&quot;my500FrameFlashThing.swf?startFrame=100&quot;> ..etc.... <EMBED src=&quot;my500FrameFlashThing.swf?startFrame=100&quot; quality=high..etc.....></EMBED> the value for startFrame...

Part and Inventory Search

Back
Top