Search:

Type: Posts; User: Yourmomsfire

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    12
    Views
    2,514

    VS 2019 Re: Remove certain string from textbox

    Thank You!
  2. Replies
    12
    Views
    2,514

    VS 2019 Re: Remove certain string from textbox

    Ok, so I have that but now when using my script


    If txtURL.Text = "https://" Then
    txtURL.Text = ""
    End If

    If txtURL.Text = "http://" Then
    ...
  3. Replies
    12
    Views
    2,514

    VS 2019 Remove certain string from textbox

    I want a textbox to actively search for 2 strings to delete them, one being "http://" and the other "https://"
    ive tried using a timer as such


    Private Sub Timer1_Tick(sender As Object, e As...
  4. Replies
    1
    Views
    1,467

    5.0 Help Importing CSV into Listview

    I need a way to open a csv file and write the contents of it into a listview component.
    I tried but it doesn't work.

    Here is my code:


    private async void savCoord_Click(object sender,...
  5. Replies
    3
    Views
    1,589

    Help Display CPU Name C#

    I want to display the name of the operating systems CPU and currently I am using the following


    string CPUName =...
  6. VS 2019 Re: Wanting to write to file without admin rights

    Great! it is working perfect now! Thank you for your help and teachings!
  7. VS 2019 Re: Wanting to write to file without admin rights

    So I tried simplifying the code with

    Dim text = String.Join("!", {score, cps, pquantity, pprice})
    But it throws me an error

    Overload resolution failed because no accessible 'Join' is most...
  8. VS 2019 Re: Wanting to write to file without admin rights

    It writes the base data which is a bunch of numbers. If i change something in the program itself. nothing changes in the file.
  9. VS 2019 Re: Wanting to write to file without admin rights

    How would I go about overwriting instead of appending? The data writes fine, Its just whenever the save file is saved in a folder besides the location of the executable it writes all of the data but...
  10. Replies
    2
    Views
    1,751

    VS 2019 StreamReader not reading entire file

    I am having a serious problem where StreamReader will not read the entire file. If I set the path of the save file to the smae place that the executable is in, the StreamReader will read the whole...
  11. VS 2019 Re: Wanting to write to file without admin rights

    Great! I got that part figured out. Now I’m having a problem where half the data won’t be read. All the data is written but unless I have the save file in the same place as the executable, it will...
  12. VS 2019 Re: Wanting to write to file without admin rights

    I am definitely doing something wrong, I tried

    Dim W As New System.IO.StreamWriter ("saves.txt", Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments))
    And I’m getting...
  13. VS 2019 [RESOLVED] Wanting to write to file without admin rights

    I am trying to write to a text file in a certain location

    Dim W As New System.IO.StreamWriter("C:\saves.txt")
    W.Write(whatever data I want written
    more data)
    W.Close()...
  14. Replies
    1
    Views
    682

    How do I resize an image?

    I have been looking all over and cannot find a way to resize and save an image from a picturebox
    the open file code is this

    private void open1_Click(object sender, EventArgs e)
    {...
  15. Replies
    1
    Views
    1,479

    VS 2019 Need to transfer to resources

    Hi, my project needs certain images to work properly, so far I am only able to get them to work when in an external folder, I want to move them (the images) to the resources file. This is what I...
  16. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    Is there any way to fix the problems? or am I in deep water?
  17. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    Dash.wav https://mega.nz/file/p6IkiZwR#uqt2yrtFKe5oMizg7SNCAbPFEtk31MigeUQdP0H8RpQ

    Dot.wav https://mega.nz/file/JyRinJpY#DqVYPUrOeaXP0xCwV35Bfn-AcGVJb520SJs-tUjIxF0

    Rien.wav...
  18. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    Well I've tried both and I just get a load of errors and it doesn't work if I manage to get rid of the errors
  19. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    Morse.text has multiple characters of both - and .
  20. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    How can I go about doing it? Im trying to get the sound of Morse code from the textbox.
  21. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    My apologies, I have changed the code to make it easier to describe what I am trying to do.


    Private Sub play1_Click(sender As Object, e As EventArgs) Handles play1.Click

    If...
  22. Replies
    22
    Views
    8,312

    VS 2019 Re: Been trying for hours, please help

    sorry, im just very frustrated. can you please help me with this?
  23. Replies
    22
    Views
    8,312

    VS 2019 Been trying for hours, please help

    Hi, I have been trying to figure out what is probably a very simple solution to a problem I have. I want the program to play multiple audio files from the Resource file, but Im not sure how to go...
  24. Replies
    6
    Views
    1,314

    VS 2019 Re: File Dialog Problems

    My apologies
  25. Replies
    6
    Views
    1,314

    VS 2019 Re: File Dialog Problems

    stupid mistake on my part, thank you bro!
  26. Replies
    6
    Views
    1,314

    VS 2019 Re: File Dialog Problems

    The picture literally shows the problem that I explained. Look at the filter on the dialog, now look at all the files that are still showing regardless of having a file filter in the dialog. I...
  27. Replies
    6
    Views
    1,314

    VS 2019 File Dialog Problems

    Hi again, I'm having another problem with my project, I want only the selected image files to be shown with openfiledialog but when I click the button, it shows the options for the only files i want...
  28. Replies
    6
    Views
    1,038

    Re: How can I create a loading script?

    I got it! YAY! though another part of my project is having a problem, I want only the selected image files to be shown with openfiledialog but when I click the button, it shows the options for the...
  29. Replies
    6
    Views
    1,038

    Re: How can I create a loading script?

    how would I go about using a Timer for this action?
  30. Replies
    6
    Views
    1,038

    How can I create a loading script?

    I want to create a loading script for a label

    What I have is


    For i As Integer = 0 To 2
    Label1.Text = ">"
    Thread.Sleep(500)
    Label1.Text = "~>"
    ...
  31. Replies
    2
    Views
    897

    Change image size from text

    I am having a problem, I want to change the image size from text and so what I have is

    Image.Size(WidthTXT.Text, HeightTXT.Text)
    but it says there are too many arguments, so I then tried
    ...
  32. Replies
    12
    Views
    2,265

    Re: Empty Path Name Is Not Legal Error help

    I can't figure it out, is there a way to just suppress the damn error?
  33. Replies
    12
    Views
    2,265

    Re: Empty Path Name Is Not Legal Error help

    My apologies, the app gives me the error.

    I gave you the incorrect code.
    The error points to the follow snippet of code

    Public Shared Function FromFile(ByVal filename As String) As...
  34. Replies
    12
    Views
    2,265

    Empty Path Name Is Not Legal Error help

    Hi, I am outputting an exe file and have an option to add an icon. The keyword is "option" but when I don't add an icon, it gives me an error saying "Empty Path Name Is Not Legal"
    The following code...
  35. Re: How can I create an executable app within an app

    Are you implying that I am trying to create something malicious? would never... I'm trying to create an IRC chat where the server owner can create an executable that is unique to the server. I want...
  36. How can I create an executable app within an app

    I'm not even sure where to start, and I've searched all over but cannot find anything regarding this.

    I can easily create a .bat file but I would like to create a exe file with attributes that...
  37. Re: I need help with an error I keep getting

    ahhh I see, thank you! I just went through all the code for the project that had my crappy coding style and it compiles much faster now. Thanks!
  38. Re: I need help with an error I keep getting

    Omg Thank you so much!

    I set it up like this


    If checkbox.Checked = True Then
    textbox.Text = String.Join("," & Environment.NewLine, textbox.Lines)
    End If

    ...
  39. Re: I need help with an error I keep getting

    I appreciate the last bit of code, but the emails do not have any spaces between them. Please help me with that, I added spaces and it worked, and its so close, but its not quite working because the...
  40. Re: I need help with an error I keep getting

    I'll add more, I tried adding the "TrimEnd" but It isn't working for me. It is for an email list so the full code I have for the checkbox is


    Private Sub checkbox_Click(sender As Object, e As...
Results 1 to 40 of 41
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width