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!

Search results for query: *

  • Users: Erakis
  • Content: Threads
  • Order by date
  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

    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
  4. 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...
  5. 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...
  6. 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..." )...
  7. 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)]...
  8. 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...
  9. Erakis

    Need help for an SQL query

    Hello, I have a table that contains many value for many sensors. Here is an short exemple : [DATE, SENSOR_ID, VALUE] ... "2006-01-01 00:00:00", 8, 8.76 "2006-01-01 00:00:00", 10, 8.41 "2006-01-01 00:00:00", 11, 0.45 "2006-01-01 00:00:00", 12, 66.63 "2006-01-01 00:00:00", 13, 5.04...

Part and Inventory Search

Back
Top