Search:

Type: Posts; User: RaZeR

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,323

    VS 2008 Accessing DataGridView from parallel thread

    Hello :wave:
    I have one question.
    In my program (PassGen) i have a DataGridView control that stores passwords.
    But when i add more about 20,000 or more entries at the same time (using "Generate...
  2. Replies
    2
    Views
    1,084

    Re: Help with my tic tac toe game

    Looks like it's a button.
    You need to store values in a 2-dimensional array (string in your case), you can't store them in a button. So, in b1_Click you need to set values(0,0) = <current player...
  3. Replies
    4
    Views
    1,266

    Re: game_state lvl_state

    Now when your problem is solved, you need to set RESOLVED flag to the thread and rate useful post(s) by clicking http://www.vbforums.com/images/buttons/reputation.gif ;)
  4. Replies
    4
    Views
    1,266

    Re: game_state lvl_state

    I think declaring GAME_STATE as type is appropriate, but declaring LVL_STATE as type is not, IMHO.
    It's better to declare is just as integer massive (but if you have less than 255 levels, you can...
  5. Re: [RESOLVED] Easy way to tell if two picture boxes collide?

    There is a simple way (in VB.NET):
    1. Define two rectangles which will act as PictureBoxes and a boolean variable:
    Dim pic1 As Rectangle
    Dim pic2 As Rectangle
    Dim IsCollided As Boolean
    2.At...
  6. Thread: 3D Projection

    by RaZeR
    Replies
    2
    Views
    1,845

    3D Projection

    Hi all :wave:
    I have some questions. I have readed this Wikipedia article, so here the questions:
    - What is the "the viewer's position relative to the display surface." (ex,y,z)?
    - How to get...
  7. [RESOLVED] [XNA][C#] Draw model on specific coordinate

    Hello :wave:
    I'm making a simple 3D game, and i need to draw an crystal at specific position (XYZ, like 100,150,25). How can i do that with the most simplest way? :confused:

    EDIT:
    This problem...
  8. Replies
    11
    Views
    3,244

    Re: Using virtual COM port

    Thanks pal, it works perfectly! :D:thumb:
    *presses "Rate" button*
  9. Replies
    11
    Views
    3,244

    Re: Using virtual COM port

    I want to send Hex data :afrog:
  10. Replies
    2
    Views
    1,239

    Re: [RESOLVED] Draw Image (Mobile Edition)

    Haha, cool joke :D
    How to declare image? Maybe just write
    private Image testImg = Image.createImage("/sample.png");
    Will this generate "Null pointer" errors?
  11. Replies
    11
    Views
    3,244

    Re: Using virtual COM port

    Device is external, connects to PC using Bluetooth, sends and receives bytes (my device is programmable robot) through virtual COM-port (in my case COM4).

    I need to send some bytes to specified...
  12. Replies
    2
    Views
    1,239

    [RESOLVED] Draw Image (Mobile Edition)

    Hi :)
    I have started learning Java for mobile, i have make some simple programs (ReverseText, Calculator, BoxMove, DiscoLight), and now i want to create simple game.
    I'm need to draw image on...
  13. Replies
    11
    Views
    3,244

    Re: Using virtual COM port

    I want to connect through Bluetooth to device that uses virtual COM port to communicate with PC ;)
  14. Replies
    11
    Views
    3,244

    [RESOLVED] Using virtual COM port

    Hi all :)
    I need some help. I want to communicate with my LEGO Mindstorms NXT robot through Bluetooth, in VB.NET i done this by using SerialPort component. How can i do this with VB6? :confused:
    ...
  15. Replies
    3
    Views
    459

    Re: Just a question about this thing $

    $ means that variable is a string ;)
  16. Replies
    529
    Views
    43,914

    Re: How many teenaged programmers?

    I'm 13, so i'm a teenager :)
    I started programming when i was 11, i started with VB.NET 2008, and now i know VB6 and VB.NET, but i'm still learning :)
  17. Replies
    10
    Views
    953

    Re: getting text from html/php page

    Ok, i attached a sample ;)
  18. Replies
    10
    Views
    953

    Re: getting text from html/php page

    Ok. For example, on form you have a WebBrowser named WebBrowser1, a textbox for URL named txtAdress and a button named cmdCheckWord. Put my function in the code and put this code into...
  19. Replies
    10
    Views
    953

    Re: getting text from html/php page

    Add a a reference to "Microsoft Internet Transfer Control", then place Inet control to the form and add this function:


    Private Function ConditionString(URL As String, Condition As String) As...
  20. Replies
    7
    Views
    4,325

    Re: [RESOLVED] Reading/Writing data from/to ZIP

    I found it on freevbcode.com, here is a link. ;)
  21. Replies
    7
    Views
    4,325

    Re: Reading/Writing data from/to ZIP

    Thanks you! I'm also found a free PAK lib, in my game i will use PAK, ZIP i will use in other things. Thanks! :)
    *adding rep*
  22. Replies
    7
    Views
    4,325

    Re: Reading/Writing data from/to ZIP

    Thanks for reply :)
    I don't care about ZIP format. Maybe it is better to use packages such as .pak and .pk. Where i can find free libraries for packaging/unpackaging/reading/etc. paks?
  23. Replies
    7
    Views
    4,325

    [RESOLVED] Reading/Writing data from/to ZIP

    I have a game that have many data (textures, sound, etc.). I want to pack them in ZIP like textures.zip, sound.zip, etc, then read/write files from my code. I didn't found any examples for reading...
  24. Replies
    4
    Views
    3,457

    Re: [VB6] Load mesh with OpenGL

    Hmm... I have found function "Tokenize" in the code to split mesh, and find that texture coordinates i can set manually with the code, not with mesh. Thanks technorobbo, now i will try to load X mesh...
  25. Replies
    4
    Views
    3,457

    Re: [VB6] Load mesh with OpenGL

    Thanks, but i have it already :)
    There is one problem: in NeHe's sample vertexes separated by space, but in .X mesh they are separated by ";" and do not contain texture coords :(
    Maybe it's better...
  26. Replies
    4
    Views
    3,457

    [RESOLVED] [VB6] Load mesh with OpenGL

    Hi, this is i'm again :wave:
    I have readed NeHe's tutorials in VB6 about OpenGL, and tried modify them (succesfuly :))
    Now i want to make a mesh loader. I have readed that NeHe's mesh loader loads...
  27. Re: Move one object to other object smoothly

    Thanks, technorobbo! Your formulae works very good! :p
    Now this thread is "Resolved" :)

    :thumb:
  28. [RESOLVED] Move one object to other object smoothly

    Please help me, i'm really stuck :(
    I have this situation: i want to wrote AI for bacteria simulator game. I have wrote code for manual (with keyboard) controlling the bacteria, but can't write code...
  29. Replies
    2
    Views
    2,033

    [RESOLVED] Finding a point on a line

    I'm really stuck at this problem :(
    I have a line with coordinates (X1, Y1)-(X2, Y2) and a point C on that line. I know X coordinate of this point, but i need to know Y coordinate of this point....
  30. Re: Assotiating file format with my program

    jmsrickland thank you very much! Now this tread is resolved :)
  31. [RESOLVED] Assotiating file format with my program

    Hi :wave:

    How can i asscoiate file format with my program? For example, my program accepts ".lulz" format, but only if i start the program and click "Load File".
    I want to right click on file...
  32. Replies
    1
    Views
    7,177

    [VB6] Connect 'Em [EXE + SOURCE]

    Hi :wave:
    After playing with arrays i decided to make this game :)
    This is a simple game where you need to click on colored circles (you need to click on circle that have near a same colored...
  33. Replies
    35
    Views
    87,533

    Re: Free 2D/2.5D Game Engine for .Net and VB6

    Very good :):thumb:
    Can you create some new 3D examples using this engine, please? :wave:
  34. Replies
    42
    Views
    25,237

    Re: vb6/5: Alpha DogDighter 3D!!!

    I tied to play that game. First time after some time i pressed Esc to exit. Game exited normally, but when i try to play again and totally crashed, i got BSOD :(

    P.S: Sorry for my english :)
  35. Re: Displaying an image with a transparent frame

    You can't do this with standart PictureBoxes :( You need to use GDI+ :)
    I don't know much about making transparent backgrounds with GDI+, so i can't give you the code :blush:
    But i think some...
  36. Replies
    2
    Views
    517

    [2008] Transparency of PNGs

    I have one question. I have two PictureBoxes, one PictureBox is under other.
    When i'm loading PNGs with transparency, they not transparent! :confused:
    How can i fix that with code?

    Thanks, RaZeR
  37. Re: Playing Multiple Sounds Simultaneously?

    Thanks, i will try it :thumb:
  38. [RESOLVED] Playing Multiple Sounds Simultaneously?

    Hello :wave:
    I have one question: I'm creating a simple game, and i need to play multiple sounds simultaneously. For example, i have a background music, and want to insert a "gun shot" sound in the...
  39. Poll: Re: Useful Links,information,resource for .NET newbie

    Some other useful links for .NET developer :thumb:

    PlanetSourceCode, source codes, including .NET :thumb:
  40. Replies
    3
    Views
    525

    Re: English to Russian

    I can help :) . Write here please, because for some reason i can't send a PM :sick:

    P.S: Hi VBForums.com! :wave:
Results 1 to 40 of 40



Click Here to Expand Forum to Full Width