Hi,
I have a SQL Server 7 backup file with .bak extension. It includes a database.
I want to make it working on SQL Server 2000. How can I restore the backup? I searched for it but there is no satisfactory suggestion.
Thanks..
User Profile
Collapse
-
How to restore sql server 7 backup to sql server 2000?
-
Cannot properly return unsigned char*...
Hi everyone,
I have a problem in returning an unsigned char* from a function.
In the main function:
string name = "yabansu";
unsigned char* arr1 = name.c_str();
cout << arr1 << endl; //Correctly prints "yabansu"
Let's say I wrote a function called StringToBytes for doing the same thing above as the following:
unsigned char* StringToBytes(s tring... -
To make more clear, I need the following two functions:
1. a function takes a string parameter and returns the unsigned char array representation of the string
2. a function takes a unsigned char array parameter and returns the string representation of the array -
Hi willakawill,
I am working on a basic client/server application. Here, it is supposed to encrypt some data and send the encrypted data to each other in xml packets.
The encryption algorithm I used, takes byte array as argument and gives byte array as output. Since the resultant byte array cannot be directly inserted into the xml packet, I need to convert it into a string. Also, the other side needs to convert it into the byte array...Leave a comment:
-
How to convert "string" into "byte array" and vice versa?
Hi all,
I think most of you probably know the two .NET framework functions, namely Encoding.GetByt es(string) and Encoding.GetStr ing(byte[]), to convert string into byte array and vice versa.
Now, I want to do the same thing in pure(unmanaged) C++.
I searched the Internet but could not find any satisfactory solutions. I am really in need of help! Is there anyone to explain how I can implement these functions... -
Thread Application cannot be closed completely...
Hi all,
I use simple threads in my C# application which is a Windows Application having a simple form that contains a start processing and a stop processing button. Program works fine.
But when I try to close the application by clicking the stop processing button, the process does not end even the form closes. In the task manager, that process is seems running in background. I then have to kill that process in order... -
Asynchronous Sockets in C++?
Hello,
I want to use asynchronous sockets in pure C++(in Windows platform).
Is there anyone to tell me how to do it or at least show me a basic example?
The external libraries are appreciated too. -
Ok, I have just found the answer.
If somebody encounter the same problem, here is the answer:
First, click on the "focusTraversal Policy" property of the selected Composite in the "GUI Properties" view (this property may be in the "Hidden" category - you can right click on it and move it to the "Basic" category) and click on the editor button to display a popup dialog with instructions...Leave a comment:
-
How to set tab order in Eclipse with Jigloo Builder?
Hi guys,
There are many text fields and buttons in my java application. I need to manually set the tab order of each object. What is the way of doing it?
Thanks... -
Receiving data sent from a C++ socket...
Hi,
In C++, I wrote a small send function which sends a string through a socket as the following:
void Send(string input)
{
char buffer[512];
strcpy_s(buffer , input.c_str());
if(send(sock, buffer, sizeof(buffer), 0) == SOCKET_ERROR)
return;
}
I want to receive the above data in C#, but how? I tried many code snippets but none of them worked.... -
A Simple C++ XML Parser ?
Hello XML Lovers,
I am new to XML and looking for a simple C++ XML Parser.
Waiting for your suggestions...
Thanks! -
How to convert string to const unsigned char* ?
Hi,
I just want to know if there is a way of converting a string variable into a const unsigned char pointer. Alternatively, I expect a blabla() function as the following:
string str = "Hello";
const unsigned char* ptr = blabla(str);
Thanks...
yabansu -
How to fix Incremental Link Error in VS2005?
Hi all,
I implemented a basic client application. It communicates with server and works properly. Building processes succeed just by giving the following warning:
LINK : D:\DOC\Visual Studio 2005\Projects\C lient01\Debug/Client01.exe not found or not built by the last incremental link; performing full link
This warning occurs when building/rebuilding the project after cleaning the intermediate and output... -
How to convert string to byte array and vice versa?
Hi all,
This is my first message!
Using C++ standard libraries, I want to convert a string to a byte array and a byte array to the string. How can I do that?
I did it in C# .NET as the following:
Code:string msg = "Hello!"; byte[] buffer = new byte[msg.Length]; System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); buffer = encoding.GetB
No activity results to display
Show More
Leave a comment: