Click here to Skip to main content
16,007,885 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: passing values from a form to a dialog form Pin
macupryk9-Sep-05 23:40
macupryk9-Sep-05 23:40 
GeneralRe: passing values from a form to a dialog form Pin
Rizwan Bashir10-Sep-05 9:08
Rizwan Bashir10-Sep-05 9:08 
QuestionHow I can give XP control looks in VB.net controls Pin
deepak_rai9-Sep-05 4:32
deepak_rai9-Sep-05 4:32 
AnswerRe: How I can give XP control looks in VB.net controls Pin
rudy.net11-Sep-05 17:20
rudy.net11-Sep-05 17:20 
QuestionXP control look in VB.net controls Pin
deepak_rai9-Sep-05 4:28
deepak_rai9-Sep-05 4:28 
QuestionImage conversion help, pixel byte array to image Pin
Anonymous9-Sep-05 2:47
Anonymous9-Sep-05 2:47 
AnswerRe: Image conversion help, pixel byte array to image Pin
Dave Kreskowiak9-Sep-05 4:16
mveDave Kreskowiak9-Sep-05 4:16 
GeneralRe: Image conversion help, pixel byte array to image Pin
Anonymous12-Sep-05 10:30
Anonymous12-Sep-05 10:30 
I looked at an image saved from the C++ example application and i noticed the following things.

bitmap 8bit 256 colors grayscale

After this I searched on google and found some example's, I tried some, none of them work. I keep getting argument exception, invalid parameter used when i try to read from stream. Anyone has some suggestions? At the moment I'm still waiting for an official reply from authentec for the return image information.

Dim image As Bitmap
Dim stream As MemoryStream = New MemoryStream(PixelBuffer)
Dim pFormat As PixelFormat = PixelFormat.Format8bppIndexed
Dim tmpBmp As Bitmap = New Bitmap(1, 1, PixelFormat.Format8bppIndexed)
Dim greyPal As ColorPalette = tmpBmp.Palette
Dim i As Integer

For i = 0 To greyPal.Entries.Length - 1
greyPal.Entries(i) = Color.FromArgb(i, i, i)
Next

image = New Bitmap(96, 96, pFormat)
image.Palette = greyPal
image.FromStream(stream)

pbPrint.Image = image
GeneralRe: Image conversion help, pixel byte array to image Pin
charles09298827-Sep-10 20:35
charles09298827-Sep-10 20:35 
QuestionNOT VB .... VBA Pin
OMalleyW9-Sep-05 2:07
OMalleyW9-Sep-05 2:07 
AnswerRe: NOT VB .... VBA Pin
Dave Kreskowiak9-Sep-05 2:23
mveDave Kreskowiak9-Sep-05 2:23 
GeneralRe: NOT VB .... VBA Pin
OMalleyW9-Sep-05 2:59
OMalleyW9-Sep-05 2:59 
GeneralRe: NOT VB .... VBA Pin
Dave Kreskowiak9-Sep-05 4:10
mveDave Kreskowiak9-Sep-05 4:10 
GeneralRe: NOT VB .... VBA Pin
OMalleyW9-Sep-05 4:34
OMalleyW9-Sep-05 4:34 
QuestionHow to cumulate input values Pin
directred9-Sep-05 1:01
directred9-Sep-05 1:01 
AnswerRe: How to cumulate input values Pin
Dave Kreskowiak9-Sep-05 2:15
mveDave Kreskowiak9-Sep-05 2:15 
GeneralRe: How to cumulate input values Pin
directred9-Sep-05 3:09
directred9-Sep-05 3:09 
QuestionWindows Form Inheritance Issue Pin
Jason Stamp9-Sep-05 0:33
Jason Stamp9-Sep-05 0:33 
Questiongetting homepath for currently logged in user Pin
Shivani Arora8-Sep-05 23:59
Shivani Arora8-Sep-05 23:59 
AnswerRe: getting homepath for currently logged in user Pin
Dave Kreskowiak9-Sep-05 2:10
mveDave Kreskowiak9-Sep-05 2:10 
GeneralRe: getting homepath for currently logged in user Pin
jcrussell11-Sep-05 15:49
jcrussell11-Sep-05 15:49 
Questionsetting the image of crystal report object during the runtime Pin
Hemesh8-Sep-05 20:30
Hemesh8-Sep-05 20:30 
QuestionMovable Toolbar Pin
kenexcelon8-Sep-05 20:25
kenexcelon8-Sep-05 20:25 
QuestionBYPASS LOGIN Pin
tatchung8-Sep-05 19:35
tatchung8-Sep-05 19:35 
AnswerRe: BYPASS LOGIN Pin
Dave Kreskowiak9-Sep-05 2:01
mveDave Kreskowiak9-Sep-05 2:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.