Click here to Skip to main content
15,888,286 members
Home / Discussions / C#
   

C#

 
Questiondot or comma? Pin
Ranger496-May-07 0:26
Ranger496-May-07 0:26 
AnswerRe: dot or comma? Pin
Ranger496-May-07 1:35
Ranger496-May-07 1:35 
AnswerRe: dot or comma? [modified] Pin
DavidNohejl6-May-07 1:59
DavidNohejl6-May-07 1:59 
GeneralRe: dot or comma? Pin
Ranger496-May-07 2:23
Ranger496-May-07 2:23 
AnswerRe: dot or comma? Pin
AFSEKI7-May-07 2:21
AFSEKI7-May-07 2:21 
QuestionSending data from a form to another Pin
OlaMohammed5-May-07 21:42
OlaMohammed5-May-07 21:42 
AnswerRe: Sending data from a form to another Pin
Stefan Troschuetz5-May-07 21:52
Stefan Troschuetz5-May-07 21:52 
AnswerRe: Sending data from a form to another Pin
Sanjib Raj6-May-07 1:35
Sanjib Raj6-May-07 1:35 
it will best if you use event handler in Child Form
and Call it from Parent Form.
class FrmChild
{
public event System.EventHandler addData;
.........
......
}

class FrmParent
{.....
private void btnSchduler_ClickEvent(......)
{
FrmChild obj=new FrmChild();
obj.addData +=new EventHandler(objServices_addService);
obj.ShowDialog();
}

private void objServices_addService(object sender, EventArgs e)
{
//write code to Add in Data Grid....

}


}


Sanjit.rajbanshi@wlinktech.com

AnswerRe: Sending data from a form to another Pin
AFSEKI7-May-07 2:27
AFSEKI7-May-07 2:27 
QuestionDataGrideView Pin
hadad5-May-07 20:17
hadad5-May-07 20:17 
AnswerRe: DataGrideView Pin
Muammar©5-May-07 23:38
Muammar©5-May-07 23:38 
AnswerRe: DataGrideView Pin
AFSEKI7-May-07 2:29
AFSEKI7-May-07 2:29 
QuestionMultiple Picture Boxes Pin
JMOdom5-May-07 20:01
JMOdom5-May-07 20:01 
AnswerRe: Multiple Picture Boxes Pin
BoneSoft5-May-07 20:41
BoneSoft5-May-07 20:41 
AnswerRe: Multiple Picture Boxes Pin
Arun.Immanuel5-May-07 21:17
Arun.Immanuel5-May-07 21:17 
AnswerRe: Multiple Picture Boxes Pin
AFSEKI7-May-07 2:37
AFSEKI7-May-07 2:37 
QuestionGet a palette from a clipped bitmap Pin
Sunset Towers5-May-07 16:25
Sunset Towers5-May-07 16:25 
AnswerRe: Get a palette from a clipped bitmap Pin
Sunset Towers6-May-07 1:14
Sunset Towers6-May-07 1:14 
QuestionConvert the color image into the sketch in Visual Studio C# .Net Pin
zeeShan anSari5-May-07 10:33
zeeShan anSari5-May-07 10:33 
QuestionBluetooth.Net not supported on this device !! Pin
NiZaR.TecH5-May-07 8:44
NiZaR.TecH5-May-07 8:44 
AnswerRe: Bluetooth.Net not supported on this device !! Pin
Dave Kreskowiak5-May-07 18:11
mveDave Kreskowiak5-May-07 18:11 
GeneralRe: Bluetooth.Net not supported on this device !! Pin
NiZaR.TecH6-May-07 1:52
NiZaR.TecH6-May-07 1:52 
GeneralRe: Bluetooth.Net not supported on this device !! Pin
Dave Kreskowiak6-May-07 4:11
mveDave Kreskowiak6-May-07 4:11 
GeneralRe: Bluetooth.Net not supported on this device !! Pin
NiZaR.TecH10-May-07 6:12
NiZaR.TecH10-May-07 6:12 
QuestionC# Windows Application seems to be not responding! Pin
Adeel Chaudhry5-May-07 8:24
Adeel Chaudhry5-May-07 8:24 

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.