Search:

Type: Posts; User: jmiller1225

Search: Search took 0.04 seconds.

  1. Re: Timer won't work with my Circular Progress Bar

    Thanks a lot guys for the help :) I finally got it figured out thanks to you guys.. here is the updated code

    Form Code


    Public Class Form1

    Private Sub Button1_Click(sender As Object,...
  2. Replies
    21
    Views
    7,861

    Re: Extract Data from webpage

    This code below pertains to online text documents but it may be helpful if you edit your own way



    Dim address As String = "http://wsapro.com/downloads/jimshandyman/version.txt"
    Dim...
  3. Re: Timer won't work with my Circular Progress Bar

    thanks for the suggested edits.. but Its still not working.. grrr.. it seems like it should work. Then again it's late and codes starting to intertwine haha
  4. Re: Timer won't work with my Circular Progress Bar

    I was using Invalidate so it would refresh the graphic when you changed the Val1 integar. I eliminated that with Me.Refresh() because without either/or if I make a button onclick that says...
  5. [RESOLVED] Timer won't work with my Circular Progress Bar

    Ive been trying for several hours and I think I'm missing something, but my circular Progress bar won't work. I can set the value of my progress bar to 15 on click of my button and it will change...
  6. Replies
    11
    Views
    3,920

    Re: Counting Problem

    Sorry I must've misread. I was thinking I was awesome for a second lol but I see what you're saying. All in a good days of work of learning :) I plan on using if statements when I carry on my...
  7. Replies
    11
    Views
    3,920

    Re: Counting Problem

    I tested my original code with option strict off and also deleted the option property and still kept getting the same error. Apparently I need to label the Environment.SpecialFolder.Windows...
  8. Replies
    11
    Views
    3,920

    Re: Counting Problem

    Hey thanks for the help this seems to be the trick to get it to work



    Option Strict On
    Option Infer Off

    Imports System.IO
    Imports System.Collections.Generic
    Imports System.Linq
  9. Replies
    11
    Views
    3,920

    Re: Counting Problem

    It seems to work fine




    Option Strict On
    Option Infer Off

    Imports System.IO
    Imports System.Collections.Generic
  10. Replies
    11
    Views
    3,920

    Counting Problem

    I'm creating a program that counts files, but the special environments folders won't pick up. This program searches C:/Windows/Temp for files and counts them. But I keep getting the error


    ...
  11. Replies
    3
    Views
    2,298

    Re: Access denied

    Thanks Everyone for the help. I think I figured Out the issue. I had to bring UAC Settings down to "requireadministrator" and save. Then go back in and change them back to "highestelevation" and...
  12. Replies
    3
    Views
    2,298

    [RESOLVED] Access denied

    I created a program in vb that counts the number of temp files in certain folders. The problem I'm having is when it gets to counting "c:/windows/temp/" it says access denied. The programs uac...
  13. Replies
    0
    Views
    9,118

    Test My Program

    I was wondering if someone would test my vb program I created. It's a program to change DNS Settings to a DNS Server to block certain websites. I'm looking for comments on design and what should be...
  14. Replies
    0
    Views
    546

    VS 2012 - Changing DNS Settings

    I want to create a simple program that will change my computers DNS settings to Primary 123.123.123.123 and Secondary 456.456.456.456. I know how to do this by DOS but I was curious is there a way...
  15. Replies
    1
    Views
    731

    Re: [RESOLVED] Access Folder Denied!

    Environment.SpecialFolder.InternetCache
  16. Re: Easy Q About Deleting Files

    Ive definitely have not been thinking! I have it figured out. My minds been scrambled lately, LIFE ya know? Thanks a lot! Here is the code



    If Directory.Exists("C:/somefolder") Then
    ...
  17. Replies
    1
    Views
    731

    [RESOLVED] Access Folder Denied!

    I have a program that I've that counts the file in certain directories. My application is set to "requireadministrator" and still is showing



    An unhandled exception of type...
  18. Re: Easy Q About Deleting Files

    That's A Very Good Answer. I forgot the Kill Property is only for one file.. haha That code does seem to work great, but what if you want to check first if the directory exists and if so then...
  19. [RESOLVED] Easy Q About Deleting Files

    Just looking for the best way to delete all specific .txt files in a directory.


    Kill("c:/somefolder" , "*.txt")
    Kill("C:/somefolder/someotherfolder/" , "*.*")


    Would this code work? Or is...
  20. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    Thanks JuggaloBrotha your Code works great! I may use it.. I finally figured out my issue with my code and now it works on windows 7, 8, 8.1, and 10. Now I'm trying to add the total to "Label1" as...
  21. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    I'm having troubles I don't know if it's because I'm using Visual Studio 2012 or what the deal. But I keep getting errors with your code. I think I must be setting it up wrong. I understand the...
  22. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    Thanks everyone for the post.. JuggaloBrotha I'm going to try your way. The program does work great already, if you're using Windows 10 haha Tried it on Windows 7 got errors, so we will try your...
  23. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    Ive gotten the code to work properly until I get up to counter10, counter11, counter12, counter13, and counter14

    Heres the code that started showing errors and not running


    Dim...
  24. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    I got it :) Finally Understand
  25. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    This Is My Program So Far But Some Of The Folders Aren't On My OS but are on other, That's Why I Want It Checked or Passed.



    Public Class Form1

    Private Sub Button1_Click(sender As...
  26. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    Doing the scan once helps, which I know.. But What If The Folder Doesn't Exist? How Do You Skip The Step?
  27. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    There Has To Be An Easier Way To Do This Then Having To Punch In Incredible Amounts of Code... Haven't Given Up Yet Haha
  28. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    so what you're pretty much telling me is that Visual Studio won't let me check first to see if the folder exists and if the folder does exist count the certain .sol extension in the folder. Because...
  29. Replies
    27
    Views
    3,238

    Re: If Then Else Problem

    Thanks for the answer but I'm still getting an error. I don't know if Visual Studio is being just rude to me or what.. but I got this error now
  30. Replies
    27
    Views
    3,238

    If Then Else Problem

    I'm trying to count files in a directory if the directory is there, if not the number should be 0. I wrote up this code thinking it would work but it keeps giving me strange error. Can anyone help...
  31. Replies
    2
    Views
    1,123

    VS 2012 Re: [RESOLVED] Counting File Extensions

    that code actually answers 2 of my questions! haha Thank you I understand the code. I just have problems writing it. Once I start I eventually get it and wow it makes since. Thank you
  32. Replies
    2
    Views
    1,123

    VS 2012 [RESOLVED] Counting File Extensions

    I'm currently working on a cleaning program using visual basic and I'm trying to figure out how I can count certain file extensions in certain folders

    example count all .dat files in...
  33. Replies
    1
    Views
    882

    program files

    Let re-ask my question in a better smarter way. There are 2 different program file folders dependingbon which windows bit system you have. I'd like to run a batch program that's in the program...
  34. Re: Grrr... Saving Excel File As Cell Value

    You sir are a genious haha such a simple fix, I've tried the formatting thing also just set it up wrong apparently. You rock THANKS! :)
  35. [RESOLVED] Grrr... Saving Excel File As Cell Value

    Hey Guys,
    I currently creating a pay period spreadsheet through excel with a calendar that pops up after clicking the pay period cell to show the pay period which you select. example: Click May...
  36. Re: Blocking Websites Without Using Host File?

    I understand what you're saying, but at the same time I do have a list of over 5000 malicious sites and ad links in which most websites use which can cause Phishing. Having 5000 sites blocked, in...
  37. Blocking Websites Without Using Host File?

    I'm currently working on a program which will block the users computer from viewing websites that contain Malware, Spyware, etc. on them. I do have a VBScript code that does overwrite the windows...
Results 1 to 37 of 37



Click Here to Expand Forum to Full Width