Search:

Type: Posts; User: Dragnorian

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    3,399

    Re: Same code, different results?

    I have debugged the code, that is how I am aware of this issue. I will go through both identical pieces of code though and try to find why they are behaving differently. The thing I am not...
  2. Replies
    5
    Views
    3,399

    Same code, different results?

    Hello! So, I am having this issue with a snippet of code. I copy/pasted this code from one project to another, made no changes and the results are different. Here is the code:


    Dim fName As...
  3. Re: Trying to use Regex for replacing specific word?

    Yeah I did that. I think I am missing something. Here is the code:
    \
    Dim regex As Regex = New Regex(rtbData.Text)
    regex.Replace("Hello\b", "")


    Now I know I am new to...
  4. Re: Trying to use Regex for replacing specific word?

    Yeah I did but I think I did it wrong honestly, when I did it this way, it replaced hello with /b. Here is the code I did it with:

    rtbData.Text = rtbData.Text.Replace(remove, "\b")
    ...
  5. Re: Trying to use Regex for replacing specific word?

    What I mean is this: 3 words: Hello, HelloWorld, HelloUniverse. The user chooses to remove the word Hello and only Hello. When I do that it removes all three hellos leaving just World and Universe. I...
  6. Trying to use Regex for replacing specific word?

    Hello, I have been reading up on Regex and have a hard time understanding it. I am trying to make this feature to remove a certain word the user might want to remove from the list(word is the...
  7. Replies
    5
    Views
    9,347

    Re: [RESOLVED] Replace text in richtextbox

    Alright but what I mean Bean is that the user inputs the data. I was using that as an example but even then, if the user typed Hello it would remove the standalone Hello and the Hello in the...
  8. Replies
    5
    Views
    9,347

    Re: Replace text in richtextbox

    Hello there! Is there anyway to just do that specific word? Like say I have Hello and HelloWorld. I put in the textbox: Hello and that word in the textbox is the word that it looks for to be removed....
  9. Re: DataGridView UncheckAdd conflicts with delete row code

    Hmmmm, alright. That works too. I just realized that the issue could have been that I have a line of code in the cell click event that says that if user clicks on any rows then it selects that entire...
  10. Re: DataGridView UncheckAdd conflicts with delete row code

    UPDATE: Worked but then added dialog result msgbox confirmation menu. Back to same old issue of 'Index was out of range. Must be non-negative and less than the size of the collection.'
  11. DataGridView UncheckAdd conflicts with delete row code

    Hello! I hate having to bother you all with questions, I usually ask when I do not know how to word it in Google Search Engine so yeah... Anyways, I had this issue that when you click the starting...
  12. Replies
    4
    Views
    6,795

    VS 2017 Re: My.Settings save Combobox Items?

    Oh. That is interesting. Thank you for the help! It all works good now for that issue. Thanks again mate, have a good day!
  13. Replies
    4
    Views
    6,795

    VS 2017 Re: My.Settings save Combobox Items?

    Alright, thank you man! May I ask, how did you do that Protected Overrides?
  14. Replies
    4
    Views
    6,795

    VS 2017 My.Settings save Combobox Items?

    Hello! I have been working on code and wanna store Combo Box items in Application settings since that seems easiest. I have made the variable I made in the settings(comiclist) as Strings Collection...
  15. Replies
    11
    Views
    6,419

    VS 2010 Re: combobox Items save

    Hello! I have browsing this forum and wanted to ask, where did you add the My.Settings.History.Add at? I was browsing through and noticed this. I never use combo boxes and I am fairly new with...
  16. Re: Popup when clicked on a cell DataGridView possible?

    Alright I got it, thanks man!
  17. Re: Popup when clicked on a cell DataGridView possible?

    The issue isn't coding. I am trying to understand this all. The whole thing is dynamic. That one specific cell I want to hold the data will move positions. I am trying to understand is this, even if...
  18. Re: Popup when clicked on a cell DataGridView possible?

    I know how to use a cellclick event now but my issue I am trying to say isn't working. Nevermind about it, sorry for the troubles.
  19. Re: Popup when clicked on a cell DataGridView possible?

    Yeah I can. Just to make sure we are on both same page. I have my datagridview alphabetized so the position of the cell will be different from when they originally clicked and wrote. All that will be...
  20. Re: Popup when clicked on a cell DataGridView possible?

    Yes that what I want to do but here is what I don't know how to word: They input something, it will be different depending on who uses it. When they click that name(whatever it may be) a, say rich...
  21. Popup when clicked on a cell DataGridView possible?

    Hello! The title is misleading kinda haha. Anyways, I have a client that wants me to build them an application that uses DataGridView but wants a popup to happen whenever they click a cell. Like they...
  22. Re: How to build/publish an application?(Not a once click only kind)

    Oh, sorry about that. I'd click publish(i hit the create desktop shortcut) and when I hit setup it setsup it seems like but no exe
  23. How to build/publish an application?(Not a once click only kind)

    Hello, this is a stupid question but how would I build/publish my application? I can't have it being once click application but it builds the .exe and stuff. I want it to act like it is installing...
  24. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    http://www.vbforums.com/showthread.php?847899-Trial-Version-Timed-Tutorial&p=5172257#post5172257

    That is the tutorial I made for everyone in case you wanted to view it
  25. Replies
    0
    Views
    4,044

    Trial Version Timed Tutorial

    Hello! Welcome to this hopefully correct tutorial. Now, before we begin, I would like to say that this is the first tutorial I have done. Secondly, the first part of this tutorial was not found by me...
  26. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    Thank you as well
  27. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    I am actually using the settings and have figured out a way to put it all in check to counter users changing the date on their computers. I am currently making a post about this tutorial.
  28. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    Yeah I like that. I spent a couple more hours last night looking at more possibly solutions and came across a YouTube video that used the Settings in the application. I am currently working on a...
  29. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    I know that the open and save dialogs only purpose is to get the path. The specific use I need them for though(sorry if I didn't mention it) is when the user installs the software, a txt file with a...
  30. Replies
    16
    Views
    8,473

    Re: Creating Text file in formload?

    I did that right, but all involved a save dialog or an open dialog and I don't need that.
  31. Replies
    16
    Views
    8,473

    Creating Text file in formload?

    Okay, I have figured out what I want to do. I am not looking for answers(full code) just a lead in the right direction. I want to use a timer and everysecond I want it to open that file with the...
  32. Re: Trial version that expires after X amount of Days

    Woah hahaha. I am just a novice programmer who just wants simple protection hahaha. I was just wanting help with a simple way that can protect againsts the clock change. I like your post though
  33. Trial version that expires after X amount of Days

    Hello! I have been searching multiple ways to create a timed trial of an application I am making but I do not know how. I have searched multiple posts and websites but none give clear way like some...
  34. VS 2017 Re: Loading CSV file into DataGridView missing a row

    Alright, so the error in this code is this(Will show original code):


    Dim fName As String = ""
    OpenFileDialog1.InitialDirectory = "c:\"
    OpenFileDialog1.Filter = "CSV...
  35. VS 2017 Loading CSV file into DataGridView missing a row | SOLVED

    Hello! I am trying to load in a CSV file into DataGridView and it works but I am missing one row. I save 5 rows of data and I only get 4 in return. Here is the code(I am still trying to learn and do...
  36. Replies
    6
    Views
    8,608

    VS 2017 Re: Saving DataGridView to csv?

    Sorry, just figured you'd know something about the loading too. Okay, thanks too btw
  37. Replies
    6
    Views
    8,608

    VS 2017 Re: Saving DataGridView to csv?

    Alright, for some reason I thought the method originally would work. I got that down. Now I am working on loading. I got most of the functionality to work with one issue: When I load in, it is...
  38. Re: Formatting in DataGridView not working correctly?

    It did! Thank you very much!!!
  39. Formatting in DataGridView not working correctly?

    Hello! I am trying to format a specific column to work with currency. I went into the designer, changed the format setting for the column to C2(currency to second decimal place) and when I go to...
  40. Replies
    6
    Views
    8,608

    VS 2017 Saving DataGridView to csv? | SOLVED

    Hello! I am following a tutorial on how to save a DataGridView to csv and it won't save. I followed the tutorial correctly, something I did wrong?


    Public Class frmMain
    Private Sub...
Results 1 to 40 of 95
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width