Click here to Skip to main content
15,891,607 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VBScript DeleteFolder method cannot delete folders under System32 on Win 8.1 Pin
Sonhospa25-Apr-16 0:59
Sonhospa25-Apr-16 0:59 
QuestionHow can i make the official VB.net TCP async Example work ?! Pin
Ghassan Mohamed Yousif20-Apr-16 23:53
Ghassan Mohamed Yousif20-Apr-16 23:53 
AnswerRe: How can i make the official VB.net TCP async Example work ?! Pin
Dave Kreskowiak21-Apr-16 2:09
mveDave Kreskowiak21-Apr-16 2:09 
GeneralRe: How can i make the official VB.net TCP async Example work ?! Pin
Ghassan Mohamed Yousif22-Apr-16 9:45
Ghassan Mohamed Yousif22-Apr-16 9:45 
GeneralRe: How can i make the official VB.net TCP async Example work ?! Pin
Dave Kreskowiak22-Apr-16 15:57
mveDave Kreskowiak22-Apr-16 15:57 
QuestionConversion from string "" to type 'Integer' is not valid Pin
kishore-201620-Apr-16 1:46
kishore-201620-Apr-16 1:46 
AnswerRe: Conversion from string "" to type 'Integer' is not valid Pin
Richard MacCutchan20-Apr-16 2:02
mveRichard MacCutchan20-Apr-16 2:02 
AnswerRe: Conversion from string "" to type 'Integer' is not valid Pin
Sascha Lefèvre20-Apr-16 2:29
professionalSascha Lefèvre20-Apr-16 2:29 
VB
Dim code1 As Integer
' ...
code1 = txtallocateelog.Text.ToString

You declare code1 as an Integer but then you attempt to assign a String. The same goes for a bunch of other variables there which you have declared as Integer or DateTime. Take a look at Int32.TryParse Method (String, Int32) (System)[^] and DateTime.TryParse Method (String, DateTime) (System)[^] to solve this issue (other primitive types have equivalent .TryParse(..)-methods).

Apart from that: Calling .ToString() on a property of type String is redundant:
VB
code2 = txtvehicleElog.Text.ToString
If the brain were so simple we could understand it, we would be so simple we couldn't. — Lyall Watson


modified 20-Apr-16 8:40am.

AnswerRe: Conversion from string "" to type 'Integer' is not valid Pin
CHill6020-Apr-16 2:37
mveCHill6020-Apr-16 2:37 
GeneralRe: Conversion from string "" to type 'Integer' is not valid Pin
kishore-201621-Apr-16 5:44
kishore-201621-Apr-16 5:44 
GeneralRe: Conversion from string "" to type 'Integer' is not valid Pin
Richard Deeming21-Apr-16 5:54
mveRichard Deeming21-Apr-16 5:54 
GeneralRe: Conversion from string "" to type 'Integer' is not valid Pin
CHill6021-Apr-16 6:17
mveCHill6021-Apr-16 6:17 
GeneralRe: Conversion from string "" to type 'Integer' is not valid Pin
kishore-201621-Apr-16 6:26
kishore-201621-Apr-16 6:26 
QuestionVB6 File not found: 'C:\Users\???\AppData\Local\Temp\VBB685.tmp' Pin
ThePotty120-Apr-16 1:07
ThePotty120-Apr-16 1:07 
AnswerRe: VB6 File not found: 'C:\Users\???\AppData\Local\Temp\VBB685.tmp' Pin
Dave Kreskowiak20-Apr-16 4:18
mveDave Kreskowiak20-Apr-16 4:18 
AnswerRe: VB6 File not found: 'C:\Users\???\AppData\Local\Temp\VBB685.tmp' Pin
CHill6021-Apr-16 6:13
mveCHill6021-Apr-16 6:13 
QuestionVBA minimum margin Pin
JR21219-Apr-16 21:00
JR21219-Apr-16 21:00 
SuggestionRe: VBA minimum margin Pin
Richard MacCutchan19-Apr-16 23:28
mveRichard MacCutchan19-Apr-16 23:28 
GeneralRe: VBA minimum margin Pin
JR21220-Apr-16 19:03
JR21220-Apr-16 19:03 
GeneralRe: VBA minimum margin Pin
Richard MacCutchan20-Apr-16 21:05
mveRichard MacCutchan20-Apr-16 21:05 
GeneralRe: VBA minimum margin Pin
JR21220-Apr-16 22:32
JR21220-Apr-16 22:32 
GeneralRe: VBA minimum margin Pin
Richard MacCutchan20-Apr-16 22:38
mveRichard MacCutchan20-Apr-16 22:38 
Questionrichtexbox1.selectionfont Pin
Member 1243617019-Apr-16 9:46
Member 1243617019-Apr-16 9:46 
AnswerRe: richtexbox1.selectionfont Pin
Richard MacCutchan19-Apr-16 20:50
mveRichard MacCutchan19-Apr-16 20:50 
AnswerRe: richtexbox1.selectionfont Pin
Eddy Vluggen20-Apr-16 2:56
professionalEddy Vluggen20-Apr-16 2:56 

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.