CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2001
    Location
    maharashtra,india
    Posts
    181

    formating text box

    hi
    i have some numbers in text box say "109000000"
    but i want to print it as "10,90,00,000"
    i tried this format$("109000000","##,###.##")
    it is giving me this output "109,000,000"
    any suggestions
    thanx


  2. #2
    Join Date
    Jun 2001
    Location
    Israel
    Posts
    228

    Re: formating text box

    s = Format$(s, "&&,&&,&&,&&&")
    (I had no idea, i just tried all kinds of signs or as called using the "scientific finger")

    ----------
    The @host is everywhere!
    ----------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured