Search:

Type: Posts; User: sinner0636

Search: Search took 0.01 seconds.

  1. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    ty for the advice you guys are awesome i am definitely sticking with Option Strict On Option Explicit On for now on in all my programs :)
  2. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    so do you guys when you code do u like to keep one of the error catching options on or do you keep all of them on and if you keep all of them on will they suggest the errors wrong?
  3. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    yep :) i like Option Strict a lot better seems i just added it and caught a bunch of stuff like this for example i did not use 'As String'

    i see a lot of people half way coding like this when...
  4. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    yeah i see what you mean srry not that great yet with vb.net i have only been using it for few weeks i used to code for years in realbasic here is one my apps in rb i coded few years ago can make a...
  5. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    is there a way to get the progress bar glow highlight thing to stop blinking tried to set it to blocks but still glow blink updates?
  6. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    i use all the nthfields to split and remove the dots from the size to get a numeric only value for the progress bar otherwise it will look like this below



    Dim ProgessFreeSpace As...
  7. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    PERFECT si the geek thanks base



    Dim ProgessFreeSpace As String = NthField(FormatSize(HarddriveAvailableFreeSpace), ".", 1)
    Dim ProgessTotalSize As String =...
  8. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    I tried this so this will be easier to show ya



    ProgressBar1.Maximum = NthField(FormatSize(HarddriveTotalFreeSpace), ".", 1)
    ProgressBar1.Value =...
  9. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    this is what i want it to look like here is a pic of my windows drive same size as my apps above but only problem is

    these (HarddriveAvailableFreeSpace HarddriveTotalFreeSpace) are the same size...
  10. Replies
    21
    Views
    2,030

    Re: Harddrive - Format Free Space

    this label just filters out the dots splits the . and the space with the GB so it looks like the image below is my app


    Label6.Text = NthField(FormatSize(HarddriveAvailableFreeSpace), ".", 1) + ...
  11. Replies
    21
    Views
    2,030

    [RESOLVED] Harddrive - Format Free Space

    hello
    i am trying to get a hard drives free and total space to display in a progressbar not sure what im doing wrong here any ideas?




    Private Sub Form1_Load_1(ByVal sender As System.Object,...
Results 1 to 11 of 11



Click Here to Expand Forum to Full Width