blah blah blah is here! blah blah » Close

0
votes
0 answers

VC# dynamically close msg & popup window's leaving search-list & DB-grid open in navigator

I open a web page that request search data from the client. This is the upper piece to 2 piece web page. After user enters data and postback.... the second piece appears which is a data grid that is return from a Database "SELECT" ...

1
votes
1 answers

Closing Form1 with Program.cs

Hey, I've got no clue how i would go about closing down the whole program with program.cs, because i made keyboard hooks, and i want basically when i press sec to close the program, i already have the keyboard hooks and that, just I've got ...

0
votes
0 answers

C# PPC: Start Process, close himself letting the process up

I need to start a process in a ppc application for an update of the exe file and some other so i thought: create another app that makes this thing overwriting that who generated it in this way i could make the update of the system. But ...

1
votes
1 answers

Close form on datagrid status

How can i close my form if my datagrid has no rows? or rows with any data anyhow. I'm going to place the code in a timer event. So basicly when my timer event fires if it doesn't count any rows in DataGridview the form will close.

1
votes
3 answers

Help with threading

Hi guys, I need some help with running functions in seperate threads. My goal is to open or close the disc drive by pressing a button in a form, without the form freezing until it has opened or closed. [code] using System; using Syst ...

1
votes
1 answers

Displaying Child Windows

eeboy
499

I have several child windows that I need to display. To show the dialog I have been: [code] private void ButtonUsers_Click(object sender, System.Windows.RoutedEventArgs e) { //Make main window transparent this.Opacity=.6; ...

0
votes
0 answers

WPF - Page closing itself via it's hosting frame in C#

betpet
208

Hi, I have a WPF application that has a menu, a frame and depending on what you select in the menu, a page gets added to the frame to allow the user to get on with stuff. The problem I have is that they user wants a 'cancel' button on ...

1
votes
1 answers

how to close forms & click button in code

hello , i have tow questions : 1 - i want code to close all forms like [code] closeAllForms();[/code] 2 - i want code like this [code] this.Button1.Click(); [/code]

Feedback