Search:

Type: Posts; User: Damein

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    1,511

    VS 2010 Re: FileExits Not Working

    Hmm, I'm not that familiar with VB yet, is there something I can look at for the looping through the folders?
  2. Replies
    6
    Views
    1,511

    VS 2010 FileExits Not Working

    So I found someone's code that they posted on YouTube for a file exists. Now, with their setup it worked fine, but I am trying to search the ENTIRE computer. Not just the application folder, and I...
  3. Replies
    1
    Views
    489

    VS 2008 Creating an Over-Lay Window

    I was wondering if it is possible in VB8 to create a GUI that over-lays over a full-screen application (IE, a movie full screen, games or something that takes over the entire screen)

    What I want...
  4. Replies
    10
    Views
    20,283

    Re: YouTube Playlist Maker Program

    Oh snap, I didn't even notice a other.

    Thanks for moving it! :)
  5. Replies
    13
    Views
    1,802

    Re: Do you think I should donate to Wikipedia?

    I don't really have much to contribute to this, but I'm just astonished at how this has ~65,000 hits in 10 days, thats crazy, lol.
  6. Replies
    1
    Views
    443

    VS 2008 Need some help with XML

    Alright, so I've Google'd and searched this website many times over and worked at least 3-4 hours on trying to properly get XML to work. Either the code is outdated and cannot even begin to use or I...
  7. Replies
    10
    Views
    20,283

    Re: YouTube Playlist Maker Program

    Alright, so apparently YouTube did a quick update and accidentally turned off the autoplay for opening videos, so thats no a problem anymore. I still can't control the API without a web server so...
  8. Replies
    7
    Views
    1,092

    VS 2008 Re: A ListView with 3 parts?

    Yeah, you did a good job :)

    Anyways.

    In this picture here

    http://i42.tinypic.com/116oq5g.jpg

    I have the left-side "1" selected, of the Green section. I want to be able to press right and...
  9. Replies
    7
    Views
    1,092

    VS 2008 Re: A ListView with 3 parts?

    Thank's a lot for the excellent post, I modified it a little but I then have a question.

    Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
  10. Replies
    3
    Views
    539

    Re: Need some advice on a GUI

    @FunkyDexter

    Yeah, the API's html/embedded code must be uploaded to a webserver before being able to communicate with anything. So unless I wanted to pay for a server I wouldn't be able to use it....
  11. Replies
    3
    Views
    539

    Need some advice on a GUI

    Alright, so recently I posted a script for creating YouTube playlists on your PC. I was attempting to create a way to manage when one song ends and start the next one in the list. I have decided this...
  12. Replies
    10
    Views
    20,283

    Re: YouTube Playlist Maker Program

    Oh yeah, I'm sure it easily could be. The only thing this does is embed an IE window and then just uses INI files to read all the data. Pretty simple for some people I assume. I haven't learned...
  13. Replies
    10
    Views
    20,283

    Re: YouTube Playlist Maker Program

    Hmm, I could look into that. Maybe a white text color. I'll get back to you on that :)
  14. Replies
    10
    Views
    20,283

    Re: YouTube Playlist Maker Program

    Alright, I did some MAJOR over haul of the program. Created a slicker looking GUI, and added some functions.

    Updates in the first post :)

    Also, thanks for the link akhileshbc, I will look into...
  15. Replies
    7
    Views
    1,092

    VS 2008 A ListView with 3 parts?

    I'm not 100% how I could describe this, so I made an image.

    http://i44.tinypic.com/8wk1mx.jpg

    So what I want is to have a listview with items in the middle. Say


    Green
    Blue
    Orange
  16. Replies
    10
    Views
    20,283

    YouTube Playlist Maker Program

    First off, the reason I did not post this in any of the code banks is because I wrote this in a Macro-Language (But its not only Macro orientated) called AutoIt.

    Update as of 11/26/11

    Reduced...
  17. Replies
    1
    Views
    15,261

    Game: Under & Over 7

    I realized I posted this in the regular code bank, where as it should really go here.

    I have just started learning VB today and wanted to experiment with it re-creating this simple game.

    I have...
  18. Replies
    10
    Views
    1,122

    Re: Best way to link a name to a numeric value?

    I get an error for "players" not being an argument.. I think I should go back to some of the basics, because I cannot re-call how to resolve this.
  19. Replies
    10
    Views
    1,122

    Re: Best way to link a name to a numeric value?

    Alright, but I hit another snag. I can't seem to pass the dictionary to a second form that I am using to load the profiles.

    I can get the dict. to work on the form with the .Add command, but it...
  20. Replies
    10
    Views
    1,122

    Re: Best way to link a name to a numeric value?

    That looks like a good way of doing what I want. Do you know where I can find a full description of the myDict. command, to look up how to remove items and everything? I will look real quick, but...
  21. Replies
    10
    Views
    1,122

    Best way to link a name to a numeric value?

    So I am making a gambling game to better learn VB, and I am wanting to know the best way to link a players name with his pot.

    Currently I have a My.Setting's setup with a String var that holds the...
  22. Re: Changing the Me.Settings without reload

    Alright, got it. I was simply forgetting to re-apply the value setting for my variable. Thanks :)
  23. [RESOLVED] Changing the Me.Settings without reload

    Alright, I've tried searching but can't quite pin point an exact match to what I want.

    I have a setting labeled "Names" and in the program I can create a new "Names" value, which works fine. But,...
  24. Replies
    7
    Views
    2,195

    Re: Basic INI help (Sorry)

    I seem to be having problems writing it now.. I can't seem to figure out why :(




    Dim NewNameString As String = ini.WriteString("Names", "2", "Test")


    Which should produce a result, but...
  25. Replies
    7
    Views
    2,195

    Re: Basic INI help (Sorry)

    I never really thought to run a msgbox to check what was assigned to value, I attempted changing the text of a label, and it always came up blank.

    But! Adding quotes to the "Profiles.ini" was the...
  26. Replies
    7
    Views
    2,195

    Re: Basic INI help (Sorry)

    Thank you Honey, I will look into it.

    Opus, it will hold a players name, and a numeric value. So a String and Double (Since there could be a negative number) var will be acceptable for the...
  27. Replies
    7
    Views
    2,195

    [RESOLVED] Basic INI help (Sorry)

    I am really new to VB, am learning from this amazing book: Microsoft Visual Basic 2008, Step by Step by Michael Halvorson.

    I have little professional programming skills, but I have been using...
Results 1 to 27 of 28



Click Here to Expand Forum to Full Width