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

Visual Basic

 
GeneralCreate CSV Pin
nitin_ion19-Nov-04 17:58
nitin_ion19-Nov-04 17:58 
GeneralRe: Create CSV Pin
Dave Kreskowiak22-Nov-04 3:17
mveDave Kreskowiak22-Nov-04 3:17 
GeneralRichtextbox Pin
stargates19-Nov-04 17:08
stargates19-Nov-04 17:08 
GeneralRe: Richtextbox Pin
Daniel Turini19-Nov-04 20:52
Daniel Turini19-Nov-04 20:52 
QuestionPrint ASCII code of a character? Pin
axiomillies19-Nov-04 14:06
axiomillies19-Nov-04 14:06 
AnswerRe: Print ASCII code of a character? Pin
Dennis C. Dietrich19-Nov-04 14:21
Dennis C. Dietrich19-Nov-04 14:21 
Generalvbscript function turn string to int Pin
Spiritofamerica19-Nov-04 12:56
Spiritofamerica19-Nov-04 12:56 
GeneralRe: vbscript function turn string to int Pin
Dennis C. Dietrich19-Nov-04 13:25
Dennis C. Dietrich19-Nov-04 13:25 
Spiritofamerica wrote:
wich is vbscript function for turning string into int

You don't have to call any conversion functions as VBScript does not know any types other than variant (see also VBScript Data Types[^]) and any subtype conversion can be done implicitly.
MyString = "2"
MyDouble = MyString + 2

However if you want (or need) to explicitly cast the variant subtype you can do so by using the VBScript conversion function (see also section Conversions in VBScript Features[^]).
MyString = "2"
MyInt    = CInt(MyString) + 2

Best regards
Dennis
GeneralClipping text into Clipboard Pin
Rylogy19-Nov-04 11:11
Rylogy19-Nov-04 11:11 
GeneralRe: Clipping text into Clipboard Pin
Charlie Williams19-Nov-04 12:42
Charlie Williams19-Nov-04 12:42 
GeneralRe: Clipping text into Clipboard Pin
Rylogy19-Nov-04 12:44
Rylogy19-Nov-04 12:44 
GeneralQuerying MySQL Database Pin
ccotton33319-Nov-04 8:43
ccotton33319-Nov-04 8:43 
GeneralVB how to multiplex many cameras(usb) on 1 window Pin
HuDcHeIs19-Nov-04 4:36
sussHuDcHeIs19-Nov-04 4:36 
GeneralDLL whle runtime Pin
LORDSASH19-Nov-04 4:02
LORDSASH19-Nov-04 4:02 
GeneralRe: DLL whle runtime Pin
Dave Kreskowiak22-Nov-04 3:11
mveDave Kreskowiak22-Nov-04 3:11 
GeneralVB.Net Crystal Reports Implementation Errors Pin
KreativeKai19-Nov-04 3:29
professionalKreativeKai19-Nov-04 3:29 
GeneralRe: VB.Net Crystal Reports Implementation Errors Pin
KreativeKai23-Nov-04 8:38
professionalKreativeKai23-Nov-04 8:38 
GeneralResize VB form Pin
.NetRams19-Nov-04 1:03
.NetRams19-Nov-04 1:03 
GeneralRe: Resize VB form Pin
Gavin Jeffrey19-Nov-04 1:21
Gavin Jeffrey19-Nov-04 1:21 
GeneralRe: Resize VB form Pin
.NetRams19-Nov-04 1:32
.NetRams19-Nov-04 1:32 
GeneralGot the solution Pin
.NetRams19-Nov-04 1:50
.NetRams19-Nov-04 1:50 
GeneralRe: Resize VB form Pin
Gavin Jeffrey19-Nov-04 1:54
Gavin Jeffrey19-Nov-04 1:54 
GeneralExport SQL Data Pin
nitin_ion18-Nov-04 22:23
nitin_ion18-Nov-04 22:23 
GeneralRe: Export SQL Data Pin
Dave Kreskowiak19-Nov-04 6:08
mveDave Kreskowiak19-Nov-04 6:08 
GeneralMSDE Help Pin
nitin_ion18-Nov-04 19:33
nitin_ion18-Nov-04 19:33 

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.