CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: oldGMtireman

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Re: Get the SelectedIndexChanged events of a combobox to fire Visual Studio 2012

    Where was I asked not to try "other events"?
    I answered the second question.
  2. Re: Selectively prevent a combobox from scrolling past a certain point Visual Studio

    You were correct. I was populating the list dynamically when the form loaded and added the "*" at that time. I removed that.
    Then I had the checkbox add the "*" when checked and replaced the list...
  3. Re: Selectively prevent a combobox from scrolling past a certain point Visual Studio

    Removing the "*" works great. It's when I try to put it back. Doing so replaces one of the letters stored. Not good.
  4. Re: Get the SelectedIndexChanged events of a combobox to fire Visual Studio 2012

    Yes. I tried other events too. I can't find anything useful.
  5. [RESOLVED] Get the SelectedIndexChanged events of a combobox to fire Visual Studio 2012

    Hello again.

    Same project as in a previous post: https://forums.codeguru.com/showthread.php?565197-Selectively-prevent-a-combobox-from-scrolling-past-a-certain-point-Visual-Studio-2012

    35937
    ...
  6. [RESOLVED] Selectively prevent a combobox from scrolling past a certain point Visual Studio 2012

    I have two combo boxes on a form.

    35936


    Both of them contain the letters A - Z. One is loaded foreword (A-Z), the other backward (Z-A).

    They also hold the asterisk (*) symbol. They each...
  7. Re: Isn't there an easy way to sort a ListView by 1 column with Visual Studio 2012

    I saw this. I was hoping for a solution that wasn't a page long.
    Sorry I bugged you. Thank you for replying
  8. [RESOLVED] Isn't there an easy way to sort a ListView by 1 column with Visual Studio 2012

    I am using Visual Studio 2012 Express.

    I have a form with a ListView control on it. It has the following columns: Name, Date / Time created, Type, Size 35935
    When the form opens, it gets all of...
  9. Re: Opening my Help file to a specific topicid from within a menu item with VS2012

    Never mind...
    This is how it's done...
    Help.ShowHelp(Me, HelpFilePath, HelpNavigator.TopicId, "50")
  10. [RESOLVED] Opening my Help file to a specific topicid from within a menu item with VS2012

    I have an VS2012 project that has a menu item called "INSTRUCTIONS".
    I want to be able to open a specific location with my instructions by TopicID.
    The form that this menu item is on is set to open...
  11. Something I learned about fonts and Power Packs 10 items with Visual Studio 2012

    Hello!

    I hope I am about to share something that was previously unknown and extremely helpful to Visual Studio 2012 users.
    I had previously posted that a form that I had created in VS2012 for a...
  12. Re: Problem with form not staying centered at start in VS 2012

    UPDATE: I decided to re-create the project from the ground up. First, I moved the original project off of the same drive, just in case. Then I did as I all ways do and started a new windows forms...
  13. Re: Problem with form not staying centered at start in VS 2012

    I am not doing either of these things. Like I said, I have 14 other projects where I have done the exact same thing without issue. I create a project with 2 forms. In the project properties, I...
  14. Re: Problem with form not staying centered at start in VS 2012

    To be truthful with you - I did not give my Form2 (the form with the problem) a parent window (not that I know of). Form1 is the splash screen. I'm sorry, how or where would I check for a parent...
  15. [RESOLVED] Problem with form not staying centered at start in VS 2012

    I am using Visual Studio 2012 (don't bash me for this). I have written MULTIPLE projects with splash screens and start forms.
    To center the screen when the project runs, I have just set the Start...
  16. Replies
    2
    Views
    6,567

    Re: An easy question

    I know where I am going to place the files because I am coding the installer to put them there. I have additionally experimented with the different folders to learn which require elevated access ans...
  17. Replies
    2
    Views
    6,567

    [RESOLVED] An easy question

    I have created 15 different Visual Studio 2012 projects that I want to finish up and build. All of the projects have some sort of "support" files (.dat, .txt, .wav).

    To make things easy, I just...
  18. Immediately stop audio with play mode "AudioPlayMode.WaitToComplete"

    Question:

    Is there a way to immediately stop audio from playing if the mode is "AudioPlayMode.WaitToComplete" in vb.net?

    I have tried: "My.Computer.Audio.Stop" it does not work like I want it...
  19. [RESOLVED] Advice for getting programs built with VS2012 to run stand alone

    Hello;

    Some of you know me and know that I create programs with Visual Studio 2012 Express. Like I said before, I got the license for free so that's what I'm using.

    I want to create...
  20. Re: Where to create code to limit form opening by password Visual Studio 2012

    Thank you. I sorta took your advice. I knew about the fact that the application would close if the startup form closed. I also understand modal forms fairly well. I sometimes use them as...
  21. Re: Where to create code to limit form opening by password Visual Studio 2012

    Because it opens every time even if no password is set. I want the application to end if the main form (Form 1) is closed.
    Any other suggestions? BTW: Thank You, Merry Christmas & Happy New...
  22. [RESOLVED] Where to create code to limit form opening by password Visual Studio 2012

    I have an Visual Studio 2012 application that has 3 forms:

    Form 1 is the main form
    Form 2 is a settings form
    Form 3 is a password form

    I want the user to enter a password in Form 3 to open...
  23. Re: GetDirectories mistakenly returns [Documents and Settings] in Visual Studio 2012

    I'm not sure where I am supposed to be saying this, but I have noticed on 11/15/2019 at 7:04 AM that 164 of you have looked at this post. Did this stump all of you or are you too mad at me to even...
  24. Re: GetDirectories mistakenly returns [Documents and Settings] in Visual Studio 2012

    I have learned more: I looked at the earlier version that I completed and remembered that I had been adding the folders to another ListBox. Just for fun, I replaced my current code with that of the...
  25. Re: [RESOLVED] Finding an item (text) in a List View with Visual Studio 2012 Express

    Here is what I came up with:



    Dim tmpInt1 As Integer = 0 ' This is a counter to search all of the words in the ListView
    Dim tmpString1 As String = Trim(LCase(InputBox("Enter the word [or part...
Results 1 to 25 of 36
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured