Click here to Skip to main content
15,884,064 members
Home / Discussions / C#
   

C#

 
GeneralRe: latebinding Word Pin
KKuehnberger19-Sep-05 6:48
KKuehnberger19-Sep-05 6:48 
GeneralRe: latebinding Word Pin
John Fisher19-Sep-05 13:57
John Fisher19-Sep-05 13:57 
Questionporting c# aplplications to linux Pin
Mridang Agarwalla19-Sep-05 2:35
Mridang Agarwalla19-Sep-05 2:35 
AnswerRe: porting c# aplplications to linux Pin
enjoycrack19-Sep-05 2:56
enjoycrack19-Sep-05 2:56 
AnswerRe: porting c# aplplications to linux Pin
Mohamad Al Husseiny19-Sep-05 8:55
Mohamad Al Husseiny19-Sep-05 8:55 
QuestionPassing values from one form to another Pin
sajjo7919-Sep-05 1:37
sajjo7919-Sep-05 1:37 
AnswerRe: Passing values from one form to another Pin
enjoycrack19-Sep-05 2:49
enjoycrack19-Sep-05 2:49 
AnswerRe: Passing values from one form to another Pin
mattylovestara19-Sep-05 20:49
mattylovestara19-Sep-05 20:49 
public Payment()
{

InitializeComponent();

}
public Payment(string TableNumber)
{
string Table = TableNumber;
InitializeComponent();
}

For Example:
I wanted to pass the text of a label from the main windows form called Main to this Payment windows form.
Add another constructor with the specific type(Ex: string)
When you call it in the main form it will look like this:

In the main form i called Payment(string TableNumber)

Payment pay = new Payment(EmployeeName.Text);
pay.ShowDialog(this);

Now that i have done that Table contains the string that i needed for that form

Matt Srum
QuestionDownload from Server Pin
cloudking1196619-Sep-05 0:34
cloudking1196619-Sep-05 0:34 
AnswerRe: Download from Server Pin
enjoycrack19-Sep-05 1:01
enjoycrack19-Sep-05 1:01 
AnswerRe: Download from Server Pin
seee sharp19-Sep-05 1:02
seee sharp19-Sep-05 1:02 
Questioncreate a dll [part 2] Pin
Sasuko19-Sep-05 0:20
Sasuko19-Sep-05 0:20 
AnswerRe: create a dll [part 2] Pin
Stefan Troschuetz19-Sep-05 1:19
Stefan Troschuetz19-Sep-05 1:19 
AnswerRe: create a dll [part 2] Pin
19-Sep-05 11:41
suss19-Sep-05 11:41 
QuestionJavascript or how? Pin
cloudking1196619-Sep-05 0:09
cloudking1196619-Sep-05 0:09 
QuestionTimer Pin
levi's18-Sep-05 23:56
levi's18-Sep-05 23:56 
AnswerRe: Timer Pin
Stefan Troschuetz19-Sep-05 1:21
Stefan Troschuetz19-Sep-05 1:21 
GeneralRe: Timer Pin
levi's19-Sep-05 15:19
levi's19-Sep-05 15:19 
GeneralRe: Timer Pin
Stefan Troschuetz19-Sep-05 21:41
Stefan Troschuetz19-Sep-05 21:41 
GeneralRe: Timer Pin
levi's19-Sep-05 23:44
levi's19-Sep-05 23:44 
GeneralRe: Timer Pin
Stefan Troschuetz20-Sep-05 0:21
Stefan Troschuetz20-Sep-05 0:21 
QuestionAscii sending problem. Pin
cue_ball18-Sep-05 23:45
cue_ball18-Sep-05 23:45 
AnswerRe: Ascii sending problem. Pin
Rob Harrison19-Sep-05 3:01
Rob Harrison19-Sep-05 3:01 
QuestionRename the File name Pin
Anonymous18-Sep-05 23:42
Anonymous18-Sep-05 23:42 
AnswerRe: Rename the File name Pin
Stefan Troschuetz19-Sep-05 0:29
Stefan Troschuetz19-Sep-05 0:29 

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.