Search:

Type: Posts; User: kshadow22

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,743

    VS 2017 Converting List Collection & String

    I am trying to configure a export settings option in my program. I have everything completed except for the my.settings that are list collections. I converted them to a string prior to exporting them...
  2. Replies
    0
    Views
    2,739

    VS 2017 Creating GUI for Diskpart

    Dim p As New Process
    Dim pi As New ProcessStartInfo
    pi.UseShellExecute = False
    pi.RedirectStandardOutput = True
    pi.WorkingDirectory = "C:\windows\system32"
    ...
  3. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    I was able to use the Program Files method mentioned by jdc2000 to carry out the functionality of my program. However, when doing this, there was some restriction in place that I had to work around....
  4. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    Thank you for your reply and the information. That definitely clears up some information. I do believe that is what jmcilhinney was getting at. That I would not be able to use the Program Files...
  5. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    I reviewed the article you shared. I didn't receive any insight or direction by the article. I seen the information regarding adding a button to add to a listbox. I then read on to the class methods...
  6. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    I did some research on establishing communication between the Windows Service and Application. What I was able to find was using Interprocess Communications, which seems very complex and I am not...
  7. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    I was able to do this using Advanced Auto Installer. I have my application and service being installed into C:\Program Files\ and my application isn't able to write to any of the files in its own...
  8. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    Yeah, I have seen that. I read up a little on that at Deploy two projects Windows Service and Application in one Setup Project. I am going ahead and trying this bootstrap method and I will get back...
  9. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    So overall, I should keep the windows service and the windows form app separate for security? Now it is possible to have the administrator install the program and the service under the same installer...
  10. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    I was able to research the windows service, and I created my own. I know how to install my service using the Visual Studio Command Prompt, but how can I install the service on the first boot of my...
  11. VS 2017 Re: Start Program At Computer Startup With Admin and NO UAC

    Okay, so for instance, antivirus programs typically startup with the administrative level access and do not provoke the "standard user" with the UAC. You mentioned creating a Windows service, I know...
  12. VS 2017 [RESOLVED] Start Program At Computer Startup With Admin and NO UAC

    I have done quite a bit of research on this and I am at a stand still. I have looked at every post on VB Forums relating to setting programs to startup when the computer starts up and even after my...
  13. VS 2015 Re: Hoa to add App to run at startup Programmatically

    I have applied this to my app, however, the application requires administrator privileges and every time at startup, the UAC is prompted for my program. How would I go about fixing this? More...
  14. Re: [RESOLVED] Modifying System32 Files / Backup

    I reported that. I tried putting it into the code bank when I created it, but it would not let me.
  15. [RESOLVED] Modifying System32 Files / Backup

    I have been working on a program that copies, renames, and modifies system32 files. I ran into a major problem where I was receiving an error "access is denied" even with escalated privileges. I did...
  16. Replies
    6
    Views
    6,172

    VS 2017 Re: Hiding / Avoiding Hardcoded String

    Nice, it is interesting to hear that about Wolfenstein as it does bring a lot understanding to what you are telling me. I think between what you have shared with me and peterst, total security on...
  17. Replies
    6
    Views
    6,172

    VS 2017 Re: Hiding / Avoiding Hardcoded String

    Alright, thank you for sharing that- I understand what you are saying. You mentioned using a server to help secure data. Would a local database provide the same security?



    So if I created a...
  18. Replies
    6
    Views
    6,172

    VS 2017 Re: Hiding / Avoiding Hardcoded String

    Hmmm, very interesting. That is what I will do. Thank you for your response.

    I have not had experience encrypting data with the use of "Byte" as my data type. I will look more into that and see...
  19. Replies
    6
    Views
    6,172

    VS 2017 Hiding / Avoiding Hardcoded String

    Currently I am working on a form that where a user creates a profile and such. However, some of the data has to be protected as it can be sensitive to the end user. My program uses an encryption...
  20. VS 2017 Re: How To Access A New Declared Web Browser

    I’ll look into that. Ultimately, that’s what I’ll want is to figure out how to my make my own custom controls. Thank you!
  21. VS 2017 [RESOLVED] How To Access A New Declared Web Browser

    Dim page As New TabPage(String.Format("T " & (x_Count), TabControl1.TabPages.Count + 1))
    TabControl1.TabPages.Add(page)
    Dim browser As New WebBrowser()
    ...
  22. Replies
    8
    Views
    4,983

    VS 2017 Re: Change Color / Format Text

    haha :bigyello: , I guess I should had looked at my own code!! This is what I have now, I won't be checking it out until later, but I do believe it will work.


    ...
  23. Replies
    8
    Views
    4,983

    VS 2017 Re: Change Color / Format Text

    Based off your example, this is what I have written:

    Dim findStartIndex = 0
    Dim openingChars = {"<"c}
    Dim closingChars = {">"c}

    Do
    'Find...
  24. Replies
    8
    Views
    4,983

    VS 2017 Re: Change Color / Format Text

    So, I am trying to puzzle together that loop you had mentioned... I don't know how to check character by character with the loop. This is what I want to type for the for loop, but i know it isn't...
  25. Replies
    8
    Views
    4,983

    VS 2017 Re: Change Color / Format Text

    Yes, your first thought was correct. I would like to color everything inside of chevrons, parentheses, etc. I will be doing this for both xaml and html.
    Hmm, Your suggestion to build a loop is very...
  26. Replies
    8
    Views
    4,983

    VS 2017 [RESOLVED] Change Color / Format Text

    I am trying to highlight all text that is between all elements between < >, ( ), { }, [], " ". However, the only thing I really know how to do is to find and highlight text within a richtextbox to...
  27. Replies
    17
    Views
    8,960

    VS 2019 Re: Delete All Files In A Folder

    Haha. That’s awesome. Thanks for sharing that. It’s very encouraging.
  28. Replies
    17
    Views
    8,960

    VS 2019 Re: [RESOLVED] Delete All Files In A Folder

    Thanks for your input you guys. I read through all your replies and will turn the option strict on. You’ve all got me sold. Of course I don’t understand the entirety of it. But I am wanting to learn...
  29. Replies
    17
    Views
    8,960

    VS 2019 Re: Delete All Files In A Folder

    Unfortunately, I haven’t had the learning experience that most of you guys have probably had. After reading your reply, I have come to try enabling option strict. I don’t understand the entirety of...
  30. Replies
    17
    Views
    8,960

    VS 2019 Re: Delete All Files In A Folder

    Right, so I did as you suggested by using Option Strict On and it indicted the error. I resolved it by changing my string a little. Here was my string after it was changed.
    Dim TextLines() As...
  31. Replies
    17
    Views
    8,960

    VS 2019 Re: Delete All Files In A Folder

    I tried the same code but with a different directory "C:\Windows\Temp" and it still did not work. It sent me the same error.

    Here is a image of the throwback error.

    168165


    Also, if you...
  32. Replies
    17
    Views
    8,960

    VS 2019 Re: Delete All Files In A Folder

    Haha. No, that is not what I put. I used C:\Users\Admin\Desktop\TestFolder\

    I then added several text files to test to see if it would work
  33. Replies
    17
    Views
    8,960

    VS 2019 [RESOLVED] Delete All Files In A Folder

    Dim directoryName As String = "your path here"
    For Each deleteFile In Directory.GetFiles(directoryName ,"*.*",SearchOption.TopDirectoryOnly)
    File.Delete(deleteFile)
    Next


    This is the code...
  34. VS 2017 Re: Auto Scroll Bar Margin / Position Adjustments

    Thank you!!!!
  35. VS 2017 [RESOLVED] Auto Scroll Bar Margin / Position Adjustments

    I am working my entire project with no form border styles. This means that I have to create my own borders, exit / maximize / minimize buttons, and etc. However, I need to use the autoscroll...
  36. VS 2017 Re: Simple Text Encryption Capable Of Being Decoded By Hand

    Right, that is my goal. It is easy for me to put into words, however, getting it to code has been difficult and more so trying to get it to give me the right output.
  37. VS 2017 Simple Text Encryption Capable Of Being Decoded By Hand

    So I am working on a program intended to demonstrate a very simple way of encrypting any text. My goal is for it to work in a way (for example) that A= 32dc9w B= wwkjn21 C=32kjnd#4 and so on... so...
  38. Replies
    4
    Views
    4,971

    VS 2017 Re: Create Random Strings - Issue

    Awesome!!! This worked perfectly!!!
  39. Replies
    4
    Views
    4,971

    VS 2017 [RESOLVED] Create Random Strings - Issue

    Hi,
    I am currently working on a project when button1 is pressed, it will generate different and random keys into textboxes.
    So for example, button1 is pressed and this happens to four textboxes......
  40. VS 2017 Re: Carrying My.Settings (Config File)

    Right, that was what I was thinking as well. The conveniency of being able to use the user / application settings is nice, however, it does not provide what I need in this case which is...
Results 1 to 40 of 96
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width