Click here to Skip to main content
15,903,523 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generalmy two simple problems Pin
bensoncd23-Feb-04 11:22
bensoncd23-Feb-04 11:22 
GeneralRe: my two simple problems Pin
Ian Darling23-Feb-04 11:30
Ian Darling23-Feb-04 11:30 
GeneralSetting a Leap year condition Pin
bensoncd23-Feb-04 11:20
bensoncd23-Feb-04 11:20 
GeneralRe: Setting a Leap year condition Pin
Ian Darling23-Feb-04 11:27
Ian Darling23-Feb-04 11:27 
GeneralFormatting numbers Pin
erikkloeze23-Feb-04 5:05
erikkloeze23-Feb-04 5:05 
GeneralRe: Formatting numbers Pin
Hesham Amin23-Feb-04 7:50
Hesham Amin23-Feb-04 7:50 
GeneralRe: Formatting numbers Pin
erikkloeze23-Feb-04 8:55
erikkloeze23-Feb-04 8:55 
GeneralRe: Formatting numbers Pin
Nadroj24-Feb-04 12:12
Nadroj24-Feb-04 12:12 
maybe this function i made can help. this is for vb.net, hopefully thats wut ur using.

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Function GetEuros(ByVal num As Double) As String
Dim tempNum As String = Format(num, "n")
tempNum = tempNum.Replace(".", ",")
Return tempNum
End Function

(...)
Dim myNum As Double = 54.25
text1.text = GetEuros(myNum)
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

this makes text1.text = 54,25.

------------------------
Jordan.
III
GeneralSome guidance required Pin
Asad Hussain23-Feb-04 4:16
Asad Hussain23-Feb-04 4:16 
GeneralRe: Some guidance required Pin
steff kamush23-Feb-04 4:26
steff kamush23-Feb-04 4:26 
GeneralRe: Some guidance required Pin
steff kamush23-Feb-04 4:34
steff kamush23-Feb-04 4:34 
GeneralRe: Some guidance required Pin
Asad Hussain23-Feb-04 4:46
Asad Hussain23-Feb-04 4:46 
GeneralRe: Some guidance required Pin
Ian Darling23-Feb-04 5:04
Ian Darling23-Feb-04 5:04 
GeneralRe: Some guidance required Pin
Asad Hussain23-Feb-04 7:46
Asad Hussain23-Feb-04 7:46 
GeneralInter-Application Communication Pin
NaserAbiat22-Feb-04 23:52
NaserAbiat22-Feb-04 23:52 
GeneralHelp!! About Datagrid Pin
March Tu22-Feb-04 21:15
March Tu22-Feb-04 21:15 
GeneralVB.Net Webpage Info Download Pin
Rip V. Winkle22-Feb-04 18:02
Rip V. Winkle22-Feb-04 18:02 
GeneralPrinting Please Help Pin
Pugman81222-Feb-04 16:51
Pugman81222-Feb-04 16:51 
GeneralSet Selected Item Pin
mosquitooth22-Feb-04 8:05
mosquitooth22-Feb-04 8:05 
GeneralRe: Set Selected Item Pin
Nadroj22-Feb-04 10:15
Nadroj22-Feb-04 10:15 
GeneralRe: Set Selected Item Pin
Dave Kreskowiak22-Feb-04 16:13
mveDave Kreskowiak22-Feb-04 16:13 
GeneralTime of Day Launched Project Pin
tjmule2221-Feb-04 15:47
tjmule2221-Feb-04 15:47 
GeneralRe: Time of Day Launched Project Pin
Charlie Williams21-Feb-04 16:40
Charlie Williams21-Feb-04 16:40 
GeneralRe: Time of Day Launched Project Pin
John Kuhn21-Feb-04 17:33
John Kuhn21-Feb-04 17:33 
GeneralWindow Location, Multiple Monitor: Sorry for crosspost Pin
Matt Philmon20-Feb-04 19:48
Matt Philmon20-Feb-04 19:48 

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.