Search results for query: *

  1. M

    How to display records in a GridView?

    Dearest VB.NetForum members: Hello, and a pleasant day to all. I am currently learning ASP .NET with Database connection (using MS Access) and I wonder how to display the content of MSAccess database table in the webpage if the column stores the directory path of the image. Here are the...
  2. M

    How to create label programmatically but depends on DataSet count?

    Hi jmcilhinney. But, is there any difference (memory usage, performance, etc.) between declaring variable outside the loop & declaring them inside? Anyway, I see now what you mean. Thanks for clearing things for me, what I really meant is (really) is the variable...sorry for that. Cheers. :glee:
  3. M

    How to create label programmatically but depends on DataSet count?

    Superb. Hello IanRyder, Hi. I guess your code is more efficient than mine. I never thought that you could use the same object again and again, what I mean is to use the same object to display different values. I am always thinking of one-to-one: one player name (on DataSet row), one Label...
  4. M

    How to create label programmatically but depends on DataSet count?

    ....Text = (dsHighScore.Tables(0).Rows(i - 1)("usersName")).ToString() .Location = New System.Drawing.Point(120, 30 * (5 + i)) .ForeColor = System.Drawing.Color.Black .Font = New Font("Arial", 15, FontStyle.Bold) .TextAlign =...
  5. M

    How to create label programmatically but depends on DataSet count?

    Dear members and administrators, Hello guys. I hope you're all in good condition. I have this little game program that has a high-score form that will display high score (top 5) coming from my Access file. The result will be passed to a DataSet object named dsHighScore. But I wonder, how...
  6. M

    Simple sprite movement help pretty please?

    Eureka...I did it (again)! VicJ, Happy New Year to you! Sorry if this took a long time to thank you, but it's better late than never...thanks I got it now (at long last!). You are awesome VicJ! Well, the next will be the rest of the directions. But I can handle them now...thanks to you! And...
  7. M

    Simple sprite movement help pretty please?

    Codes added. How to detect collision between two Form objects? Hello VicJ, I am sorry for not replying right away, kind of busy though. Anyway this is the sample code I had came up with, the character is just moving/walking downwards (just as of now as I am still in testing mode). Public...
  8. M

    Simple sprite movement help pretty please?

    Eureka...I got It! VicJ, Thank you for your tips, I finally got it, I just did on one direction (going down) and the sprite "moves successfully." (YAHOO!) But I have a question/s though, I want to have at least two buttons that a user can alternatively used in moving the character. Example...
  9. M

    Simple sprite movement help pretty please?

    Dear members and administrators, Hello, and a pleasant day. I am new to such animations in VB .NET, I just want to ask how to animate this pictures of 1 character with 16 different angles/position? They say it's a sprite, but one thing I have an idea on how I could animate this is to slice it...
  10. M

    Typing Tutorial Game on Windows Form.

    Eureka...I got It! Hello guys, Finally, I got it...feels so good solving this by myself with the idea of others. :tennis: I just want to share this code (maybe it would come in handy in the future). First, I "break down" the String content inside the RichTexBox and put it in Form's Load...
  11. M

    Typing Tutorial Game on Windows Form.

    Got it! But it lacks more...please help. Hello JohnH and jmcilhinney, Thank you for the idea, I think I (almost) got it, using RichTextBox and indexing the string (inside the RichTextBox), I tested this code and it works: Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As...
  12. M

    Typing Tutorial Game on Windows Form.

    I should change other alternative to changing colors? jmcilhinney, Thank you for the information. I guess I will set that aside from now, and consider some "alternatives", I am thinking of something like instead of changing colors, the letters being typed will be "erased" one by one from the...
  13. M

    Typing Tutorial Game on Windows Form.

    Dear members and administrators, Hello and a pleasant day. I am working with simple typing game and I had a tutorial section on this game. I have a String object like the one given below and show the content of the String in a Label: Dim message As String ="welcome to this typing game"...
  14. M

    Other Crystal Report related files (.dll) needed for my installer? Please help.

    Hello Sir Ian, I hope you're doing in good health. I have created my program in 32 bit Windows XP (SP3), so I guess I am using 32-bit Crystal Report too, right? :nevreness: I checked my two installer files (i.e. SAP Crystal Report for VS2010.exe and Crystal Report XI Developer) and they are...
  15. M

    Other Crystal Report related files (.dll) needed for my installer? Please help.

    Dearest members, Hello and a pleasant day to every one, I hope every one is in good condition upon reading this thread. I've created a very simple arithmetic program and the result will be printed in a Crystal Report (for educational purposes only) then I tried to create an installer and...
  16. M

    A menu similar to XP's MY COMPUTER->left menu? Is that control exists in .NET? Help.

    Thank you for the name of the control. To JohnH, YES, that's the one...whew....thank you JohnH for such great information (at last, you relief me from headache keep on thinking on the name :chuncky: ), so that means no matter what .NET Framework version I use, Windows.Forms doesn't provide...
  17. M

    A menu similar to XP's MY COMPUTER->left menu? Is that control exists in .NET? Help.

    A menu similar to XP's MY COMPUTER->left menu? Is that control exists in .NET? Help. Hello guys, For those who are still using Windows XP (like me), I am just curious about this control that when you click the title (the title is a link text)...the sub menu pulls up (gradual animation) and...
  18. M

    How to get selected records from a DataGridView to a DataTable?

    Hello guys, I hope everyone is in good health upon reading this forum. I am creating my own search engine in VB .NET (2010) for my database of Marvel Superheroes (I am using SQL Server 2008), searching for names, powers, etc. Though still on improving, the search is working fine on names and...
  19. M

    Many TextBoxes but uses the same events? Please help.

    Collecting the string from "created-by-run-time" TextBox objects still not OK. JohnH, Thank you for your reply. I am sorry but I am not so familiar yet with AddHandler, but what I did was I added a button and from there, I "collect" all the strings from my TextBox objects. Here is the code...
  20. M

    Many TextBoxes but uses the same events? Please help.

    Dear administrators and members, Hello everyone, a plesant day.:welcoming: I got this code somewhere on the Internet by accident. The code automatically creates ten (10) textboxes on run time upon loading the form. Private Sub Main_Load(ByVal sender As System.Object, ByVal e As...
Back
Top