Search results for query: *

  1. C

    ScreenSaver Activated

    Screensaver activated...any way to tell.... I noticed you guys dont read the title...huh? thanks for all your help.
  2. C

    ScreenSaver Activated

    Any way to tell? (after 2 hours on google), Im spent.
  3. C

    PictureBox2.ImageLocation = "en.gif"

    lol. this does it: PictureBox1.ImageLocation = Application.StartupPath & "\en.gif" Dim bm As New Bitmap(PictureBox1.InitialImage) Dim bm2 As New Bitmap(Application.StartupPath & "\tile.gif") Dim c As Boolean c = ImagesAreTheSame(bm, bm2) MsgBox(c)
  4. C

    PictureBox2.ImageLocation = "en.gif"

    Not just width and height....if its an exact copy... yes the compiler is asking for a "New" keyword in the function. i just cant figure who what or where.
  5. C

    PictureBox2.ImageLocation = "en.gif"

    How can I send the Picture2.Image to the above function (as bitmap)?
  6. C

    PictureBox2.ImageLocation = "en.gif"

    Public Shared Function ImagesAreTheSame(ByVal bmp1 _ As Bitmap, ByVal bmp2 As Bitmap) As Boolean How can I send the Picture2.Image to the above function (as bitmap)? Thanks Full Function: Public Shared Function ImagesAreTheSame(ByVal bmp1 _ As Bitmap, ByVal bmp2 As Bitmap) As...
  7. C

    Update your program's name in Windows Taskbar?

    Try Application Doevents()
  8. C

    waveOutSetPitch sample?

    Check out this handy dandy dll. http://www.un4seen.com/
  9. C

    List of encrypted codes

    Item 1-2 = first two letters of the surname Gonna make it very easy for "doubles" to appear.
  10. C

    Check the screen size

    here is an easy way: Dim intX As Integer = Screen.PrimaryScreen.Bounds.Width Dim intY As Integer = Screen.PrimaryScreen.Bounds.Height Me.Height = intY Me.Width = intX Me.Top = 0 Me.Left = 0 MsgBox(intX & " X " & intY)
Back
Top