|
Is there anything I should know before converting a large C++ program from VS2005 to VS2008?
Started by Brian R. Bondy on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
I just loaded the project and let VS2008 convert, the projects convert just fine.
Is there a difference in the syntax that you can't just simply recompile? VS will convert the .sln, which I hadn't touched in 10 years to VS2008.
|
|
Hello, Can any one of you help me in converting an windows dll file in a .so file.
Started by Sachin Chourasiya on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit:
Here is yet another link that can help guide you ... .
This may help you get started, after ensuring the code is indeed portable .
You might try re-compiling the source code to the dll to a shared object .
You need to recompile again into an .so file.
|
|
Hi, I am writing some XML data to the stringwriter. I want to pass the values in the stringwriter to the database but when I convert it to a string like
StringWriter.GetStringBuilder().ToString() it is converting all the " (double quotes) to \"
So when...
Started by Jebli on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
Ask your Facebook Friends
|
How do I get what the digits of a number are in C++ without converting it to strings or character arrays?
Started by chustar on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Painful....
In pseudocode
lsd = number mod 10 number = number div 10 next lsd = number mod 10 number = number div 10
etc.. .
Use a sequence of mod 10 and div 10 operations (whatever the syntax is in C++) to assign the digits one at a time to other variables .
|
|
I'm converting existing database driven application from D7 to D2009, therefore I won't be able to use dxGrids anymore. Is there any automatic way to convert dxGrid components to cxGrids? If not, what would you suggest me in order to gain time converting...
Started by Ertugrul Tamer Kara on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Perform the following steps to convert your current project:
1) Install both versions of the ExpressQuantumGrid (v3 and v6) for Delphi6;
2) Convert your old grid's layout to the latest product version (please refer to the "Converting....
|
|
Best practice when converting DataColumn values to an array of strings?
[Edit] All values for certain DataColumn for all DataTable rows to be converted to an array of string?
Started by Ahmed on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
DataRow.ItemArray Property -
http://msdn.microsoft.com/en-us/library/system.data.datarow.itemarray.aspx
Also, which version are you using? You should check out the DataTableExtensions class -
http://msdn.microsoft.com/en-us/library/system.data.datatableextensions... .
|
|
Anyone with pointers to a tool/utility for converting unmanaged c++ to c#? I have tried the http://www.pinvoke.net/ site but I cant find reference to this API AddUsersToEncryptedFile on this question .
Started by Jangwenyi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
By one piece at a time - ideally....
You can then begin to port to C# in a more controlled manor (ie .
To convert each construction (problematic or not) into equivalent C# code, a means to encode those converting the unmanaged C++ code to C++/CLI.
|
|
Is there any Windows commandline tool for converting MP3 to AIF and back? (AIF, the standard format of iTunes(and most Apple products))
Thanks in advance.
Started by TutorialPoint on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You could use it to convert AIFF to MP3.
VLC has a fairly powerful command line interface.
|
|
I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't even compile.
Thanks,
tomek
Started by Tomek on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
To stop a buffer overflow from occuring (where the number you're converting doesn't fit the size/2006/08/30/c-convert-int-to-string/
Most of the above suggestions technically aren't C++, they're C the whole time is to find the best solution....
|
|
What is the process of converting win32 application (a small popup window actually) to win7 gadget? Do I need to convert my exe to activex component, can I still use TForm ?
it would be nice to have support for both Win7 + Vista.
Started by Tom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can useful) Delphi and Active Forms Converting a standard Delphi Form to an ActiveForm Gadgets.
To use your win32 application into a gadget is convert the application to a Activex Control.
|