No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
I have a Windows Application which contains functions for Encrypt/Decrypt which is working fine when both the functions are put together as a single code. Now, I wanted to call encrypt and decrypt functions independently of each other, thus, I split the code temporarily in say, function1() and function2() for … | |
Hi all, I am stuck at a very basic problem. I had a quite big function which I broke into 3 parts to make is more specific. Now, there is a part of the code which assigns values to most of the variables... when I execute the program, I am … | |
Hi everyone, I am working on a ASP.NET website and would like to use some functions which are part of a separate C# code. Is it possible to include that .CS file using add items and be able to use the functions. I tried doing it but the code file … | |
Hi everyone, I have a library in C++ ( All source and header files) which was targeted for Linux. Although, the authors say that with some minor changes, it can be compiled on Windows too. Also, when I checked the .CPP files, some do the following code #ifdef WIN32 #include … | |
Hey guys, I am trying to implement something in VC++ and have to use a library for this purpose. This library is in C++ and the authors have provided a seperate download for VC++ How exactly do I use the functions provided in this library in my own code? They … | |
Hi all, I have a library built in C++ targeted for linux platform. The authors suggested that with some minor changes, it can be compiled in windows as well.. This library in turn uses the mathematical library called miracl, which does support VC++ and I was also able to build … | |
Hi, Is there any way of storing some variables, say username for a particular session in ASP.NET. E.g, If we let a user login in a page, then I want him to stay logged in for all the pages he traverses on the server. Currently, I am trying Server.Transfer and … | |
Hi all, I am tying to test the code from the following url [url]http://www.obviex.com/Samples/Encryption.aspx[/url] The following Decrypt code has some issues. It does not give any errors, but the plaintext is not returned either. The corresponding Encrypt code is working fine. [CODE] public static string Decrypt(string cipherText, string passPhrase, string … | |
Hi, I need to convert a string of binary numbers to their corresponding ASCII characters. E.g. 011000010110001001100011 should be displayed as ‘abc’. I tried couple of functions in C# but could not get the desired result. To get a more clear idea of what I need, please visit [url]http://www.theskull.com/javascript/ascii-binary.html[/url] Enter … |
The End.