4,928 Topics
![]() | |
Perused for years (in the spatial pauses of keeping too busy) - finally thought I'd register. I'm contemplating creating another non-artificial artificial lifeform; my one and only did not kill me with her terrible 2s revision. Presently one of my projects is acting as a facilitator to some corporate employees … | |
hello every one here, hoping u're all doing fine. i am face with a wierd error while trying to encode a class about courses and students ( student is itself a class) i'm give this error, and googling seems of no help! [COLOR="Red"]error C2784: 'bool std::operator <(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> … | |
hi friends, Im doing my project in C#. Now,I want to make a very nice UI for this one.. The UI which i created now is a simple one using visual studio 2008.. Is there any other software by which i can make a very nice UI. | |
I used Visual Studio's tools for reporting memory leaks. Main program uses a dll. In main program it reports the file name and line number: [color=blue] d:\tmp\ali\ali\ali.cpp(47) : {200} client block at 0x003A84C0, subtype 0, 5000 bytes long. Data: < > CD CD CD CD CD CD CD CD CD … | |
i need a third way to do it at compile time without command line but using visual studio editor. at : [url]http://www.csharphelp.com/archives/archive36.html[/url] two ways are as follows: 1.Define in your C# program 2.Define them at command line on compile time Here is example for first way: Example: [CODE]#define TEST using … | |
I am totally stuck. I have worked on this for a week. I clean up the bugs and find more. It didn't look too hard to start with. I have to write an OOP program that displays the default info and then asks users for input. I have two headers … | |
hi, there, i am trying to install IIS in my pc but the OS doesnt want to.it is IIS 6.0.ive been trying to install and the message ive got is that i need to have Windows xp SP1. I feel it is not needed as ive installed in other computers … | |
HI I installed Visual Studio 2008,but I only installed C#.I want to create new database connection,so what I did is in Database connection->Add connection->select Data source But MS Sql server compact 3.5 and MS sql server database File are avaliable in here I cant find the sql native client,only MS … | |
hi, i have a database that needs to add a files url to the database field. the thing i first want to do is create a new directory for the file and add the file to the directory, then add the url linking the file to the new dircetory. i … | |
Hi :) I've been working on a program written in C and C++ for a while now. I built and ran the program and it worked perfectly, then saved it to my USB. I then formatted my computer and reinstalled Visual Studio 2005 professional edition, installed service pack 1 and … | |
Hi Guys, I’m not a professional programmer so maybe you can help me out please… I am using Visual Studio 2005, Visual Basic and a SQL 2005 Database. Everything seems to be going ok but I do need 2 things. 1. How do I “Find” a record. Let’s say there’s … | |
hey guys, im having a little problem here. here's my code so far: [CODE]Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click con = New SqlConnection("Data Source=.\SQLExpress;Integrated Security=true; AttachDbFilename=C:\Users\Carlo\Documents\Visual Studio 2008\Projects\OTTO Payroll System\OTTO Payroll System\OTTOdBase.mdf;User Instance=true") con.Open() Try If CType(Me.ACCESSTableAdapter.ScalarQuery1(Me.UserBox.Text, _ Me.PassBox.Text, Me.PosBox.SelectedItem), Integer) > 0 Then … | |
when i click File->new->Project->ASP.NET web Project->OK in my .Net 2003 IDE i get following error: " Visual studio has detected that the specified web server is not running ASP.Net version 1.1.You may not be able to run ASP.NET web aplications or services" My OS is XP-SP2.I have IIS v5.1 Installed … | |
[B]Hi all, I have a simple question in Add ins .I knew that add ins is supported by visual studio development tool kit .I wrote the following simple code to write to an active document in the [CODE]public void Exec(string commandName, vsCommandExecOption executeOption, ref object varIn, ref object varOut, ref … | |
I created a dataset in the Dataset Designer by draging a database table into it, then I added a new select SQL query to the DataTable. Check the pics I think it helps explain it better. [URL="http://i43.tinypic.com/2qs7707.jpg""]http://i43.tinypic.com/2qs7707.jpg"[/URL] Now the problem comes when I try to use an ObjectDataSource, it sees … | |
Hello, I have been working a week on this program with this stupid bug that gives tons of errors. I have narrowed them down to 4 errors and 2 warnings but I have no idea how to fix the 4 errors. The program is supposed to have two user defined … | |
I'm developing an inhouse application for my School Board. Visual Studio 2005 C# is a work in progress for me, so there's lot's I still don't know. The program I'm developing is meant to run on a network. Buy that I mean i execute the program from of a sever, … | |
I have been trying to make a client server chat application with voice chat ...i'm using visual studio 2008 ...can any1 tel me the components or libraries used to implement voip in .net ? | |
Ok, I'm trying to Create A New File that doesn't exist yet. Basically, I want the user to enter the name of the file and then want VB to create and save the file (currently it will be blank until the user goes back in and reopens it and adds … | |
Hi all, I'm new here. Hello! I am a new comp. sci major and am required to take a beginning course which we learn c++. So far I've been hanging in, but I don't have the greatest teacher to learn from. I've had no formal programming language training. I've actually … | |
I have a C static library that I need to link to a new DLL i'm creating. I'm using Visual Studio 2005, and created a console application that outputs a DLL. But when I try to compile I get unresolved external linker errors: Error 2 error LNK2019: unresolved external symbol … | |
hi I'm trying to execute a stored procedure which returns a datatable my code is: [CODE=asp.net]try { string conStr = WebConfigurationManager.ConnectionStrings[0].ConnectionString; SqlDataAdapter adapter; DataTable ans = new DataTable(); SqlConnection connection = new SqlConnection(conStr); SqlCommand command = new SqlCommand(); command.CommandType = CommandType.StoredProcedure; command.CommandText = "usp_GetUserDetails"; command.Parameters.Add("@UserName", SqlDbType.VarChar); command.Parameters.Add("@Password", SqlDbType.VarChar); command.Parameters["@UserName"].Value = … | |
Hi There I get the following error when clicking on btn This code works perfectly on some machines but does not work on others [code=C#] protected void btnSave_Click(object sender, EventArgs e) { if (btnSave.Text.ToUpper() == "CREATE") this.InsertInvoice(); else if (btnSave.Text.ToUpper() == "SAVE CHANGES") this.UpdateInvoice(); } private void InsertInvoice() { String … | |
Hi all, I've been working with C# for some time now, even created a Mastermind-game yesterday to learn some stuff (Mastermind is a very nice training project by the way, I really had fun coming up with solutions) But while that I ran across a problem that I haven't been … | |
First, I apologize for any concept errors about C++. I am pretty new. I am having trouble iterating through each node of a passed linked list. What I have right now is an implementation file with a few functions. The class is called listClass and has a private member function … ![]() | |
I'm trying to compile C and C++ files into a single executable using gcc. I've gotten my code to compile and run properly using borland and Visual Studio but I can't figure out how to get it to compile with gcc. This is what I've been trying: gcc -c dtio.h … | |
I have a hero sprite which I have implemented in in my game. He walks around in a grass field. Unfortunately, he is surrounded by a white border that is also in the btmap(or JPG in this case). Any idea on how I can get my program to differentiate the … | |
Hi all, i've encountered this trojan while downloading some music using FrostWire thru Sanboxie. NOD32 got it and supposedly got rid of it. But i'm somewhat uncomfortable and i downloaded hijackThis. Some BHOs seem suspicious but i really don't want to mess something up so i'm posting the log. Please … | |
this is my code... not too sure what im doing wrong but its probably something small. im getting errors too. #include <iostream> #include <fstream> #include <string> using namespace std; // void functions void nameFile(ifstream & infile); void openfile(ifstream & infile); void displayScores(int scores); void getData(ifstream & infile, int scores[], int … | |
Hi Guys. I wrote a nice MFC application. This app uses a number of threads and is meant to manage rs232 communication with a microcontroller. When I send or receive data Visual Studio informs me of a [B]Memory Leak[/B]: Detected memory leaks! Dumping objects -> f:\rtm\vctools\vc7libs\ship\atlmfc\src\mfc\thrdcore.cpp(306) : {184} client block … | |
Hi guys, I wonder if you can help? I'm keen to get started as a .NET programmer. I'm half way through a book called 'Head First C#' which deals with Windows Forms programming. However, I think I need to go on a different tack in order to pass the first … | |
Hi gurus, I haven't purchased a pre-built machine for about 10 years; I've always found it more enjoyable to pick-and-choose parts for the machines I spend 8+ hours of my day on. However, the last two machines have caused me some grief. First machine, a dual cpu xeon p4, had … | |
I had 2 assignment that were due tonight and I completed both of them in Visual Studio, but we're required to make sure they compile in linux before submitting them. I'm getting undefined reference errors when trying to compile Assignment3. Assignment2 consisted of marble.h and marble.cpp, runs fine. Assignment3 #included … | |
I have a project where I have to analyze 3 different hashing functions. I cannot get the cyclic shift hash to work with a bitwise OR. Everything looks fine to me am I doing something wrong? [code=cplusplus]int Hash::hash(string key) { unsigned int h = 0; for(int i =0; i < … | |
Thanks in advance for any assistance you can provide me! When I perform a search in Google or Yahoo (i.e. using IE or Firefox) and click on the results, I get redirected to other websites that have nothing to do with the original search. Most of the pages I have … | |
hello every body, is there any mechanism in visual studio 2005 and c# to copy the remote server table and update the local database table with that copied table, please guide me in this topic, step by step to accomplish it, if no than please suggest me what i have … | |
![]() | I am trying to mimic the behavior of Language Indicator pop-up menus (which pop-up when you do left or right mouse click on the Language Indicator), so the foreground window and focus do not change, and it is still possible to use keyboard to select or cancel menu (arrow keys … ![]() |
Hi, I would have replied in the last thread instead of creating a new one again but I have a dial up connection and dad doesn't like me tying up the phone lines at this time in the year. In the last thread I asked how to find the cubed … | |
Help Me, Please..VERY URGENT I have this cenario: I have a form(NewcomplaintForm.vb that will collect informations for ComplaintTable(complaintid, ComplaintType, date, desc, status, recommendation, etc..); ComplainantTable(complainantid, last, first, etc..); OffenderTable(offenderid, last, first, etc..) DutyofficerTable(dutyofficerid, last, first, etc..) and insert data into these tables respectively. when NewComplaint, check for complainant last and … | |
I need to create a table that will display different variables. Is there a canned table control I could use. | |
Doesnt matter if i build, rebuild, clean and do all again, if i want to debug it will ask again and build it before execute the program... I dont know what happened, I have been like a month away from my pc, and now i returned and visual studio(2005 pro) … | |
Hi, I have saved documents into my SQL Server 2005 database and they have been converted to bytes. My web page is made with VB.NET in Visual Studio 2008 with ASP.NET. The following is exactly what I need to achieve; 1. Allow user select document with a button 2. Select … | |
Hi i'm used to working with Visual studio IDE and C#.NET and have just started studying PHP. These are my queries: 1. Is there any IDE like the visual studio for PHP, i mean it was a lot easier dargging and dropping controls in VS. Suggest me one. 2. Is … | |
My Google is hijacked and I need help correcting this. When I click links from a Google query I get redirected to pages other than the Google result I clicked. I have included a MalwareBytes log, the ESET log, and the HijackThis Uninstall list as directed. The two files from … | |
Hi, I'm trying to get [URL="http://www.cgal.org/"]CGAL [/URL]working with VS 2005. So, I installed the [URL="http://www.boost.org/"]Boost [/URL]libraries as well as CGAL and tried to run the following example program: [ICODE]// file: examples/Polygon/Example.C //-----------------------------------------------------------------------// // This is just a simple example that demonstrates how to use the // class CGAL::Polygon_2. //-----------------------------------------------------------------------// #include … ![]() | |
Hi. I am working on my Final for my Intro to C# class so yes I am new and my code is pretty unprofessional probably. We are required to use a array or a class to read addresses from a text file and display them in the GUI. We should … | |
when I'm starting a new project then ASP.NET Web application won't open, It displays this message "Visual Studio.NET cannot create or open the application because no Web server was detected at this URL:'http://localhost/WebApplication1'. Make sure the Web server is installed and running. btw how to install IIS w/o a win … | |
I tried to compile a Windows Forms Application in Visual C# 2008 Express with this source code from the CSharpSchool tutorial at Programmer's Heaven:[code]using System; using System.Windows.Forms; using System.Drawing; namespace CSharpSchool { class HelloWinForm { static void Main () { Application.Run (new MyWindow ()); } } class MyWindow : Form … | |
I am new to asp.net and crystal report. I have installed visual studio professional edition 2008 in my machine. i created crystal report and i brought it in asp.net page. it works fine in my machine. i have only the business objects dlls.i have not installed crystal report i have … | |
I was commenting some VB.NET 2003 code when on a whim I tried this: [code=vb] ' Note the variable is "theta" or keypad alt+233 Dim Θ As Double = 3.14159 / 4.0 MsgBox(Θ) [/code] It compiled and ran fine. Without going into ethical debates, is this sort of thing really … |
The End.