Search:

Type: Posts; User: mikeg71

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    Good info to know. I will for sure look at using the DGV, and even possibly converting this project over to it at some point.
  2. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    @.paul. - I am planning to try out DataGridView as I have never used it for anything. In your experience, is it better than a listbox when just adding smaller amounts of data?
  3. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    @wes4dbt - Your guess was genius, it works :). Thanks so much for your help on this. I honestly did not realize how difficult it was to print the contents of a listbox until this came up. Thanks...
  4. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    dday9 - I must be doing this wrong because I cannot get the listbox items to change when I set a breakpoint and step through it.

    wes4dbt - I am open to doing a DataGridView rather than a listbox...
  5. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    Sorry, I should have posted that as well. Your code now prints like this:


    PART NUMBER: GR29-028B
    PART NUMBER: GR29-028B
    PART NUMBER: GR29-028B
    PART NUMBER: GR29-028B
    PART NUMBER: ...
  6. Replies
    13
    Views
    1,405

    Re: VB.NET Print total items of ListBox

    Thanks dday9... this does produce strange results like you said. My listbox is populated with info after searching multiple files for a part number and returning filename and qty of each part number...
  7. Replies
    13
    Views
    1,405

    VB.NET Print total items of ListBox

    Trying to print the complete list of items from a listbox using this code. When I set 'e.HasMorePages' to True, it will continue to run on forever. Not sure what I am missing here, but the way this...
  8. Re: VB.NET Search Multiple Files for String, Count Duplicates, Return Filename & Qty

    Thanks @kebo I was just getting this read in like you suggested and did work with the split to find my value.
  9. Re: VB.NET Search Multiple Files for String, Count Duplicates, Return Filename & Qty

    @ChrisE Thank you for your help with this, it does 99% of what I need. This is great! So here is what I have now after using your posted code and works well. But how do I get a full/exact match? ...
  10. VB.NET Search Multiple Files for String, Count Duplicates, Return Filename & Qty

    Hi All.. I am using some old VBA code that I am trying to convert over to .NET but having a hard time doing what I need. In this case, I am searching a single folder with hundreds of files for a...
  11. Replies
    10
    Views
    1,243

    Re: VB.NET Proper Use of MsgBoxResult.Yes/No

    Paul - Thanks a bunch for this, it will be VERY useful to me when making attempts to use this type of stuff in my applications.
  12. Replies
    10
    Views
    1,243

    Re: VB.NET Proper Use of MsgBoxResult.Yes/No

    Thanks @paul... I get an error using this 'ShowDialog is not a member of MessageBox'.

    ShaggyHiker - You make a good point. This add in was an after thought for simply loading the newest file, so...
  13. Replies
    10
    Views
    1,243

    VB.NET Proper Use of MsgBoxResult.Yes/No

    Hi All.. Looking for the 'proper' way to use the msgboxresult.YES/NO here in my case. I am either using openfiledialog to browse or I am loading the most recent file. After that, I am loading a...
  14. Re: VB.NET search text file and remove only first found duplicate.

    dday9 - Thank you, this is EXACTLY what I needed. Much appreciated :)
  15. [RESOLVED] VB.NET search text file and remove only first found duplicate.

    Hi All - I am using this code to find and remove duplicates, but now what I need to do is search for the duplicate, but only remove the first duplicate found in the text file. I could have up to 3-4...
  16. Re: VB.NET Run WMP Process Hidden or Minimized not working

    Thanks for the replies. I will look into this and see if I can find something on it.
  17. VB.NET Run WMP Process Hidden or Minimized not working

    Hi All, I am using this code to play a very short mp3, close it and re-run it. What I cannot figure out is how to run windows media player either hidden or minimized. I have tried several things...
  18. Replies
    2
    Views
    879

    Re: VB.NET get variable from Function

    Thanks techgnome. I think this will get me what I need. Somehow I was thinking something else with how to get this, but this will work perfect.
  19. Replies
    2
    Views
    879

    VB.NET get variable from Function

    Hi All, I found some code for painting rotated text on my form. Code seems to work great and I am using this text basically as labels. My question is, how can I get the 'TEXT' in the code and assign...
  20. Replies
    4
    Views
    1,259

    Re: VB.NET Load Form TextBoxes from CSV file

    Thanks jdelano... I will play around with this and see how it works. I appreciate your time and effort on this.
  21. Replies
    4
    Views
    1,259

    VB.NET Load Form TextBoxes from CSV file

    Hi All - So this is my first attempt at doing something of this nature. I have a form with many textboxes that acts as a real-time hour by hour schedule. A user will fill in portions of the form...
  22. Replies
    9
    Views
    1,661

    Re: VB.NET Increment string

    dbasnett - This also seems to be working. I am going to continue on with these suggestions. Thanks a bunch for the help and your time.
  23. Replies
    9
    Views
    1,661

    Re: VB.NET Increment string

    @OptionBase1 - I found that I had used your change in another small application and so far it seems to be working. Without investigating it further, I had assumed I made the change to my current...
  24. Replies
    9
    Views
    1,661

    Re: VB.NET Increment string

    'optionbase1' - I completely overlooked my last post from a year ago. That is my fault 100%. See some of my examples below, but like I mentioned, this does work "most" of the time. But one sneaks in...
  25. Replies
    9
    Views
    1,661

    VB.NET Increment string

    Hi all, I am using this code to increment a string. The string can contain letters, numbers and some special characters and usually works pretty well. Since its difficult to try out many...
  26. Replies
    4
    Views
    1,203

    Re: VB.NET Combobox Not Scrolling Item List

    Thank you for your replies. This was really making me crazy, but I did figure out the issue. I was using:


    Combobox1.MaxDropDownItems = CMB1.Length

    I did not realize that using this was...
  27. Replies
    4
    Views
    1,203

    Re: VB.NET Combobox Not Scrolling Item List

    79 items total. Looks like about 70 can fit on my screen top to bottom without scrolling. I set both of those properties to 25, 79, 100 but does not seem to change anything or have any different...
  28. Replies
    4
    Views
    1,203

    VB.NET Combobox Not Scrolling Item List

    Hi All - I have never come across this issue until today where my ComboBox has too many items and will not allow scrolling. When I say too many items, I mean approx 5-8 items too many. Menu is...
  29. Replies
    6
    Views
    1,150

    Re: VB.NET Cannot Update Access DB

    Thanks All for the replies, this is making more sense now. I added the Parameter and it seems to be working now.
  30. Replies
    6
    Views
    1,150

    Re: VB.NET Cannot Update Access DB

    I am auto-incrementing the ID, so I don't want to allow for any changes to that field. But I am not certain how I should be dealing with that.
  31. Replies
    6
    Views
    1,150

    Re: VB.NET Cannot Update Access DB

    Thanks for the reply. Do I need to have something there at all?

    Would this be correct?


    Where ID=" & Me.txt_ID.Text, conn
  32. Replies
    6
    Views
    1,150

    VB.NET Cannot Update Access DB

    Hi All... I am going a little crazy with this today. Cannot seem to get my 'Edit' code to work for updating my Access DB file. I get "No given value for one or more parameters" error when attempting...
  33. Replies
    5
    Views
    1,370

    Re: VB.NET Perform DoubleClick on Label

    Thanks all for the replies. Basically, (Shaggy Hiker) was correct. I had changed a few things and got myself lost. It all seems to be working ok now. Thanks for your time :)
  34. Replies
    5
    Views
    1,370

    VB.NET Perform DoubleClick on Label

    Hi All - I have a form with 20-30 labels on it that I am using to trigger some other events when the label is double-clicked. It all worked fine until someone asked how a barcode scan could work...
  35. Replies
    17
    Views
    2,506

    Re: VB.NET 140 Textboxes Numbers Only

    Thanks for the info on this. I will play around with some of these options.
  36. Replies
    17
    Views
    2,506

    Re: VB.NET 140 Textboxes Numbers Only

    Thanks... Why am I getting an error on my generic 'Public Class Form1' when using this? I get the error on Form1_Load 'MyBase.Load'
  37. Replies
    17
    Views
    2,506

    VB.NET 140 Textboxes Numbers Only

    Hi All,

    I am searching for an option (if one exists) that will allow me to make 140 textboxes to accept numbers only. I was hoping there was another way than adding to the handler:


    Handles...
  38. Replies
    3
    Views
    1,040

    VB.NET Drag Drop Error

    Hi All... I am using the code below to drag&drop files between listboxes. For some reason I am now getting an exception 'Value Cannot be Null. Parameter Name: item'. When I use: 'If result =...
  39. Replies
    24
    Views
    3,904

    Re: VB.NET read text file data between two dates

    I seem to have made it beyond the datepicker, but now I have another glitch. When trying to get my color from the text file, I get the error in the marked line below. Is this because I am...
  40. Replies
    24
    Views
    3,904

    Re: VB.NET read text file data between two dates

    Thanks for the info on that, I will make sure I don't do attachments knowing that.

    Here is the portion from your original code and my modified version (which seems to work). I don't understand why...
Results 1 to 40 of 178
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width