Search:

Type: Posts; User: Amerigo

Page 1 of 4 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    8
    Views
    8,951

    Re: Read xml into listview...looping

    128301
  2. Replies
    8
    Views
    8,951

    Re: Read xml into listview...looping

    I can't hardwire an .xml document as the program opens/edits/saves many different lists with notes. The open method is working along with the other code. You made it work with 5 lines of code, where...
  3. Replies
    8
    Views
    8,951

    Re: Read xml into listview...looping

    Hello all. I've tried many examples to accomplish this. This example is working the best thus far, but I'm only getting the first entry to populate in my ListViewBox.

    Dim xml_doc As...
  4. Replies
    0
    Views
    537

    VS 2013 changing forecolor in contextmenu

    I'm trying to let users change the forecolor of my contextmenu, but not every component has the "ForeColor" property. How to I check for that?


    For Each Itom In MyMenu.SubItems
    If...
  5. Replies
    6
    Views
    5,183

    Re: Using a webbrowser control as a file browser

    @ Deepak Sakpal... Can you provide similar coding to change sorting and grouping. All the above and sorting and grouping can be done with the context menu, but I want my app to load with directory...
  6. Re: [RESOLVED] [2005] ToolStripComboBox with Font Styles?

    Never mind. I see that the addhandler is already there, so just eliminated the handle on the sub.
    BTW, to populate the combobox, you need to add something like:
    CtlTSFontCombo1.ReloadFonts() to...
  7. Re: [RESOLVED] [2005] ToolStripComboBox with Font Styles?

    I know this is ancient, but....
    When creating a new class with the above code (and correction), I get this:

    showing here:

    Private Sub MyComboBox_DrawItem(ByVal Sender As Object, ByVal e As...
  8. Replies
    69
    Views
    119,105

    Re: Mozilla / Firefox / Gecko in VB.NET

    Hello. I am creating a user control with a tabbed browser. I have followed the instructions in the original post exactly. I can add the geckobrowser to the control or to a test form without issue,...
  9. Re: Advanced VB/Office Guru™ Word SpellChecker™.NET

    It is amazing that so many have figured out how to use this although there isn't one mention anywhere as to how to call this class to start auto-checking text fields on a form. So, how is this...
  10. Replies
    4
    Views
    26,864

    Re: Convert RichTextBox to HTML string

    Hey there Minitech,
    That function works to convert, however, when sending in an email, it comes up with jibberish code using:
    Mail.Body = FromRtf(TextField) '(Textfield is a richtextbox control.)
    ...
  11. Replies
    95
    Views
    90,422

    Re: Enhanced VB Tabbed Web Browser

    Well, I checked it out. I may be able to use some methods regarding favorites (favourites :) ). The browser itself still uses the default contextmenustrip which keeps "Open in new tab" grayed out and...
  12. Replies
    95
    Views
    90,422

    Re: Enhanced VB Tabbed Web Browser

    I haven't looked at your code yet, but I have a feeling I just wasted 3 weeks creating my Tabbed_IE usercontrol.dll. I searched for months before creating one of my own.

    @Grunt: I am also working...
  13. Re: Mozilla Firefox / Gecko Xulrunner in VB.NET (versions 14 and up)

    Thank you for the tutorial. I am trying to create a UserControl. It appears that UserControls don't use Application Events, so View Application Events button is disabled so I can't copy the above...
  14. Replies
    5
    Views
    8,996

    VS 2010 Re: Using custom cursor

    Thank you so much for this!
  15. Replies
    14
    Views
    24,833

    Re: Window class for external windows

    HELP!
    Right off the bat, I got numerous errors when adding Window.vb and API.vb to my project.
    It says that "Count" is not a member of System.Array.
    I'm using VB 2005 if that make a difference.
  16. Replies
    8
    Views
    31,513

    Re: VB6/VBA Creating Access Database via Code

    I am finding this whole database issue to be very confusing. I have a database for my app called ImageDatabase.mdb for storing images. Nothing I have found about creating a database programmatically...
  17. Replies
    7
    Views
    28,561

    Re: Get Target Path Of Shortcut

    This worked great for me. Thank you ever so much, manavo11!
  18. VS 2005 UserControl button not behaving as a button in a Windows Form

    Greetings Earthlings,
    I have created a button in a UserControl. I have added that button to a WindowsForm in another app and added a buttonclick event to the code. When running (debugging) the app...
  19. Replies
    9
    Views
    22,982

    Re: Volume control in VB.NET

    Any ideas on how to obtain the current system master volume?

    in answer to my previous question above.. I used Me.vox.Volume += 5 for volume up, and -=5 for volume down.
  20. Replies
    10
    Views
    16,094

    Re: [RESOLVED] How to change master volume level?

    mute is easy enough. The following code works well with windows 7 and really mutes the volume so that the volume icon in the taskbar shows that the volume is muted.


    Imports...
  21. Re: VB-Disable Ctrl Alt Del in XP, Hide TaskBar, Disable Windows keys

    http://www.a1vbcode.com/app-5005.asp
    It doesn't hide/disable the start button at all. Change "ShowWindow(CInt(TaskbarWnd), 0)" to " ShowWindow(TaskbarWnd, 0)" to get the taskbar to disappear in...
  22. Re: VB-Disable Ctrl Alt Del in XP, Hide TaskBar, Disable Windows keys

    No, I wasn't. I used a different code to lock the desktop as such.
    Nothing I've tried will lock the keys. I am unable to integrate this .dll into my program either because I don't know how, or it's...
  23. Re: VB-Disable Ctrl Alt Del in XP, Hide TaskBar, Disable Windows keys

    What a long thread!
    I am using VB 2005 to create a system lock.
    I am running Windows 7, but need to app to work on xp as well.
    The .dll above downloaded, but I can't get it to do anything or find...
  24. Replies
    7
    Views
    1,014

    Re: [RESOLVED] [2005] Cycle Through Textfile

    I'm needing to do something similar, but without displaying the words. It more complex (I think) because I need to compare each word in Textbox1 to see if it is found in a dictionary file. Spell...
  25. Re: Move and Resize a Control or a Borderless Form - using window messages (smooth!)

    Thank you very much, NickThissen! If I knew what you looked like, I would make an idle of you to worship. I guess a shrine will have to do... :bigyello:
  26. Replies
    3
    Views
    5,958

    VS 2005 Re: Save/Load Font Settings

    Thank you jmcilhinney. I just learned how to do that in another forum and it works great. I wish I had know about that months ago!
  27. Replies
    3
    Views
    5,958

    VS 2005 Save/Load Font Settings

    I am trying to save the last used font, font color, and background color. Then when starting myapp up again, read the data and use the last used settings. Make since?
    Here is what I have so far:
    ...
  28. Replies
    9
    Views
    22,982

    Re: Volume control in VB.NET

    I'm trying to change system speech volume (or master volume if necessary) with a Trackbar. Any thoughts?
  29. Replies
    5
    Views
    1,264

    VS 2005 Re: RESOLVED>> trim path from filename

    Thank you very much, guys.
  30. Replies
    5
    Views
    1,264

    VS 2005 [RESOLVED] trim path from filename

    I am trying to trim the path from a filename. With the following code, it returns "My Documents" where I should be getting "Test.txt". if I change the 1 to a 4 I get what I'm looking for, but that's...
  31. Replies
    1
    Views
    610

    VS 2005 Using Webbrowser component

    I have started my TV Guide app. My appoligies to those outside the USA. I don't think it will work for you.
    I have a form with a WebBrowser component in it. I've named the WebBrowser "Display".

    ...
  32. Replies
    7
    Views
    1,601

    VS 2005 Resolved... Re: Speech

    Thanks. I found it finally. I just added everything that had 'speech' in it and now have no errors.
  33. Replies
    7
    Views
    1,601

    VS 2005 Re: Speech

    I am using Windows XP. What I'm trying to find out it how to "reference the library".
  34. Replies
    7
    Views
    1,601

    VS 2005 [RESOLVED] Speech

    I have SAPI 5.1 installed. I'm using VB 2005.
    I can't get this to work.

    Dim spkr As New SpeechLib.SpVoice
    The error is "type speechlib.spvoice is not defined."
    How do I need to do to get speech...
  35. Replies
    2
    Views
    702

    VS 2005 temporary label

    I am trying to get a label to show briefly (3 seconds) when the form loads. The following code gives the 3 seconds, but the label doesn't show. The label is set to visible in the Designer properties....
  36. VS 2008 Re: [RESOLVED] Media Player volume and mute controls.

    You're awesome! Thank you all very much!
  37. VS 2008 Re: [RESOLVED] Current Song going through Speaker?

    Several IM apps are able to get that info from WMP. You might ask the makers of those IM apps. Pidgin would be a good place to start since it is a free, open source program; however I don't know what...
  38. VS 2008 Re: [RESOLVED] Media Player volume and mute controls.

    I am getting an error "Name SendMessage is not declared." I am, however, using VB 2005.
  39. Replies
    14
    Views
    8,999

    VS 2008 Re: Recurring Random Countdown

    I changed it to CountDownFrom, because that makes more sense.

    I tried what you suggested already. That made the program go crazier than ever. It just displayed rapidly changing random times...
  40. Replies
    14
    Views
    8,999

    VS 2008 Re: Recurring Random Countdown

    That all makes sense, but what is the cure?
Results 1 to 40 of 132
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width