Click here to Skip to main content
15,914,162 members
Home / Discussions / C#
   

C#

 
GeneralRe: Has anyone attempted synchronized scolling? Pin
progload3-Oct-04 10:21
progload3-Oct-04 10:21 
GeneralErrorProvider() Not Displayed Pin
dbetting30-Aug-04 5:36
dbetting30-Aug-04 5:36 
Generalinstalling global cbt hooks in c# Pin
vignesh_s30-Aug-04 3:51
vignesh_s30-Aug-04 3:51 
GeneralRe: installing global cbt hooks in c# Pin
Nick Parker30-Aug-04 4:15
protectorNick Parker30-Aug-04 4:15 
GeneralRe: installing global cbt hooks in c# Pin
Duncan Edwards Jones30-Aug-04 4:15
professionalDuncan Edwards Jones30-Aug-04 4:15 
GeneralRe: installing global cbt hooks in c# Pin
vignesh_s3-Sep-04 3:40
vignesh_s3-Sep-04 3:40 
Generalset time in c# Pin
erina54830-Aug-04 3:14
erina54830-Aug-04 3:14 
GeneralRe: set time in c# Pin
Nick Parker30-Aug-04 4:27
protectorNick Parker30-Aug-04 4:27 
Try P/Invoking SetSystemTime as the following:

[Serializable, StructLayout(LayoutKind.Sequential)]
private struct SYSTEMTIME 
{
  [MarshalAs(UnmanagedType.U2)] public short Year;
  [MarshalAs(UnmanagedType.U2)] public short Month;
  [MarshalAs(UnmanagedType.U2)] public short DayOfWeek;
  [MarshalAs(UnmanagedType.U2)] public short Day;
  [MarshalAs(UnmanagedType.U2)] public short Hour;
  [MarshalAs(UnmanagedType.U2)] public short Minute;
  [MarshalAs(UnmanagedType.U2)] public short Second;
  [MarshalAs(UnmanagedType.U2)] public short Milliseconds;
}

[DllImport("kernel32.dll")]
static extern bool SetSystemTime(ref SYSTEMTIME time);


- Nick Parker
My Blog | My Articles

GeneralRe: set time in c# Pin
Heath Stewart30-Aug-04 5:56
protectorHeath Stewart30-Aug-04 5:56 
GeneralExporting to CVS Pin
Digger2730-Aug-04 1:15
Digger2730-Aug-04 1:15 
GeneralRe: Exporting to CVS Pin
Colin Angus Mackay30-Aug-04 1:31
Colin Angus Mackay30-Aug-04 1:31 
GeneralRe: Exporting to CVS Pin
Digger2730-Aug-04 4:27
Digger2730-Aug-04 4:27 
GeneralRe: Exporting to CVS Pin
Nick Parker30-Aug-04 4:22
protectorNick Parker30-Aug-04 4:22 
GeneralISA bus access Pin
zaarzzz30-Aug-04 1:12
zaarzzz30-Aug-04 1:12 
GeneralRe: ISA bus access Pin
leppie30-Aug-04 3:05
leppie30-Aug-04 3:05 
GeneralExport a report to multiple excel files Pin
KSEI30-Aug-04 1:04
KSEI30-Aug-04 1:04 
GeneralRe: Export a report to multiple excel files Pin
Arch4ngel30-Aug-04 2:23
Arch4ngel30-Aug-04 2:23 
GeneralProblem with Richtextbox wrapping Pin
dmc55530-Aug-04 0:29
dmc55530-Aug-04 0:29 
GeneralRe: Problem with Richtextbox wrapping Pin
Judah Gabriel Himango30-Aug-04 6:42
sponsorJudah Gabriel Himango30-Aug-04 6:42 
GeneralRe: Problem with Richtextbox wrapping Pin
Dave Kreskowiak30-Aug-04 7:40
mveDave Kreskowiak30-Aug-04 7:40 
GeneralRe: Problem with Richtextbox wrapping Pin
dmc55530-Aug-04 23:54
dmc55530-Aug-04 23:54 
QuestionHow to create a line from nodes? Pin
adnanh7530-Aug-04 0:24
adnanh7530-Aug-04 0:24 
AnswerRe: How to create a line from nodes? Pin
Colin Angus Mackay30-Aug-04 1:39
Colin Angus Mackay30-Aug-04 1:39 
GeneralRe: How to create a line from nodes? Pin
adnanh7530-Aug-04 1:51
adnanh7530-Aug-04 1:51 
GeneralRe: How to create a line from nodes? Pin
Colin Angus Mackay30-Aug-04 2:09
Colin Angus Mackay30-Aug-04 2:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.