Click here to Skip to main content
16,015,635 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Image Manipulation Pin
Mekong River23-Jan-06 16:49
Mekong River23-Jan-06 16:49 
AnswerRe: Image Manipulation Pin
Mekong River23-Jan-06 16:55
Mekong River23-Jan-06 16:55 
AnswerRe: Image Manipulation Pin
Fulmine23-Jan-06 21:50
Fulmine23-Jan-06 21:50 
Questionhelp in code Pin
kooldude_cool23-Jan-06 7:43
kooldude_cool23-Jan-06 7:43 
AnswerRe: help in code Pin
Dave Kreskowiak23-Jan-06 15:46
mveDave Kreskowiak23-Jan-06 15:46 
GeneralRe: help in code Pin
akyriako7823-Jan-06 21:42
akyriako7823-Jan-06 21:42 
AnswerRe: help in code Pin
Mekong River23-Jan-06 16:54
Mekong River23-Jan-06 16:54 
Questionc++ to vb.net Pin
vertig073023-Jan-06 6:22
vertig073023-Jan-06 6:22 
i need to convert


#include "stdafx.h"

#using <mscorlib.dll>

using namespace System;

int _tmain()

{


unsigned char a1[16];
unsigned char a2[16];
unsigned int tempWRITE;
//FILE *in = fopen("c:/test.bin","r");
FILE *in = fopen("c:/test.bin","rb");
FILE *out = fopen("c:/new.txt","w");
while(!feof(in)) {
fread(a1,1,16,in);
a2[0] = a1[3];
a2[1] = a1[2];
a2[2] = a1[1];
a2[3] = a1[0];
a2[4] = a1[5];
a2[5] = a1[6];
a2[6] = a1[4];
a2[7] = a1[7];
a2[8] = a1[9];
a2[9] = a1[11];
a2[10] = a1[8];
a2[11] = a1[10];
a2[12] = a1[14];
a2[13] = a1[12];
a2[14] = a1[15];
a2[15] = a1[13];
fwrite(a2,1,16,out);
}

fclose(in);
fclose(out);
return 0;
}





1. Out of clutter, find simplicity.
2. From discord, find harmony.
3. In the middle of difficulty lies opportunity.

Albert Einstein
three rules of work
AnswerRe: c++ to vb.net Pin
Fu Manchu23-Jan-06 12:02
Fu Manchu23-Jan-06 12:02 
GeneralRe: c++ to vb.net Pin
vertig073023-Jan-06 12:45
vertig073023-Jan-06 12:45 
GeneralRe: c++ to vb.net Pin
Fu Manchu25-Jan-06 3:13
Fu Manchu25-Jan-06 3:13 
Question[VB.NET ]Multiple projects Pin
Kim Mostinckx23-Jan-06 5:33
Kim Mostinckx23-Jan-06 5:33 
GeneralRe: [VB.NET ]Multiple projects Pin
bskirkman23-Jan-06 13:49
bskirkman23-Jan-06 13:49 
GeneralRe: [VB.NET ]Multiple projects Pin
Kim Mostinckx23-Jan-06 22:58
Kim Mostinckx23-Jan-06 22:58 
QuestionConvert VB.NET sources into VB6 Pin
marsup5423-Jan-06 5:18
marsup5423-Jan-06 5:18 
AnswerRe: Convert VB.NET sources into VB6 Pin
Dave Kreskowiak23-Jan-06 5:31
mveDave Kreskowiak23-Jan-06 5:31 
GeneralRe: Convert VB.NET sources into VB6 Pin
marsup5423-Jan-06 5:43
marsup5423-Jan-06 5:43 
AnswerRe: Convert VB.NET sources into VB6 Pin
Joshua Quick23-Jan-06 7:13
Joshua Quick23-Jan-06 7:13 
GeneralRe: Convert VB.NET sources into VB6 Pin
marsup5424-Jan-06 0:08
marsup5424-Jan-06 0:08 
GeneralRe: Convert VB.NET sources into VB6 Pin
marsup5424-Jan-06 0:41
marsup5424-Jan-06 0:41 
GeneralRe: Convert VB.NET sources into VB6 Pin
Joshua Quick24-Jan-06 6:56
Joshua Quick24-Jan-06 6:56 
AnswerRe: Convert VB.NET sources into VB6 Pin
Mekong River23-Jan-06 16:59
Mekong River23-Jan-06 16:59 
AnswerRe: Convert VB.NET sources into VB6 Pin
Kedar Potdar1-Feb-06 1:44
Kedar Potdar1-Feb-06 1:44 
GeneralRe: Convert VB.NET sources into VB6 Pin
marsup542-Feb-06 7:29
marsup542-Feb-06 7:29 
QuestionVB.NET , Grab networked drive name Pin
natdoggy223-Jan-06 4:41
natdoggy223-Jan-06 4:41 

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.