-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm pretty new to C++/CLI and I am trying to convert a System::String to a System::Char array.
Here's what I have so far:
private: System::Void modeToolStripMenuItem_Click(System::Object^ sender, System::EventArgs^ e) {
Mode frmMode;
if(frmMode.ShowDialog() == System::Windows::Forms::DialogResult::OK){
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here is what I'm trying:
typedef cli::array<int> intarray;
int main(){
intarray ^ints = gcnew intarray { 0, 1, 2, 3 };
intarray::Reverse(ints); // C2825, C2039, C3149
return 0;
}
Compilation resulted in the following errors:
.\ints.cpp(46) : error C2825: 'intarray': must…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I had a working subversion server which used the passwd file which stores passwords in clear text. My requirements changed so that passwords now need to be encrypted. I did everything according to the book to use SASL, or so I believe, but now only the linux command line can authenticate. My OSX…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
We have two Coldfusion servers that have a huge performance difference running the exact same code on the exact same input data. The code in questions instantiates a large amount of CFCs (Coldfusion Components, which are similar to objects in OOP languages).
I compared the two servers by running…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi. I'm writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end() for each thread that exits after using it.
Debugging any given VB.Net project I can see at least…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am using Postgres and gwt 2.0 for one of my applications. I am facing problem connecting to the database. When I try to connect it gives "ClassNotFoundException". Here is what I get when I try to connect to database:
java.lang.ClassNotFoundException: org.postgresql.Driver
at java.net…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
For i am using postgre and gwt 2.0 for one of my applications. I am facing problem connecting to the database. When i try to connect it gives "ClassNotFoundException". Here is what i get when i try to connect to database:
java.lang.ClassNotFoundException: org.postgresql.Driver
at java.net…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have some failing RAM in a server and I ran dmidecode to figure out what tyoe of RAM I needed to replace it with.
The server has 6 RAM slots, 4 of which are in use. When I run dmidecode this is what I get.
dmidecode 2.10
SMBIOS 2.4 present.
Handle 0x001F, DMI type 17, 27 bytes
Memory Device
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm trying to run a simple GWT project where I'm trying to do a simple persitence via hibernate to a HSQLDB database. The database I'm using I have been using for at least 2 years with several osgi applications without any problems. So all I done is reused the same configuration and added a simple…
>>> More
-
as seen on Super User
- Search for 'Super User'
I'm looking for a utility that does exactly what Sysinternals Handle does, but with easily parseable output, preferably CSV. Does anyone know of such a tool? It should be able to list all types of handles, not just file handles.
Thanks!
>>> More