Search:

Type: Posts; User: ovanwijk

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    510

    Re: Reference question

    Thanks for your reply, I was already afraid I needed to do something like that. Solved it now by using an Interface with a properties I change.

    The reason for this is that I wanted to create a...
  2. Replies
    2
    Views
    510

    Reference question

    Hello all,

    Not that long ago I started with C# with already a lot of experience in vb.net and java. I came to face a problem with storing the same reference to for an Int32(or what ever) value.
    ...
  3. Replies
    3
    Views
    618

    VS 2008 Re: Game network tracker

    Because everything is done on server side. So sending messages that should not be possible . . . is not possible because all the checks, path findings, damage etc is calculated on the server.
    ...
  4. Replies
    3
    Views
    618

    VS 2008 Re: Game network tracker

    Hmmms too bad no-one can help :(
  5. Replies
    3
    Views
    618

    VS 2008 Game network tracker

    Hello people,

    I want to create for a game an external program that can give advice about what to do but I have no idea where to start.

    First off all I am not an unexpericend programmer but...
  6. Replies
    1
    Views
    429

    Need advice! OODB vs RDBMS

    Hello,

    For school I am doeing a research on the preformance differences on databases when used in webservers.

    What I am doeing is realy simple. Make 2 databases. 1 mysql and 1 db4o database and...
  7. Replies
    47
    Views
    2,494

    Re: [2005] Multiplayer game question...

    I tried to make my own component like winsock because its realy easy to use.
    When I looked into the source of this component it was exactly what I was making. I get your point that it is better make...
  8. Replies
    47
    Views
    2,494

    Re: [2005] Multiplayer game question...

    If you are planning to use the winsock control. . . use this one.
    http://www.vwsoftwaresolutions.nl/winsock2005.dll
    Its very easy to use(its a wrapper around the tcpclient and listner) and written...
  9. Re: [2005]Building an SDK in Visual Basic.

    Licence it? Terms of use? Put in there what you want and they are as free to use it as you want to.
  10. Replies
    9
    Views
    895

    Re: How do you make a lan?

    You need always to connect to a server app unless you are using UDP and just sending packages over the entire network(you never know if it arrives or not since you dont send it to anyone)

    Greets
  11. Replies
    11
    Views
    3,118

    Re: [2005] Prevent control.paint from flickering

    Ok now I guess I did it the right way.

    It looks like this now:
    http://www.vwsoftwaresolutions.nl/ScreenShot028.jpg

    Its pretty ugly but ok.

    Public Class MyButton
    Inherits Button
    ...
  12. Replies
    11
    Views
    3,118

    Re: [2005] Prevent control.paint from flickering

    Well I tried that but what I did was just this:

    My inherited class:

    Public Class MyButton
    Inherits Button
    Private myImage As Image

    Public Sub New(ByVal img As String, ByVal x...
  13. Replies
    11
    Views
    3,118

    Re: [2005] Prevent control.paint from flickering

    Somehow using PNG`s as background image dont works good.

    It works all pretty good as long as your buttons are the shape of a rectangle.
    The reason I used PNG`s is of their abbility to hold alpha....
  14. Replies
    11
    Views
    3,118

    Re: [2005] Prevent control.paint from flickering

    thnx both but I think jmcilhinney`s solutions will suit me more, the reason for that is that I just dont wont to use common controls(I use PNG images for my buttons, these are way nicer then the...
  15. Replies
    11
    Views
    3,118

    [2005] Prevent control.paint from flickering

    Well as the title says,

    I am creating an app for a touchscreen wich is always 1024x786(well not like that is important but ok). I wanted a fancy looking interface so I decided to paint every...
  16. Re: [2005] Function that return Combobox

    me.cboItem.items = Createlist().items

    Should work i think. However its better to return just a list(Of Object)

    Greets
  17. Replies
    15
    Views
    1,376

    Re: Is VB the right choice?

    Well the main difference between VB.net and C#.net is that you can write unmanaged code in C#. You cant do this in VB.net. Since you dont need to write unmanaged code it doesnt matter.

    Greets
  18. Replies
    15
    Views
    1,376

    Re: Is VB the right choice?

    Well using the com/generic comport trouth usb is very easy with vb.net/.net.
    About a year ago i had the same problem. I created a program with magnatic stripe cards. Those writing devices only use...
  19. Thread: multiplayer

    by ovanwijk
    Replies
    5
    Views
    1,145

    Re: multiplayer

    Even better. You practicly only have to send the shoot command. Because your program knows how hard the bullet goes en from what position it is shot. Your program calculates if you are shot or not...
  20. Replies
    29
    Views
    1,539

    Re: [2005] MySQL or SQL express

    I always work with MySQL and never had any problems with it.
    Never used MS SQL Express throught.

    Greets
  21. Replies
    8
    Views
    1,553

    Re: [2005] drawing maths graphs

    Well i must say i dont realy understand your exact problem and therefor dont know if i had the same problem ;).
    En never used such strange formulas to create my graphs. I am know some maths but i am...
  22. Replies
    8
    Views
    1,553

    Re: [2005] drawing maths graphs

    I am currently creating an object that can paint simple bar, pie and line graphs and can also handle more inputs so you can compare with other graphs.

    (All data used is just some random test data)...
  23. Replies
    15
    Views
    70,231

    Re: VB.Net TCP Client/Server

    Well network programming isnt easy.

    However its much better(for yourself too) to use the socket classes and understand how it works this way you can find/track/solve bugs much easier.
    ...
  24. Re: [2005] Networking without a server(UDP?)

    Got it working with your code :D.

    Thnx alot
  25. Re: [2005] Networking without a server(UDP?)

    Aaah thnx ill take a look @ it.

    Maybe a better explanation of what is want:

    Its a bit the as iTunes uses. When someone in your network starts iTunes you see that that libairy 2.
    Thats...
  26. [RESOLVED] [2005] Networking without a server(UDP?)

    I am creating a program that uses a MySql database server(on a ubuntu/linux OS) to reduce the cost of the program.

    To prevent that people gonna edit the same record i first wanted to create a...
  27. Re: [2005] Mouse and keyboard events(help and explanation needed)

    Owh thats quite easy indeed :P
    Never thought it would be that easy lol.
    Is there anything like that to do the same with mouse click events?

    Greets
  28. [2005] Mouse and keyboard events(help and explanation needed)

    I was wondering if it is possible to have overall mouse and keyboard events.

    I made a member system with magnetic cards for a discotheek here but there is a problem i realy want to solve.

    Cause...
  29. Replies
    5
    Views
    827

    Re: More That One Picture Per PictureBox

    Try picturebox.imagelocation().

    Dont know the difference but there should be a reason why its there ^^

    Greets
  30. Replies
    2
    Views
    440

    [2005] Just and inheritance question.

    I dont realy have a problem or something but just wondering something.

    Is it possible that a class inherit the same instance of a specified class?

    Let me make a simple example:

    The inherited...
  31. Re: [2008] Connecting VB program to linux program

    Lucky for u you can connect to an other app and dont have to write your own server.
    If you dont know how to thread and invoke and do async calls you can give the .NET version of winsock a try(wich...
  32. Replies
    3
    Views
    707

    Re: [2008] Startup with sub in Module

    it will run your code and at the end of your main() sub your program quits.

    Easiest way to solve this is simply this:

    YourForm.showdialog()

    Greets
  33. Replies
    9
    Views
    766

    Re: [2005] Why? (Replace text problem)

    Thnx jmcil ControlChars.Lf (or chrw(10)) works :D.

    Ty

    Greets
  34. Replies
    9
    Views
    766

    Re: [2005] Why? (Replace text problem)

    I am useing that.
    the property .text is a string

    Greets
  35. Replies
    9
    Views
    766

    Re: [2005] Why? (Replace text problem)

    I wasnt looking for "<br>" but replacing with.
    vbNewLine doenst work either when i place it on the same place as Environment.NewLine.


    Greets
  36. Replies
    9
    Views
    766

    Re: [2005] Why? (Replace text problem)

    I tried :

    txtRich.Text.Replace(Environment.NewLine, "<br>")



    wich still doenst work.

    Greets
  37. Replies
    9
    Views
    766

    [2005] Why? (Replace text problem)

    I am making/remaking a mail program i wrote quite some time ago.
    It directly inserted HTML on the place it was needed what made quite a mess inside the textbox.

    Now i wanna do this afterwards to...
  38. Replies
    5
    Views
    836

    Re: [2005] Load image into picturebox

    As SanderK said, just use a try/catch block,


    try
    If (oD.ShowDialog() = Windows.Forms.DialogResult.OK) Then

    pcbImage.ImageLocation = oD.FileName

    End If
    Catch ex as...
  39. Replies
    23
    Views
    1,843

    Re: Public Variables vs. Properties

    example after example . . . i have one too :D.

    You can have a birthdate value(or property ofcource) as DATE and have a "public readonly property AGE as integer". that will calculate the age as...
  40. Re: [2005] Open your program by opening a file

    Ok i found it.
    It was very simple ^^.
    Public Module File_assosiation ' (this is your exe name)
    Public Sub Main(ByVal args() As String)
    If args.Length > 0 Then
    ...
Results 1 to 40 of 87
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width