Hello everyone,
I've been programming in VB.Net since i started and now i want to do everything in C#, but i ran in to some trouble in VB.Net is really easy
If(form1.Visible=true)Then
{
form1.Textbox1.Text = Textbox1.Text
//And So on for any field that i wanted
}
But in C# I'm unable to call something like this.
So here are the details, the main form is opened and there is a button that opens another form that brings up a list of articles(in a datagridview) and when i double click the article that i want the selection goes to the main form that was already opened to its corresponding textboxes
thanks in advance