8,298 Topics
![]() | |
hello i wrote a c++ program, and i wanted to send it to my friends, but everytime i send the exe file to them, they tell me they get the error: "The application has failed to start because the application configuration is incorrect". I tried to put it on rapidshare, … | |
Is there any way in Visual C# 2008 Express to override the formatting defaults? For instance, I want a single space before open parens when I'm passing arguments, but VC# won't let me do that. | |
![]() | Hello forum members, I am majoring in Signal Processing and Machine Learning. I have been using MATLAB for my academic research works for computing and data plotting. My question is if C# can be used as powerful as Matlab for mathematical calculation (matrix computing) and visualization? Also if I can … |
Hello, and welcome... I have a small question about class functions. Before anythig to understand my problem, when I have this file "test.h" which contains: [code=cplusplus] #ifndef TEST_H #define TEST_H class aFile { private: char *src; char *dst; public: void Copy(char *src, char *dst); }; #endif//TEST_H [/code] Also I've another … | |
I am wondering if it is possible to connect to a certain database that i've created Programmatically by Using ADO.NET. I was able to create a new database by code but I was wondering if i can connect to it by code? like accessing it after creating tables and entering … | |
Just a few questions... 1) is C# and visual C# the same language? I downloaded the Visual C# IDE from microsoft, looking to be able to make my own programs using c#. 2) If they are the same, where do I find tutorials to learn to use the language? 3) … | |
Hello, I have a script written in C# (.NET) and within this script I have an IF statement and when this IF statement is TRUE I want to execute the following external script that I placed just under the </head>: <script id='name' type='text/javascript' src='https://xx' integration='jscart-wizard'></script> How can I do that? … | |
Hi Can Anybody can give me code for hotmail / live id friend importer and send mail to friend... | |
Dear Friend, I am working on outlook - c# integration. I am developing a s/w to access all outlook information like to traverse on all folders that exist in Outlook. But now I got stuck because i can’t access the area Email accounts where the email settings are there like … | |
Hi to all. I'm new to all IT stuff but well intersted and I have learn a lots those past few days reading all the Forum tipsand also the Programming FAQ by Iron_Dross. I'd like to become a programmer and I learnt a lot allready but if you can tell … | |
Hi, I ran the code beloew but with different version of the "if" statement. Do either boolean, int or double comparisons. Astonishingly, they all give the same order of timings! I would have assumed that boolean would be MUCH fatser than doubles. Can anyone explain why this is? Moon std::clock_t … | |
Hello guys, I have 2 questions.... 1. I don't know what format is the best for saving screenshots in. I have tried .BMP, its good quality, but 5MB per screenshot is just not acceptable. I have tried .JPG, but quality is too low. TGA is crap (you need apple quicktime … | |
Hello.. I dont know where to start with my question. I have a website that displays products (products retrieved from a database). I use Datalist to display these products and this Datalist is linked to a Command in the C# code. Within this datalist I have <itemtemplate> </itemtemplate> tags Between … | |
Hello.. I dont know where to start with my question. I have a website that displays products (products retrieved from a database). I use Datalist to display these products and this Datalist is linked to a Command in the C# code. Within this datalist I have <itemtemplate> </itemtemplate> tags Between … | |
I have a a function that is written in pure unmanaged c++ . i want to convert this to a dll and use this in a c# application .. Is this possible and if so how? Can anyone please give some sample code to do this or any links. I … | |
This has only one function to solve projectile motion, but it doesnt seem like it works, why? [code] //Richard Chaaya //1-25-09 //kinimatics #include <iostream> #include <conio.h> #include <iomanip> #include <string> using namespace std; int main() { //declare variables double dblVix = 0.0; double dblViy = 0.0; double dblVfx= 0.0; double … | |
Hi friends can any one help me to solve this problem. I want to display the inputs of text boxes by using datadrid control. i am using visual studio2005.I tried with the following code [code] (datagridobject).DataSource=(arrayname) [/code] but this displaying column name as "length" and its values are numeric.How can … | |
I would like to take a poll of what version of C# and .NET you are used to working with. I'll start. C# 3, .NET 3.5. | |
Hi, what are the advantages of C# over C++? I have a little bit of knowledge in both of them, but I am going to choose which one to dedicate most of my time to. | |
Hi, what are the advantages of C++ over C#? I have a little bit of knowledge in both of them, but I am going to choose which one to dedicate most of my time to. | |
Hi members... I have made a simple chat bot in Visual Studio with C#.. Its very basic and basically talks to you, saying a few lines.. I need help urgently sexing this chat bot up, making it say more stuff, etc,... I'm wondering if anyone out their can help me … | |
HI, I have exe file writen in c++ or c and wanna decompile it to source code. Is that possible? If it is, is there any decompilet that can do that? thanks! | |
Hi there, Can C# code , execute commands we write in the cmd window ? i.e: is there a way to let a C# application interact in somehow the command prompt? example : we use the command prompt line: ipconfig to see info about the IP address of the machine, … | |
Which is in higher demand in the job market right now??? | |
Hi, I'm currently learning C# and I had a few basic questions: 1. What is and what is the difference between void and static and return? 2. What are abstract classes? How do they differ from interfaces? 3. How do you use the char variable? Thanks! | |
How to wait for some time while writing to a file. I am appending some text in log file, its giving error as Some other process using this file. How i have to wait untill its free. | |
Hello, Out of fgets() and gets() which function is safe to use and why? Thanks | |
[I]<<snip>> [/I] Original article can be found here: [url]http://www.cs.cmu.edu/~gilpin/c++/performance.html[/url] | |
Hi I am using Visual 6 C++ and try to retrieve a member's all closed trades. i declare a string as below: char str[8000]={0}; But this declaration is ok and the program work fine if the member's record size does not exceed 8000bytes. In order to be able to retrieve … | |
Platform Builder is a tool for building a Windows CE Operating system on your computer and then loading it on a Windows CE device. All this is done through Platform Builder. And I do it all through the Microsoft Visual Stuido Development Environment (IDE). I want to automate the process … | |
as per my opinion c# is better than vb.net even if in the case of web development | |
C PROGRAMMING ASSIGNMENT 1. Express, using pseudo code, the algorithm to compute the nth root of a whole number (for example, the square root of the whole number for is 2). 2. Prepare a flow chart for the above algorithm. 3. The following has to do with the design of … | |
Hi All, "incremental" flag is used for incremental compilation i.e. when this flag is used, csc compiler will compile only those file that have changed. [B]This flag is exist in C# 1.1, but obsolete in C# 2.0 compiler[/B]. Can anybody tell me the replacement of this flag in C# 2.0 … | |
Hi I am completely new to C#, so please bare with me .... What I am like to do is to pass variable values between the methods below, and finally print the results in the last method. I have commented the code with explanation. This is for test purposes and … | |
Any ideas where i can start im really quite lost :( | |
can anyone tell is there any utility like glib-mkenum for windows | |
how to delete the last line of the text file using c#. i applicaiton create a text file ..with 2 empty lines at the end of the File now i just require a method which open the text file and delete the last 2 lines of the text File ..the … | |
Hi My self hardik i am developing CMS system in asp.net with c# in visual studio 2005(framework 2.0), in which i have to provide one facility at user level i.e user can insert clip or movie in his/her content..! so anyone tell me that how can it possible? or is … | |
HI, Im 20f doing course on multimedia game development. Im very new to C++ and not familiar with the codes. Can someone helps assisting as my assignment due soon. I have only left this 1 task to complete.. My lecturere had covered some fstreams chapters, enum struct and string. Assignment … | |
C:\WINDOWS\PCHEALTH what is it and it is hogging the systems. I tried to delete but no access. Please help. | |
I am currently trying to write a program to compute permutations of the array [0,1,2,3,4,5], I need to save all the permutations to another array and I also need the first digit, 0, to be fixed. I have searched through quite a bit of literature on doing this, however I … | |
[CODE]class MyProgram { static void Main() { int[] integers; // declare array integers = new int[10]; // size array } }[/CODE] In which line is the array actually instantiated? | |
Hi, I need to change the file permissions via code of an htaccess file used in WordPress. I've looked far and wide but haven't come up with anything. It's obviously possible since FTP apps can do it. But how I keep asking myself! Thanks in advance for any help, MrGreggles | |
First of all, I have absolutely know knowledge of using C# for communicating with websites. I am under some time constraints so I am trying to crash through it but I getting more lost than anything. What I have is a windows application that a user can build content files. … | |
I am working on an application that requires me to connect to a remote odbc connection. Right now I am currently using an external application called dbtcp that allows me to do this. I would prefer to not have to do it this way. Does anyone know of an existing … | |
Hi there, I am using third party ActiveX control in my application. It requires RecordSet as a input parameter to its method. I am programming my application in C#. When I call the method after creating RecordSet it throws an exception "ActiveX cannot create an object". What is the potential … | |
hi there, is there a browse control in C# windows application form , if so , plz, how can I add it to my toolBox and how can I use it to allow the user to browse any file she wants, if not how can I implement the idea og … | |
I'm still working om 2003 version since company's project is devloping on it. Persons who worked previously on 2003 version kindly highlight the difference or simply provide link for such article with Regrds Dev:idea: |
The End.