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

Visual Basic

 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
Henry Minute13-Jan-09 9:06
Henry Minute13-Jan-09 9:06 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
sarfarazaliqureshi13-Jan-09 9:20
sarfarazaliqureshi13-Jan-09 9:20 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
Dave Kreskowiak13-Jan-09 10:19
mveDave Kreskowiak13-Jan-09 10:19 
AnswerRe: Unable to Upgrade Vb6 to Vb.net Pin
Dave Kreskowiak13-Jan-09 8:42
mveDave Kreskowiak13-Jan-09 8:42 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
sarfarazaliqureshi13-Jan-09 9:04
sarfarazaliqureshi13-Jan-09 9:04 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
Henry Minute13-Jan-09 9:08
Henry Minute13-Jan-09 9:08 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
sarfarazaliqureshi13-Jan-09 9:11
sarfarazaliqureshi13-Jan-09 9:11 
GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
Henry Minute13-Jan-09 9:25
Henry Minute13-Jan-09 9:25 
In your VB6 code, all that the UnRGB function did was to extract the red, green and blue values from a color.
and put them into clrr, clrg and clrb

UnRGB picImage.Point(r, c), clrr, clrg, clrb

Private Sub UnRGB(ByVal color As OLE_COLOR, ByRef r As Byte, ByRef g As Byte, ByRef b As Byte)
    r = color And &HFF&
    g = (color And &HFF00&) \ &H100&
    b = (color And &HFF0000) \ &H10000
End Sub


Daves code

Dim R As Byte = pixelColor.R
Dim G As Byte = pixelColor.G
Dim B As Byte = pixelColor.B


does that except he has called clrr R, clrg is now G, and clrb is B.

I explained how to get the pixel in a reply to your earlier post.

You now have enough information to solve your problem.
Do not expect us to write it for you.

Do you realise how complex steganography is? If you are unable to grasp the connection between the answers you have been given here and your VB6 code, then you will not be able to cope with steganography.

You might get a better understanding if you go to the Home page of CP and use the search box to look for steganography. There are loads of articles there. I havn't looked at them all but I would expect there to be some in VB.Net

Good luck!

Henry Minute

If you open a can of worms, any viable solution *MUST* involve a larger can.

GeneralRe: Unable to Upgrade Vb6 to Vb.net Pin
sarfarazaliqureshi13-Jan-09 9:32
sarfarazaliqureshi13-Jan-09 9:32 
QuestionSQL Query Syntax Issue Pin
tcd6713-Jan-09 5:59
tcd6713-Jan-09 5:59 
AnswerRe: SQL Query Syntax Issue Pin
Wendelius13-Jan-09 6:28
mentorWendelius13-Jan-09 6:28 
GeneralRe: SQL Query Syntax Issue Pin
tcd6713-Jan-09 6:46
tcd6713-Jan-09 6:46 
GeneralRe: SQL Query Syntax Issue Pin
Wendelius13-Jan-09 7:24
mentorWendelius13-Jan-09 7:24 
Questionwindows service structure/custom actions Pin
captainmogo13-Jan-09 4:42
captainmogo13-Jan-09 4:42 
AnswerRe: windows service structure/custom actions Pin
Wendelius13-Jan-09 6:40
mentorWendelius13-Jan-09 6:40 
GeneralRe: windows service structure/custom actions Pin
captainmogo13-Jan-09 8:12
captainmogo13-Jan-09 8:12 
GeneralRe: windows service structure/custom actions Pin
Wendelius13-Jan-09 8:57
mentorWendelius13-Jan-09 8:57 
QuestionVBA - Changing a name of a Worksheet Pin
Dalek Dave13-Jan-09 4:16
professionalDalek Dave13-Jan-09 4:16 
AnswerRe: VBA - Changing a name of a Worksheet Pin
Dalek Dave13-Jan-09 4:20
professionalDalek Dave13-Jan-09 4:20 
QuestionMaximise already created process Pin
hrishiS12-Jan-09 23:56
hrishiS12-Jan-09 23:56 
AnswerRe: Maximise already created process Pin
EliottA13-Jan-09 2:48
EliottA13-Jan-09 2:48 
AnswerRe: Maximise already created process Pin
Henry Minute13-Jan-09 6:13
Henry Minute13-Jan-09 6:13 
AnswerRe: Maximise already created process Pin
Dave Kreskowiak13-Jan-09 8:24
mveDave Kreskowiak13-Jan-09 8:24 
GeneralRe: Maximise already created process Pin
hrishiS14-Jan-09 17:23
hrishiS14-Jan-09 17:23 
GeneralRe: Maximise already created process Pin
hrishiS3-Feb-09 23:45
hrishiS3-Feb-09 23:45 

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.