Click here to Skip to main content
15,889,876 members
Home / Discussions / C#
   

C#

 
AnswerRe: crystal report with Access Pin
Judah Gabriel Himango7-May-07 3:58
sponsorJudah Gabriel Himango7-May-07 3:58 
QuestionDataGridView Pin
sayed836-May-07 23:45
sayed836-May-07 23:45 
AnswerRe: DataGridView Pin
Ch_Shahzad iqbal6-May-07 23:54
Ch_Shahzad iqbal6-May-07 23:54 
QuestionDll reference problem Pin
vamsimohan216-May-07 23:34
vamsimohan216-May-07 23:34 
QuestionRe: Dll reference problem Pin
Sandeep Akhare6-May-07 23:53
Sandeep Akhare6-May-07 23:53 
QuestionRe: Dll reference problem Pin
vamsimohan217-May-07 1:14
vamsimohan217-May-07 1:14 
AnswerRe: Dll reference problem Pin
AFSEKI7-May-07 1:25
AFSEKI7-May-07 1:25 
GeneralRe: Dll reference problem Pin
vamsimohan217-May-07 1:37
vamsimohan217-May-07 1:37 
Thank you so much for the response guys.
Here below is the peice of code which i tried it but failed Frown | :-(

Assembly SampleAssembly;
System.Reflection.AssemblyName objName = new AssemblyName();
objName.CodeBase = "D:\\Debug\\Utilities.EncryptParm.dll";
SampleAssembly = Assembly.Load(objName);
Type[] Types = SampleAssembly.GetTypes();

foreach (Type oType in Types)
{
Console.WriteLine(oType.Name.ToString());
if(oType.Name == "EncryptParm")
{
string[] encryptValues = {"4865","78043","GABRIELEZZ"};
string encryptKey = "CF2ASP?73ejb01";
Utilities.EncryptParm encryptor = new Utilities.EncryptParm();

string encryptedId = encryptor.Encrypt( encryptKey, encryptValues);
Console.WriteLine(encryptedId);
Console.ReadLine();
}
}

Please rectify me for any correction

Thanks In Advance

GeneralRe: Dll reference problem Pin
andre_swnpl7-May-07 2:46
andre_swnpl7-May-07 2:46 
AnswerPLS READ MY PREVIOUS ANSWER!!! Pin
AFSEKI7-May-07 20:58
AFSEKI7-May-07 20:58 
GeneralRe: Dll reference problem Pin
Colin Angus Mackay7-May-07 3:36
Colin Angus Mackay7-May-07 3:36 
AnswerRe: Dll reference problem Pin
AFSEKI7-May-07 22:47
AFSEKI7-May-07 22:47 
GeneralRe: Dll reference problem Pin
Colin Angus Mackay8-May-07 6:32
Colin Angus Mackay8-May-07 6:32 
AnswerRe: Dll reference problem Pin
Sandeep Akhare7-May-07 1:25
Sandeep Akhare7-May-07 1:25 
Questionxml remove child Pin
justintimberlake6-May-07 23:22
justintimberlake6-May-07 23:22 
AnswerRe: xml remove child Pin
Stefan Troschuetz7-May-07 0:08
Stefan Troschuetz7-May-07 0:08 
Questionbooks on c# 2 Pin
mahmoud mohammed6-May-07 23:16
mahmoud mohammed6-May-07 23:16 
AnswerRe: books on c# 2 Pin
Colin Angus Mackay6-May-07 23:25
Colin Angus Mackay6-May-07 23:25 
AnswerRe: books on c# 2 Pin
Sandeep Akhare6-May-07 23:34
Sandeep Akhare6-May-07 23:34 
AnswerRe: books on c# 2 Pin
Christian Graus7-May-07 1:24
protectorChristian Graus7-May-07 1:24 
GeneralRe: books on c# 2 Pin
Dave Kreskowiak7-May-07 4:23
mveDave Kreskowiak7-May-07 4:23 
AnswerRe: books on c# 2 Pin
Vega027-May-07 5:33
Vega027-May-07 5:33 
QuestionReading Excel Sheets in C# Pin
meeram3956-May-07 23:09
meeram3956-May-07 23:09 
AnswerRe: Reading Excel Sheets in C# Pin
blackjack21506-May-07 23:15
blackjack21506-May-07 23:15 
GeneralRe: Reading Excel Sheets in C# Pin
meeram3956-May-07 23:40
meeram3956-May-07 23:40 

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.