Click here to Skip to main content
15,906,816 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionVB.Net Application not working in LAN, SQL Server does not allow remote connections Pin
Francis K Antony20-Oct-09 0:00
Francis K Antony20-Oct-09 0:00 
AnswerRe: VB.Net Application not working in LAN, SQL Server does not allow remote connections Pin
Eddy Vluggen20-Oct-09 0:28
professionalEddy Vluggen20-Oct-09 0:28 
Questionhow to transfer data from textbox to gridview? Pin
ganesh kumarrr19-Oct-09 15:20
ganesh kumarrr19-Oct-09 15:20 
AnswerRe: how to transfer data from textbox to gridview? Pin
Richard MacCutchan20-Oct-09 2:07
mveRichard MacCutchan20-Oct-09 2:07 
GeneralRe: how to transfer data from textbox to gridview? Pin
ganesh kumarrr20-Oct-09 3:30
ganesh kumarrr20-Oct-09 3:30 
GeneralRe: how to transfer data from textbox to gridview? Pin
Richard MacCutchan20-Oct-09 3:36
mveRichard MacCutchan20-Oct-09 3:36 
GeneralRe: how to transfer data from textbox to gridview? Pin
Mycroft Holmes21-Oct-09 13:32
professionalMycroft Holmes21-Oct-09 13:32 
AnswerRe: how to transfer data from textbox to gridview? Pin
AhmedMasum28-Oct-09 2:10
AhmedMasum28-Oct-09 2:10 
add a string variable int the form that has the grid view.

overload the constructor that take a string argument. You have to initialize the string variable by the given parameter.Then call the constructor from the form that has the texbox as follows:

gridviewform f = new gridviewform(texbox1.text);
f.Show();

write this code in the formload event of form that has the grid view.

int p = dataGridView1.Rows.Add();
dataGridView1.Rows[p].Cells[0].Value = your string variable
QuestionForm layout at runtime differs from design Pin
Member 332970019-Oct-09 0:56
Member 332970019-Oct-09 0:56 
AnswerRe: Form layout at runtime differs from design Pin
Dave Kreskowiak19-Oct-09 1:43
mveDave Kreskowiak19-Oct-09 1:43 
GeneralRe: Form layout at runtime differs from design Pin
Member 332970019-Oct-09 2:14
Member 332970019-Oct-09 2:14 
GeneralRe: Form layout at runtime differs from design Pin
Luc Pattyn19-Oct-09 3:17
sitebuilderLuc Pattyn19-Oct-09 3:17 
GeneralRe: Form layout at runtime differs from design Pin
Member 332970019-Oct-09 3:44
Member 332970019-Oct-09 3:44 
GeneralRe: Form layout at runtime differs from design Pin
Luc Pattyn19-Oct-09 3:57
sitebuilderLuc Pattyn19-Oct-09 3:57 
GeneralRe: Form layout at runtime differs from design Pin
Member 332970019-Oct-09 5:19
Member 332970019-Oct-09 5:19 
GeneralRe: Form layout at runtime differs from design Pin
Henry Minute19-Oct-09 5:55
Henry Minute19-Oct-09 5:55 
GeneralRe: Form layout at runtime differs from design Pin
Member 332970019-Oct-09 5:57
Member 332970019-Oct-09 5:57 
QuestionBeyound understanding PING problem Pin
optimusprime2k18-Oct-09 8:05
optimusprime2k18-Oct-09 8:05 
AnswerRe: Beyound understanding PING problem Pin
Dave Kreskowiak18-Oct-09 10:48
mveDave Kreskowiak18-Oct-09 10:48 
GeneralRe: Beyound understanding PING problem Pin
optimusprime2k18-Oct-09 23:57
optimusprime2k18-Oct-09 23:57 
GeneralRe: Beyound understanding PING problem Pin
Dave Kreskowiak19-Oct-09 1:41
mveDave Kreskowiak19-Oct-09 1:41 
AnswerRe: Beyound understanding PING problem Pin
Luc Pattyn19-Oct-09 3:21
sitebuilderLuc Pattyn19-Oct-09 3:21 
Questiondecryption Pin
vikas shukla15-Oct-09 0:35
vikas shukla15-Oct-09 0:35 
AnswerRe: decryption Pin
Dave Kreskowiak15-Oct-09 1:29
mveDave Kreskowiak15-Oct-09 1:29 
Questionpaging for datagridview Pin
vikas shukla14-Oct-09 21:27
vikas shukla14-Oct-09 21:27 

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.