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. 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 :)
  16. Erakis

    Struct def TypeLoadException

    Hi, Thanks for you help, it is really appreciated :) Here is my struct again : [StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi, Size=16)] struct InfoRegister { [FieldOffset(0)] public uint TargetIdBitField; [FieldOffset(4)] [MarshalAs(UnmanagedType.ByValArray...
  17. Erakis

    Struct def TypeLoadException

    Hi, Ouch ! Ungly as you said, not really usefull :(
  18. Erakis

    Struct def TypeLoadException

    Hi, I cannot pre-allocate space for my array because C-Sharp doesn't allow default constructor (empty) on struct object. I already test other types of union using C-Sharp and it work well. Here it is an exemple : public struct SpecialFloat { [FieldOffset(0)] public float FloatValue...
  19. Erakis

    Struct def TypeLoadException

    Hi, What wrong with my struct declaration ? When I run my program, I got a TypeLoadException. [StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi, Size=16)] struct InfoRegister { [FieldOffset(0)] public uint TargetIdBitField; [FieldOffset(4)]...
  20. Erakis

    Marshal.Copy Struct -> ushort[]

    Hi, Here is a stuct that I have to fill using a dll function : struct InfoRegister { public uint TargetIdBitField; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 9) ] public char[] Label; public byte Mode; public byte Index; public byte CS; } The function...

Part and Inventory Search

Back
Top