Click here to Skip to main content
15,922,574 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to run c# app on a win2000 machine without installing the framework? Pin
James T. Johnson17-May-02 1:00
James T. Johnson17-May-02 1:00 
GeneralVariants in .net Pin
ElCortez16-May-02 13:21
ElCortez16-May-02 13:21 
GeneralRe: Variants in .net Pin
Rama Krishna Vavilala16-May-02 14:35
Rama Krishna Vavilala16-May-02 14:35 
GeneralRe: Variants in .net Pin
ElCortez16-May-02 20:51
ElCortez16-May-02 20:51 
GeneralRe: Variants in .net Pin
Gaul21-May-02 4:34
Gaul21-May-02 4:34 
GeneralRe: Variants in .net Pin
ElCortez21-May-02 12:11
ElCortez21-May-02 12:11 
GeneralRe: Variants in .net Pin
Rama Krishna Vavilala21-May-02 12:30
Rama Krishna Vavilala21-May-02 12:30 
GeneralRe: Variants in .net Pin
ElCortez21-May-02 13:05
ElCortez21-May-02 13:05 
Unfortunatly i can't do that, as i didn't implement it, the control is supplied by the manufacturer of a camera.

The only documantation i have about it is the following:

GetBMP Method:

Description:
Returns the data and size of the current bitmap image.

Syntax:
CamImage.GetBMP Image, Size


Part Description
Image: Required. A variant containing the bitmap data.
Size: Required. Contains the size of the returned bitmap data.

Remarks:
Returns the data and size of the current bitmap image. The Display property has to be set to True when using the GetBMP method, otherwise the Jpeg images won’t be decompressed to bitmaps.

Example:
In this example a bitmap is captured with the GetBMP method and saved to a file.
Dim b As Variant
Dim Size As Variant
Dim a() As Byte
Call CamImage1.GetBMP(b, Size)
a() = b
Open "C:/Test.bmp" For Binary Access Write As #1
Put #1, , a()
Close #1


I hope this is helpfull!

I appreciate your help.



Venlig hilsen / Regards

Steffen Otto Jensen
(Denmark)
GeneralRe: Variants in .net Pin
Rama Krishna Vavilala21-May-02 14:46
Rama Krishna Vavilala21-May-02 14:46 
GeneralRe: Variants in .net Pin
ElCortez22-May-02 2:15
ElCortez22-May-02 2:15 
GeneralString handling book excerpt Pin
Tom Archer16-May-02 5:37
Tom Archer16-May-02 5:37 
GeneralRe: String handling book excerpt Pin
Rickard Andersson2016-May-02 7:15
Rickard Andersson2016-May-02 7:15 
GeneralRe: String handling book excerpt Pin
Albert Pascual16-May-02 7:19
sitebuilderAlbert Pascual16-May-02 7:19 
GeneralRe: String handling book excerpt Pin
Tom Archer16-May-02 7:16
Tom Archer16-May-02 7:16 
GeneralRe: String handling book excerpt Pin
Albert Pascual16-May-02 7:30
sitebuilderAlbert Pascual16-May-02 7:30 
GeneralRe: String handling book excerpt Pin
Tom Archer16-May-02 7:30
Tom Archer16-May-02 7:30 
GeneralRe: String handling book excerpt Pin
Albert Pascual16-May-02 7:43
sitebuilderAlbert Pascual16-May-02 7:43 
GeneralRe: String handling book excerpt Pin
Tom Archer16-May-02 7:38
Tom Archer16-May-02 7:38 
GeneralRe: String handling book excerpt Pin
Joao Vaz16-May-02 9:28
Joao Vaz16-May-02 9:28 
GeneralRe: String handling book excerpt Pin
Tom Archer16-May-02 10:45
Tom Archer16-May-02 10:45 
GeneralRe: String handling book excerpt Pin
Joao Vaz16-May-02 11:11
Joao Vaz16-May-02 11:11 
GeneralRe: String handling book excerpt Pin
Nick Parker16-May-02 15:30
protectorNick Parker16-May-02 15:30 
GeneralDynamically creating variable Pin
Ludwig Stuyck16-May-02 2:44
Ludwig Stuyck16-May-02 2:44 
GeneralClosing one application and opening another.... Pin
Pranoti16-May-02 2:08
Pranoti16-May-02 2:08 
GeneralRe: Closing one application and opening another.... Pin
Rickard Andersson2016-May-02 2:48
Rickard Andersson2016-May-02 2:48 

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.