Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for ohwhatacuteanaconda

Have you tried this If (e.KeyChar < "0" OrElse e.KeyChar > "9") AndAlso e.KeyChar <> ControlChars.Back Then 'cancel keys e.Handled = True End If

Member Avatar for ohwhatacuteanaconda
0
400
Member Avatar for roemerito

Hello Everyone So i have this flowlayoutpanel that contains checkboxes, so what It does is if a select a checkbox the text of that checkbox will be passed to the ProblemTextBox ![checkboxes](/attachments/large/3/checkboxes.png "checkboxes") My main problem is that I am able to add new checkboxes to the ProblemTextBox, but when …

Member Avatar for roemerito
0
2K
Member Avatar for roemerito

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 …

Member Avatar for roemerito
0
259
Member Avatar for sam1

I Solved my Issue In MainForm i added a this method public void GetFamilia(){ familiaTextBox.Text = Properties.Settings.Default.fam_id.ToString(); label2.Text = Properties.Settings.Default.fam_desc.ToString(); } And of the SubForm i added this method on the CellClick private void AceptarSeleccion(object sender, DataGridViewCellEventArgs e) { if (Articulos.ActiveForm.Visible == true) { Properties.Settings.Default.fam_id = int.Parse(idTextBox.Text); Properties.Settings.Default.fam_desc = familiaTextBox.Text; …

Member Avatar for roemerito
1
2K
Member Avatar for king03

Hi King03 Maybe this will help, i fixed the code and left you a little video example: System.Data.SqlClient.SqlConnection connection = new System.Data.SqlClient.SqlConnection(); System.Data.SqlClient.SqlCommand command = new System.Data.SqlClient.SqlCommand(); System.Data.SqlClient.SqlDataAdapter adaptador = new System.Data.SqlClient.SqlDataAdapter(); DataSet dataset = new DataSet(); int count; try { connection.ConnectionString = @"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database1.mdf;Integrated Security=True;User Instance=True"; command.CommandText = "SELECT …

Member Avatar for king03
0
142

The End.