Click here to Skip to main content
15,888,286 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How would I check if a certain process is running? Pin
Dave Kreskowiak30-Nov-10 15:10
mveDave Kreskowiak30-Nov-10 15:10 
QuestionMessage Closed Pin
1-Dec-10 10:44
Josh66801-Dec-10 10:44 
AnswerRe: How would I check if a certain process is running? Pin
Dave Kreskowiak1-Dec-10 14:14
mveDave Kreskowiak1-Dec-10 14:14 
GeneralMessage Closed Pin
1-Dec-10 14:56
Josh66801-Dec-10 14:56 
GeneralRe: How would I check if a certain process is running? Pin
Dave Kreskowiak1-Dec-10 18:01
mveDave Kreskowiak1-Dec-10 18:01 
AnswerRe: How would I check if a certain process is running? Pin
Rajesh Anuhya30-Nov-10 22:34
professionalRajesh Anuhya30-Nov-10 22:34 
QuestionRe: How would I check if a certain process is running? Pin
Luc Pattyn1-Dec-10 2:39
sitebuilderLuc Pattyn1-Dec-10 2:39 
QuestionAdd data to database Pin
ivo7530-Nov-10 8:23
ivo7530-Nov-10 8:23 
Hi, I create dynamically textboxes and want to add data from them to database, but I don't know how do this.
I use this to create textbox

v = 1
Dim l As Integer
l = 40
For i = 1 To Form1.k
l = l + 30
Dim lab As New Label
Dim t As New TextBox
Dim chk As New CheckBox
lab.Location = New Point(10, 30 + l)
t.Location = New Point(100, 30 + l)
chk.Location = New Point(420, 30 + l)
Me.Panel1.Controls.Add(chk)
Me.Panel1.Controls.Add(lab)
Me.Panel1.Controls.Add(t)
lab.BringToFront()
t.BringToFront()
chk.BringToFront()
t.Size = New Size(300, 20)
t.Name = "t" & i
lab.Name = "lab" & i
lab.Text = "Отговор" & i
chk.Name = "chk" & i

Next
AnswerRe: Add data to database Pin
AspDotNetDev30-Nov-10 10:14
protectorAspDotNetDev30-Nov-10 10:14 
GeneralRe: Add data to database Pin
ivo7530-Nov-10 10:52
ivo7530-Nov-10 10:52 
AnswerRe: Add data to database Pin
Luc Pattyn30-Nov-10 11:16
sitebuilderLuc Pattyn30-Nov-10 11:16 
GeneralRe: Add data to database Pin
ivo7530-Nov-10 11:27
ivo7530-Nov-10 11:27 
Questionbegintrans, commit and rollback Pin
mabrahao30-Nov-10 2:06
mabrahao30-Nov-10 2:06 
AnswerRe: begintrans, commit and rollback Pin
Goutam Patra30-Nov-10 2:36
professionalGoutam Patra30-Nov-10 2:36 
QuestionRe: begintrans, commit and rollback Pin
Eddy Vluggen30-Nov-10 3:06
professionalEddy Vluggen30-Nov-10 3:06 
AnswerRe: begintrans, commit and rollback Pin
Goutam Patra30-Nov-10 18:27
professionalGoutam Patra30-Nov-10 18:27 
GeneralRe: begintrans, commit and rollback Pin
Rajesh Anuhya30-Nov-10 22:40
professionalRajesh Anuhya30-Nov-10 22:40 
GeneralRe: begintrans, commit and rollback Pin
Goutam Patra30-Nov-10 23:03
professionalGoutam Patra30-Nov-10 23:03 
GeneralRe: begintrans, commit and rollback Pin
Gregory Gadow30-Nov-10 3:40
Gregory Gadow30-Nov-10 3:40 
AnswerRe: begintrans, commit and rollback Pin
Eddy Vluggen30-Nov-10 3:05
professionalEddy Vluggen30-Nov-10 3:05 
AnswerRe: begintrans, commit and rollback Pin
David Mujica30-Nov-10 3:34
David Mujica30-Nov-10 3:34 
AnswerRe: begintrans, commit and rollback Pin
Skynet_Code2-Dec-10 10:20
Skynet_Code2-Dec-10 10:20 
QuestionMake Form Always On Top, even in fullscreen games. Pin
Yance Lawang29-Nov-10 19:45
Yance Lawang29-Nov-10 19:45 
AnswerRe: Make Form Always On Top, even in fullscreen games. Pin
thatraja29-Nov-10 22:43
professionalthatraja29-Nov-10 22:43 
GeneralRe: Make Form Always On Top, even in fullscreen games. Pin
Yance Lawang29-Nov-10 23:17
Yance Lawang29-Nov-10 23:17 

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.