Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hosting Process In My Form? Article? Pin
Giorgi Dalakishvili16-Sep-08 10:37
mentorGiorgi Dalakishvili16-Sep-08 10:37 
GeneralRe: Hosting Process In My Form? Article? Pin
Abydosgater16-Sep-08 12:06
Abydosgater16-Sep-08 12:06 
QuestionExport Datagridview to Excel or Word Pin
Atis16-Sep-08 10:04
Atis16-Sep-08 10:04 
AnswerRe: Export Datagridview to Excel or Word Pin
Giorgi Dalakishvili16-Sep-08 10:33
mentorGiorgi Dalakishvili16-Sep-08 10:33 
QuestionImagelist to file or- enable adding an image to the list Pin
ArGiLa16-Sep-08 9:50
ArGiLa16-Sep-08 9:50 
QuestionHelp creating DataTable filter Pin
Richard Blythe16-Sep-08 8:37
Richard Blythe16-Sep-08 8:37 
AnswerRe: Help creating DataTable filter Pin
Steve Echols16-Sep-08 19:25
Steve Echols16-Sep-08 19:25 
QuestionProblem With Windows Forms In Full Screen Pin
Morrizle16-Sep-08 7:47
Morrizle16-Sep-08 7:47 
I am writing a little timer program to control usage of computers in a computer lab i work in. I have two text boxes. One for the index number of the user and the other for the password. If the user presses tab key, the screen flickers.
this is the code i use for the full screen
private void mainLab_Load(object sender, EventArgs e)
{
this.Size = SystemInformation.PrimaryMonitorSize;
this.Location = new Point(0, 0);
intLLKey = KeyBoardHooker.SetWindowsHookEx(KeyBoardHooker.WH_KEYBOARD_LL, hooker.LowLevelKeyboardProc
, System.Runtime.InteropServices.Marshal.GetHINSTANCE(System.Reflection.Assembly.GetExecutingAssembly().GetModules()[0]).ToInt32(), 0);
//topmost
this.TopMost = true;
//activate
this.Activate();

}

I also have a system hook which i use to disable the windows key and other special keys. I am running the program on the limited account i have created. I used windows steady state to disable task manager. However if the user continuosly presses the ctrl+alt+del the program crashes and exits.
And last but not least i used a windows service to start the program.
Questionhow can i change (app.config) configuration in runtime Pin
ahmedhassan9616-Sep-08 6:28
ahmedhassan9616-Sep-08 6:28 
AnswerRe: how can i change (app.config) configuration in runtime Pin
Giorgi Dalakishvili16-Sep-08 6:59
mentorGiorgi Dalakishvili16-Sep-08 6:59 
AnswerRe: how can i change (app.config) configuration in runtime Pin
Mark Salsbery16-Sep-08 8:41
Mark Salsbery16-Sep-08 8:41 
QuestionC# web service callback method called multiple times Pin
Chazzysb16-Sep-08 5:35
Chazzysb16-Sep-08 5:35 
AnswerRe: C# web service callback method called multiple times Pin
Simon P Stevens16-Sep-08 5:42
Simon P Stevens16-Sep-08 5:42 
GeneralRe: C# web service callback method called multiple times Pin
Chazzysb16-Sep-08 5:53
Chazzysb16-Sep-08 5:53 
Question[Message Deleted] Pin
dataminers16-Sep-08 4:56
dataminers16-Sep-08 4:56 
RantRe: Persistent object and Transient object ? Pin
Guffa16-Sep-08 5:32
Guffa16-Sep-08 5:32 
GeneralRe: Persistent object and Transient object ? Pin
Pete O'Hanlon16-Sep-08 8:49
mvePete O'Hanlon16-Sep-08 8:49 
GeneralRe: Persistent object and Transient object ? Pin
Dave Kreskowiak16-Sep-08 8:59
mveDave Kreskowiak16-Sep-08 8:59 
JokeRe: Persistent object and Transient object ? Pin
Guffa16-Sep-08 9:37
Guffa16-Sep-08 9:37 
GeneralRe: Persistent object and Transient object ? Pin
Pete O'Hanlon16-Sep-08 9:44
mvePete O'Hanlon16-Sep-08 9:44 
GeneralRe: Persistent object and Transient object ? Pin
Muammar©16-Sep-08 13:37
Muammar©16-Sep-08 13:37 
Question{"Invalid object name 'Table."} Pin
postonoh16-Sep-08 4:50
postonoh16-Sep-08 4:50 
AnswerRe: {"Invalid object name 'Table."} Pin
Richard Blythe16-Sep-08 5:16
Richard Blythe16-Sep-08 5:16 
GeneralRe: {"Invalid object name 'Table."} Pin
postonoh16-Sep-08 6:14
postonoh16-Sep-08 6:14 
GeneralRe: {"Invalid object name 'Table."} Pin
Richard Blythe16-Sep-08 7:15
Richard Blythe16-Sep-08 7:15 

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.