Click here to Skip to main content
15,793,260 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: vb.net update query how to Pin
JustmeNick27-Feb-07 5:16
JustmeNick27-Feb-07 5:16 
AnswerRe: vb.net update query how to Pin
Guffa27-Feb-07 7:25
Guffa27-Feb-07 7:25 
QuestionRounding a number in VB.NET Pin
harveyhanson26-Feb-07 11:12
harveyhanson26-Feb-07 11:12 
AnswerRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 11:24
protectorChristian Graus26-Feb-07 11:24 
AnswerRe: Rounding a number in VB.NET Pin
The ANZAC26-Feb-07 11:30
The ANZAC26-Feb-07 11:30 
GeneralRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 11:33
protectorChristian Graus26-Feb-07 11:33 
AnswerRe: Rounding a number in VB.NET Pin
JUNEYT26-Feb-07 12:17
JUNEYT26-Feb-07 12:17 
GeneralRe: Rounding a number in VB.NET Pin
TwoFaced26-Feb-07 12:55
TwoFaced26-Feb-07 12:55 
If the above poster assumption is correct then this it a mute point. However in your original code you were rounding zero, which should round to zero Smile | :)
intPerc = Math.Round(0) 
Math.Round takes a number and rounds it. You need to supply it with a number, in your case you did '0'. What you meant to do is:
intPerc = Math.Round(intPerc) 

GeneralRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 13:39
protectorChristian Graus26-Feb-07 13:39 
GeneralRe: Rounding a number in VB.NET Pin
TwoFaced26-Feb-07 13:56
TwoFaced26-Feb-07 13:56 
QuestionHow can I use the barcode in my Program? Pin
khaiyam26-Feb-07 8:13
khaiyam26-Feb-07 8:13 
AnswerRe: How can I use the barcode in my Program? Pin
Christian Graus26-Feb-07 11:22
protectorChristian Graus26-Feb-07 11:22 
AnswerRe: How can I use the barcode in my Program? Pin
haggenx27-Feb-07 8:21
haggenx27-Feb-07 8:21 
QuestionHow to get opened document filename/path in word Pin
Muhammad Nauman Yousuf26-Feb-07 6:57
Muhammad Nauman Yousuf26-Feb-07 6:57 
QuestionHow to capture document filename/path in word Pin
salma_sultana28-Feb-07 1:59
salma_sultana28-Feb-07 1:59 
Questionruntime controls Pin
balakpn26-Feb-07 3:36
balakpn26-Feb-07 3:36 
AnswerRe: runtime controls Pin
JUNEYT26-Feb-07 4:22
JUNEYT26-Feb-07 4:22 
GeneralRe: runtime controls Pin
balakpn26-Feb-07 19:35
balakpn26-Feb-07 19:35 
GeneralRe: runtime controls Pin
JUNEYT27-Feb-07 0:13
JUNEYT27-Feb-07 0:13 
GeneralRe: runtime controls Pin
balakpn27-Feb-07 18:09
balakpn27-Feb-07 18:09 
GeneralRe: runtime controls Pin
JUNEYT27-Feb-07 23:56
JUNEYT27-Feb-07 23:56 
QuestionCopy memory function Pin
sundar_mca26-Feb-07 3:08
sundar_mca26-Feb-07 3:08 
AnswerRe: Copy memory function Pin
Dave Kreskowiak26-Feb-07 6:58
mveDave Kreskowiak26-Feb-07 6:58 
QuestionMsgBox's Pin
jady8426-Feb-07 2:54
jady8426-Feb-07 2:54 
AnswerRe: MsgBox's Pin
TwoFaced26-Feb-07 9:52
TwoFaced26-Feb-07 9:52 

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.