Search results for query: *

  • Users: gpmaker
  • Content: Threads
  • Order by date
  1. G

    Hold space bar

    is there a way to "codely" hold down the space bar for a few secs then let it go?
  2. G

    Capture Screen

    Is it possible to capture the surface of a specific program and turn in into a bitmap (i was thinking GetWindowDC maybe?), even if the program is minimized?
  3. G

    LineTo

    OK......i REALLY need help...ANYONE??? I'm using this code: Dim pn As Integer = CreatePen(0, 2, 5) '13382655 SelectObject(GetWindowDC(0), pn) MoveToEx(GetWindowDC(0), CInt(drawx), CInt(drawy), 0) LineTo(GetWindowDC(0), CInt(drawx + 1), CInt(drawy + 1)) Ok, i'm using Getwindowdc(0)...
  4. G

    Draw On Screen

    OK, i need some fast efficent way to draw on screen, i have a trackbar, and i need whenever this bar's value changes to draw this line on the screen. Not draw on a window, no window, the screen; on top of watever there is. Any ideas? (i tried using LineTo function, but can't get it to work)
  5. G

    Out of Memory

    OK, I'm going crazy. I run this code in a program: Dim s1, s2 As FileStream Dim br As BinaryReader Dim bw As BinaryWriter Dim filename As String If OpenFileDialog1.ShowDialog() = DialogResult.OK Then filename = OpenFileDialog1.FileName EndIf s1 = New FileStream(filename, FileMode.Open...
  6. G

    Data file into image

    OK, here's the problem. I'm trying to read a data file, and read it byte by byte and write it into a .gif file, here's my code: Public Function DecodePicture(ByVal filename As String) As Bitmap Dim s1, s2 As FileStream Dim br As BinaryReader Dim bw As BinaryWriter s1 = New...
  7. G

    Setting up directx

    Ok, i really need help on this. I installed DirectX 9.0 SDK on my comp, and it works great, i'm developing a game with it. Now, i'm confused about what pple need to install on their computers inorder to run my game. I know they need Framework 1.1, but i don't get what they need for directx (i'm...
  8. G

    exiting DirectDraw

    Hello again, I'm finally getting the hang of DirectX's DirectDraw(very fast compared to GDI). I'm running my application in full screen mode. Everything works alrite but when my application closes....some of the programs i had open meanwhile start acting weird. Is there a specific way i'm...
  9. G

    DirectX 9.0

    Does anyone know of a good tutorial(s) about game programmin using Managed DirectX 9.0? i've tried to look using google, but i can't find anything decent. hope u can help me
  10. G

    compression

    Hello, Does anyone know of a good tutorial or something on compression? my goal is to make something kinda like winzip, where u can take a group of files and compress it into 1 file, then decompress bak into several files.... any ideas? Edit: my goal is not really compression, my real goal...
  11. G

    bold and italic

    hello again, i'm working with a richtext box, i can get font to be bold, or italic, or underline.... but i can't get two or more at the same time..... text1.SelectionFont = New Font(text1.Font.Name, text1.Font.Size, FontStyle.bold) i tried.... text1.SelectionFont = New...
  12. G

    run prog with explorer

    how can i make my program run everytime someone opens internet explorer?
  13. G

    Applications running

    How can i get the current applications running? I know how to get processes, but I need to know exact applications, I just need their title BTW
Back
Top