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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Erakis

  1. Erakis

    Play video with text overlay

    Hi, I need to play a video (Mpeg 2) and display text over it at between specific frame. From there, I download a sample from there [http://www.programmersheaven.com/2/FAQ-DIRECTX-Play-Video-File(MPEG-and-AVI)] but I don't understand how put the text overlay on the surface. Neither I don't...
  2. Erakis

    Remote Performance Monitor on Win CE Emulator

    Hi, Someone can tell if it's possible to run Remote Performance Monitor on Windows CE Emulator ? Regards,
  3. Erakis

    Help repeat background verticaly for two div

    But this is not the final border, they will be custom so I will need to produce it using background image repeating... I'll already tried height :100% but it doesn't work.
  4. Erakis

    Help repeat background verticaly for two div

    Please, take a look at my template : http://70.54.205.43/ExcelTest/template.html Now I would like that CenterLeft and CenterRight div height be the same as CenterContent or Center. So the background image should be repeated verticaly and not just one time as now. Regards
  5. Erakis

    PDF Generation from .Net Application

    Hi, We are looking for a person to help us in the development of a system to generate interactive cards in pdf format. Here is an URL of a web page showing what we need to represent in PDF format. ---> http://70.54.205.43/PDFHelp/Test.html From an application developed in .NET, we want to...
  6. Erakis

    Query problem (Alias)

    Thanks r937, It was a past code error, but fortunately I found the error by myelf. Here is the working query ; UPDATE IGNORE StationsSensorsValuesAVG SET ssva_Reserve_0_4 = ( SELECT MIN(ssv_Value) FROM StationsSensorsValues WHERE ssv_StationID = 4 AND...
  7. Erakis

    Query problem (Alias)

    Hi, I have some problem to build/execute my query : UPDATE IGNORE StationsSensorsValuesAVG SET ssva_Reserve_0_4 = ( SELECT MIN(ssv_Value) FROM StationsSensorsValues WHERE ssv_StationID = 4 AND ssv_SensorID = 27 AND ssv_Year = 2004...
  8. Erakis

    setTimeout on privileged methods

    Yes, it is working.
  9. Erakis

    setTimeout on privileged methods

    Hi, I'm a C++ (MFC)/C# programmer so you don't worry, I know what is a private or public method. What I show you there is simply a short exemple to explain you the problem. I'm developping an animation script and some method has to be privileged but this one has to be PRIVATE. I try to pass...
  10. Erakis

    setTimeout on privileged methods

    Ok. Thanks for issues about privileged function, but I did a mistake in my question. The function MUST be PRIVATE. So how do I call this method if it is PRIVATE ? Thanks
  11. Erakis

    setTimeout on privileged methods

    Hi, You said : setTimeout( "MyObject.call(Test);", 1000 ); But where is the "DoMove()" call method in that ;) ?
  12. Erakis

    setTimeout on privileged methods

    I tried : setTimeout( "DoMove.call(MyObject)", 1000 ); I'm still getting the following error : Error: 'DoMove is not defined'
  13. Erakis

    setTimeout on privileged methods

    Hi, I don't know if I understood but the call might me something like : setTimeout( "DoMove.call(MyObject)", 1000 ); Thanks
  14. Erakis

    setTimeout on privileged methods

    Hi, I'm having problem when calling privileged method from setTimeout. First call is well fired but the others failed, someone know why ? function MyObject( x, y, z ) { this.StartMovement = function() { // ... DoMove(); // ... } function DoMove() { alert( "Moving..." )...
  15. Erakis

    Mac OS (Zoom-in/Zoom-out)

    Thanks :)

Part and Inventory Search

Back
Top