Search results for query: *

  1. G

    Question "Four point" images

    It's probably not even possible..
  2. G

    Question Load large image into a Bitmap object

    I guess you could try converting it to a bitmap (easy to work with) and then creating an application to make bitmaps out of the raw data and convert all of the 256x256 bmp files to jpeg.. Do you know any other programming languages? Maybe something like C# will handle it.. probably unlikely.
  3. G

    Basic Encrypt

    The decrypt function would just be the reverse: Function Decrypt(ByVal Text As String, ByVal key1 As Long, ByVal key2 As Long) As String Dim outText As String Dim nT() As String Dim i As Integer nT = Split(Text, " ") For i = 0 To UBound(nT) outText = outText &...
  4. G

    Question "Four point" images

    In VB, you only seem to be able to draw an image with three points specified. Is there anyway you can edit the fourth point, without the image being drawn as a parallelogram? Hopefully this makes sense to someone. Mick
Back
Top