Click here to Skip to main content
16,004,919 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Cutomize Setup VB6 Pin
ChandraRam4-Sep-08 1:19
ChandraRam4-Sep-08 1:19 
GeneralRe: Cutomize Setup VB6 Pin
Amit Battan Ror4-Sep-08 19:24
Amit Battan Ror4-Sep-08 19:24 
GeneralRe: Cutomize Setup VB6 Pin
ChandraRam6-Sep-08 4:43
ChandraRam6-Sep-08 4:43 
QuestionAdd handler during runtime "problem" Pin
Georg Kohler3-Sep-08 19:07
Georg Kohler3-Sep-08 19:07 
AnswerRe: Add handler during runtime "problem" Pin
Dave Kreskowiak4-Sep-08 2:14
mveDave Kreskowiak4-Sep-08 2:14 
GeneralRe: Add handler during runtime "problem" Pin
Georg Kohler4-Sep-08 10:44
Georg Kohler4-Sep-08 10:44 
Questionappending an array Pin
DFT13-Sep-08 10:48
DFT13-Sep-08 10:48 
AnswerRe: appending an array Pin
Guffa3-Sep-08 11:15
Guffa3-Sep-08 11:15 
If possible you should not use ArrayLists at all. If you use framework 2 or later, use List<decimal>, List<single> and List<string>, then you can simply feed them to the constructors:
PieChartControl1.Values = New Decimal(values)
PieChartControl1.SliceRelativeDisplacements = New Single(slices)
PieChartControl1.Texts = New String(texts)
PieChartControl1.ToolTips = New String(tooltips)

(Note: VB.NET is a strongly typed language. There isn't really any reason to use hungarian notation to keep track of the data types of variables...)

Despite everything, the person most likely to be fooling you next is yourself.

GeneralRe: appending an array Pin
DFT13-Sep-08 11:33
DFT13-Sep-08 11:33 
GeneralRe: appending an array Pin
Guffa3-Sep-08 20:42
Guffa3-Sep-08 20:42 
QuestionHow to disable combobox items Pin
chandrubngit3-Sep-08 9:17
chandrubngit3-Sep-08 9:17 
AnswerRe: How to disable combobox items Pin
Ray Cassick3-Sep-08 9:24
Ray Cassick3-Sep-08 9:24 
AnswerRe: How to disable combobox items Pin
Dominick Marciano3-Sep-08 9:30
professionalDominick Marciano3-Sep-08 9:30 
GeneralRe: How to disable combobox items Pin
chandrubngit3-Sep-08 17:13
chandrubngit3-Sep-08 17:13 
AnswerRe: How to disable combobox items Pin
Paul Conrad3-Sep-08 10:09
professionalPaul Conrad3-Sep-08 10:09 
QuestionPrinting Office without Office Pin
Dominick Marciano3-Sep-08 9:02
professionalDominick Marciano3-Sep-08 9:02 
AnswerRe: Printing Office without Office Pin
Wendelius3-Sep-08 10:44
mentorWendelius3-Sep-08 10:44 
QuestionFlow Charting Component Pin
ExcelMonkey3-Sep-08 8:06
ExcelMonkey3-Sep-08 8:06 
QuestionCatching the hourly system time Pin
MatthysDT3-Sep-08 4:06
MatthysDT3-Sep-08 4:06 
AnswerRe: Catching the hourly system time Pin
Dave Kreskowiak3-Sep-08 10:59
mveDave Kreskowiak3-Sep-08 10:59 
GeneralRe: Catching the hourly system time Pin
MatthysDT3-Sep-08 20:14
MatthysDT3-Sep-08 20:14 
GeneralRe: Catching the hourly system time Pin
Dave Kreskowiak4-Sep-08 1:57
mveDave Kreskowiak4-Sep-08 1:57 
QuestionResize And Moveing of label control Pin
koushik19803-Sep-08 0:48
koushik19803-Sep-08 0:48 
AnswerRe: Resize And Moveing of label control Pin
Dave Kreskowiak3-Sep-08 3:20
mveDave Kreskowiak3-Sep-08 3:20 
GeneralRe: Resize And Moveing of label control Pin
MatthysDT3-Sep-08 4:10
MatthysDT3-Sep-08 4:10 

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.