Click here to Skip to main content
16,005,037 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralSaving modified fields Pin
mtone28-Sep-04 4:55
mtone28-Sep-04 4:55 
QuestionHow do you draw outside of your Form?? Pin
RichiLloyd28-Sep-04 4:34
RichiLloyd28-Sep-04 4:34 
GeneralHTML Parser Pin
wmeurer28-Sep-04 3:31
wmeurer28-Sep-04 3:31 
Generalproblem in working with childforms in vb.net Pin
Mohan G28-Sep-04 3:10
Mohan G28-Sep-04 3:10 
GeneralRe: problem in working with childforms in vb.net Pin
Dave Kreskowiak28-Sep-04 3:26
mveDave Kreskowiak28-Sep-04 3:26 
GeneralRe: problem in working with childforms in vb.net Pin
Anonymous29-Sep-04 5:25
Anonymous29-Sep-04 5:25 
Generalseperate string Pin
macmac3828-Sep-04 2:36
macmac3828-Sep-04 2:36 
GeneralRe: seperate string Pin
Jim Matthews28-Sep-04 3:36
Jim Matthews28-Sep-04 3:36 
Hi Mark, not sure which version of VB you're using (VBA, VBCLassic, or VB.Net)

for splitting the string in VB.Net...
Dim input as Object = "122.23, 232.0, 12.34"
Dim arrList() as String = CStr(inputString).Split(","c)


for casting the remaining items from the stringarray to a double format recursively in VB.Net...
Dim arrCosts(arrList.GetUpperBound(0)) as Double
for i as Int32 = 0 to arrList.Length - 1
   arrCosts(i) = Double.Parse(arrList(i).Trim)
next


arrCosts is an array of your Numbers in Double format.

hope this helps.




-jim
GeneralRe: seperate string Pin
macmac3828-Sep-04 3:48
macmac3828-Sep-04 3:48 
GeneralRe: seperate string Pin
macmac3828-Sep-04 4:01
macmac3828-Sep-04 4:01 
GeneralRe: seperate string Pin
Jim Matthews28-Sep-04 6:14
Jim Matthews28-Sep-04 6:14 
GeneralRe: seperate string Pin
Nick Seng28-Sep-04 16:11
Nick Seng28-Sep-04 16:11 
GeneralRe: seperate string Pin
macmac3828-Sep-04 23:12
macmac3828-Sep-04 23:12 
GeneralRe: seperate string Pin
Nick Seng28-Sep-04 23:39
Nick Seng28-Sep-04 23:39 
GeneralRe: seperate string Pin
macmac3829-Sep-04 0:03
macmac3829-Sep-04 0:03 
Generaldrag drop file. urgent!! Pin
ekoprasetio28-Sep-04 1:58
ekoprasetio28-Sep-04 1:58 
GeneralSystem.Drawing.Color->System.UInt32 Pin
El'Cachubrey28-Sep-04 1:10
El'Cachubrey28-Sep-04 1:10 
GeneralRe: System.Drawing.Color->System.UInt32 Pin
Scott McMaster28-Sep-04 15:32
Scott McMaster28-Sep-04 15:32 
GeneralBind Crystal Report with dataset Pin
nitin_ion28-Sep-04 0:54
nitin_ion28-Sep-04 0:54 
GeneralRe: Bind Crystal Report with dataset Pin
Jim Matthews28-Sep-04 3:12
Jim Matthews28-Sep-04 3:12 
GeneralOutlookBar in VB.NET Pin
Jorge Ernesto27-Sep-04 22:26
Jorge Ernesto27-Sep-04 22:26 
GeneralRe: OutlookBar in VB.NET Pin
Dave Kreskowiak28-Sep-04 2:38
mveDave Kreskowiak28-Sep-04 2:38 
GeneralPositioning of ImageBoxes Pin
tommy_tanaka27-Sep-04 21:57
tommy_tanaka27-Sep-04 21:57 
GeneralRe: Positioning of ImageBoxes Pin
Dave Kreskowiak28-Sep-04 3:59
mveDave Kreskowiak28-Sep-04 3:59 
GeneralRe: Positioning of ImageBoxes Pin
tommy_tanaka28-Sep-04 4:18
tommy_tanaka28-Sep-04 4:18 

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.