Search results for query: *

  • Users: carlw
  • Order by date
  1. C

    Memory issues

    Hi, I am using a number of offscreen DC's in which I draw various elements of my final scene. I BitBlt a part of each to another DC and then finally BitBlt to the screen. There are a large number of different scenes which the user can load and reload as the game runs. My problem is that...
  2. C

    Need help creating a form that contain HTML text

    Hi, I want it to be a web browser type app. Carl
  3. C

    Need help creating a form that contain HTML text

    Hi, Can you please give me some more information on how to use these DLL's. Im not sure how i would go about using them. Thanks Carl
  4. C

    Need help creating a form that contain HTML text

    Hi, Im creating a windows app that i would like to be able to show HTML created pages. Can someone please tell me what sort of Box i would need to use to show the HTML in. Thanks Carl W
  5. C

    How to only open a form once

    Hi, I need to be able to open a form from a button click but once open i need to stop the button opening another instance of that form until the first i closed. This is what i have so far but it doesnt allow the form to open once. Private Sub MapBClick(sender As System.Object, e As...
  6. C

    Help with IRC

    Hi, Can anyone point me in the direction of any websites that contains tutorials on creating a IRC chat window. I have the IRC protocol but i need to know how to use this in vb.net. Many Thanks Carlw
  7. C

    how do i have 3 child forms open

    thanks its obvious when you know how. Thank you Carl
  8. C

    how do i have 3 child forms open

    Hi, How do i have 3 child forms open when the main parent loads? Any help will be appriciated. Thanks Carlw
  9. C

    How do i create a form inside a form

    Hi that works now thanks. carl
  10. C

    Showing a window not opening a new one

    This is on form 2 Public Sub Button1Click(sender As System.Object, e As System.EventArgs) If Not IsNothing(F2) Then ' and if it hasn't been disposed yet If Not F2.IsDisposed Then ' then it must already be instantiated - maybe it's ' minimized or hidden behind other forms ...
  11. C

    Showing a window not opening a new one

    This is on form 1 Public Sub MenuItem4click(sender As System.Object, e As System.EventArgs) If Not IsNothing(F2) Then If Not F2.IsDisposed Then ' then it must already be instantiated - maybe it's ' minimized or hidden behind other forms ? F2.WindowState = FormWindowState.Normal '...
  12. C

    Showing a window not opening a new one

    Hi, I have have a problem. I have 3 forms, Form 3 needs to be opened from a button click on form 2 and brought to the front from a menu click on form 1. The problem i have is that i cant get the 2 clicks to interact with each other. I have it so that each click will only allow one instant of...
  13. C

    How do i create a form inside a form

    yes its empty. No error 2nd form just doesnt show
  14. C

    How do i create a form inside a form

    Thats still not showing the second form. I have changed Yourchildformsname to the name of my form. Carl
  15. C

    How do i create a form inside a form

    Sorry, How do i call it and set its parent to me? Carl
  16. C

    How do i create a form inside a form

    Hi How do i create a form inside a form. Like in Excel/Word. I know this has probably been answered hundreds of times but i just cant find anything on it. Carlw
  17. C

    how do i get a box to follow a line

    Hi, I'm working on a Railway Simulation game which uses Aerial Photographs as backgrounds and on which I will need to draw tracks over which simple coloured box graphics representing the trains will travel. Carl
  18. C

    how do i get a box to follow a line

    hi, I need to get a little box to follow a line that the user can draw onto a .JPG. Can anyone tell me how i would go about doing this. Many thanks Carlw
Back
Top