Click here to Skip to main content
15,903,201 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: documentdownload2 Pin
Dave Kreskowiak23-Dec-07 17:33
mveDave Kreskowiak23-Dec-07 17:33 
GeneralRe: documentdownload2 Pin
balakpn23-Dec-07 19:24
balakpn23-Dec-07 19:24 
Generalimage change on mouse over Pin
Eli Nurman22-Dec-07 6:08
Eli Nurman22-Dec-07 6:08 
GeneralRe: image change on mouse over Pin
Christian Graus22-Dec-07 9:22
protectorChristian Graus22-Dec-07 9:22 
GeneralRe: image change on mouse over Pin
Eli Nurman22-Dec-07 10:20
Eli Nurman22-Dec-07 10:20 
GeneralRe: image change on mouse over Pin
Christian Graus22-Dec-07 10:51
protectorChristian Graus22-Dec-07 10:51 
GeneralRe: image change on mouse over Pin
Eli Nurman22-Dec-07 10:54
Eli Nurman22-Dec-07 10:54 
GeneralRe: image change on mouse over Pin
The ANZAC22-Dec-07 12:40
The ANZAC22-Dec-07 12:40 
Source = Image.FromFile("c\test")

Dim imag As New Bitmap(width, height) 'size of the portions you want

Dim rc As New Rectangle(x, y, width, height) 'location from where to take the portions

Dim gr As Graphics = Graphics.FromImage(imag) 'graphics to do the extraction

gr.DrawImage(Source, 0, 0, rc, GraphicsUnit.Pixel) 'the extraction from the source image

Dim ResultImg as Bitmap = new Bitmap(imag) ' the resulting image


It would not be too diffucult to base this process around mouse actions. width would be one third of the images total width, height would be the height of the image. The source image does not have to be from a file, it just was in my original app.
Please check out my articles:
The ANZAC's articles

GeneralRe: image change on mouse over Pin
Christian Graus22-Dec-07 16:29
protectorChristian Graus22-Dec-07 16:29 
GeneralSelected Rows From DataGrid Pin
ejaz_pk21-Dec-07 23:00
ejaz_pk21-Dec-07 23:00 
GeneralRe: Selected Rows From DataGrid Pin
Rupesh Kumar Swami22-Dec-07 2:10
Rupesh Kumar Swami22-Dec-07 2:10 
GeneralRe: Selected Rows From DataGrid Pin
ejaz_pk22-Dec-07 9:21
ejaz_pk22-Dec-07 9:21 
GeneralRe: Selected Rows From DataGrid Pin
ejaz_pk24-Dec-07 22:25
ejaz_pk24-Dec-07 22:25 
Questionplease help me in solving this Problem in Vb.net useing crystel report Load report to fail Pin
Jigneshjpatel21-Dec-07 21:23
Jigneshjpatel21-Dec-07 21:23 
GeneralRe: please help me in solving this Problem in Vb.net useing crystel report Load report to fail Pin
DigiOz Multimedia22-Dec-07 5:51
DigiOz Multimedia22-Dec-07 5:51 
GeneralProblem in using deployed vb.net project Pin
Senthil S21-Dec-07 21:10
Senthil S21-Dec-07 21:10 
GeneralRe: Problem in using deployed vb.net project Pin
Christian Graus21-Dec-07 21:55
protectorChristian Graus21-Dec-07 21:55 
GeneralRe: Problem in using deployed vb.net project Pin
Senthil S21-Dec-07 22:34
Senthil S21-Dec-07 22:34 
GeneralRe: Problem in using deployed vb.net project Pin
DigiOz Multimedia22-Dec-07 6:01
DigiOz Multimedia22-Dec-07 6:01 
Generalcontrol +C and control +V doesn't work on textbox controls. Pin
SekharOne21-Dec-07 20:32
SekharOne21-Dec-07 20:32 
GeneralRe: control +C and control +V doesn't work on textbox controls. Pin
Christian Graus21-Dec-07 21:25
protectorChristian Graus21-Dec-07 21:25 
GeneralRefresh connection or port to Remote DB Pin
nishkarsh_k21-Dec-07 20:10
nishkarsh_k21-Dec-07 20:10 
GeneralRe: Refresh connection or port to Remote DB Pin
Dave Kreskowiak22-Dec-07 4:55
mveDave Kreskowiak22-Dec-07 4:55 
GeneralRe: Refresh connection or port to Remote DB Pin
nishkarsh_k22-Dec-07 20:48
nishkarsh_k22-Dec-07 20:48 
GeneralRe: Refresh connection or port to Remote DB [modified] Pin
Dave Kreskowiak23-Dec-07 4:21
mveDave Kreskowiak23-Dec-07 4:21 

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.