Click here to Skip to main content
16,006,428 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: [VS10] Debug and Release build problem Pin
The Mighty Atom5-Jul-11 6:41
The Mighty Atom5-Jul-11 6:41 
GeneralRe: [VS10] Debug and Release build problem Pin
Richard MacCutchan5-Jul-11 10:09
mveRichard MacCutchan5-Jul-11 10:09 
GeneralRe: [VS10] Debug and Release build problem Pin
The Mighty Atom5-Jul-11 11:03
The Mighty Atom5-Jul-11 11:03 
GeneralRe: [VS10] Debug and Release build problem Pin
Richard MacCutchan5-Jul-11 11:33
mveRichard MacCutchan5-Jul-11 11:33 
GeneralRe: [VS10] Debug and Release build problem Pin
The Mighty Atom5-Jul-11 11:54
The Mighty Atom5-Jul-11 11:54 
AnswerRe: [VS10] Debug and Release build problem Pin
TheComputerMan13-Jul-11 0:51
TheComputerMan13-Jul-11 0:51 
GeneralRe: [VS10] Debug and Release build problem Pin
The Mighty Atom13-Jul-11 5:51
The Mighty Atom13-Jul-11 5:51 
QuestionUse event on Runtime Pin
ivo753-Jul-11 11:04
ivo753-Jul-11 11:04 
Hi, I create Pictureboxes on Runtime and I want to use event for these Pictureboxes. How make I this? This is my code

Dim c As Collection
       Dim myCollection As New Collection()
       c = TwainHandler.ScanImages("C:\", "jpg")
       Dim l As Integer
       l = 0
       Dim i As Integer
       i = 0
       For Each fn1 In c
           i = i + 1
       Next
       If i Mod 2 <> 0 Then
           TableLayoutPanel1.RowCount = i \ 2 + 1
       Else
           TableLayoutPanel1.RowCount = i \ 2
       End If
       TableLayoutPanel1.AutoSizeMode = Windows.Forms.AutoSizeMode.GrowAndShrink
       TableLayoutPanel1.AutoSize = True
       i = 0
       For Each fn In c
           i = i + 1
           Dim lab As New PictureBox
           lab.BringToFront()
           lab.SizeMode = PictureBoxSizeMode.StretchImage
           lab.Size = New Size(100, 100)
           lab.Image = Image.FromFile(fn)
           TableLayoutPanel1.Controls.Add(lab)
           lab.Name = "lab" & i
       Next
       Dim styles As TableLayoutRowStyleCollection = _
   Me.TableLayoutPanel1.RowStyles
       For Each style As RowStyle In styles
           style.Height = 107
       Next

AnswerRe: Use event on Runtime Pin
JR2123-Jul-11 19:10
JR2123-Jul-11 19:10 
AnswerRe: Use event on Runtime Pin
Johan Hakkesteegt5-Jul-11 2:03
Johan Hakkesteegt5-Jul-11 2:03 
AnswerRe: Use event on Runtime Pin
Simon_Whale5-Jul-11 2:12
Simon_Whale5-Jul-11 2:12 
QuestionProblem using Package and Deployment Wizard Pin
Shouvik262-Jul-11 0:53
Shouvik262-Jul-11 0:53 
AnswerRe: Problem using Package and Deployment Wizard Pin
Dr.Walt Fair, PE2-Jul-11 18:58
professionalDr.Walt Fair, PE2-Jul-11 18:58 
QuestionExcel interop & filling columns from an array (VB.NET 3.5) Pin
Steven St. John1-Jul-11 6:50
Steven St. John1-Jul-11 6:50 
AnswerRe: Excel interop & filling columns from an array (VB.NET 3.5) Pin
Alan N1-Jul-11 10:56
Alan N1-Jul-11 10:56 
GeneralRe: Excel interop & filling columns from an array (VB.NET 3.5) [modified] Pin
Steven St. John1-Jul-11 13:15
Steven St. John1-Jul-11 13:15 
QuestionWebService monOccurs and maxOccurs Without Nillable [modified] Pin
KenBonny29-Jun-11 22:44
KenBonny29-Jun-11 22:44 
QuestionVBA text problem Pin
KORCARI28-Jun-11 10:51
KORCARI28-Jun-11 10:51 
AnswerRe: VBA text problem Pin
ChandraRam29-Jun-11 3:44
ChandraRam29-Jun-11 3:44 
AnswerRe: VBA text problem Pin
Dalek Dave29-Jun-11 5:44
professionalDalek Dave29-Jun-11 5:44 
QuestionInstaller [modified] Pin
KenBonny27-Jun-11 4:17
KenBonny27-Jun-11 4:17 
AnswerRe: Installer Pin
KenBonny27-Jun-11 21:22
KenBonny27-Jun-11 21:22 
QuestionDeviceID from CD Pin
JR21225-Jun-11 20:15
JR21225-Jun-11 20:15 
AnswerRe: DeviceID from CD Pin
JR21225-Jun-11 23:43
JR21225-Jun-11 23:43 
QuestionUsing LINQ to Objects to generate a frequency table - returned as a Dictionary [modified] Pin
Steven St. John25-Jun-11 5:28
Steven St. John25-Jun-11 5:28 

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.