4,928 Topics

Member Avatar for
Member Avatar for jcf

[COLOR=#0000ff]Hi. Im doing a program that connects a form to access database. Problem: I have a button that saves all the new information entered in the text boxes I have. When I click SAVE it shows a message that "A new record has been added to the database" but when …

Member Avatar for user23490234
0
106
Member Avatar for llohl

The administrator quit- the site went down- when you login it points you to "mysql" has too many connections. we have done all the obvious mysql fixes and the problem is in the asp/net - the previous developer used visual studio? We need someone to take a look and tell …

Member Avatar for Paladine
0
140
Member Avatar for kcdclan

[code] [COLOR=#0000ff]#using[/COLOR][COLOR=#800000]<System.dll>[/COLOR] [COLOR=#0000ff]using[/COLOR][COLOR=#0000ff]namespace[/COLOR][COLOR=#000000] System;[/COLOR] [COLOR=#0000ff]using[/COLOR][COLOR=#0000ff]namespace[/COLOR][COLOR=#000000] System::Diagnostics;[/COLOR] [COLOR=#0000ff]ref[/COLOR][COLOR=#0000ff]class[/COLOR][COLOR=#000000] B {[/COLOR] [COLOR=#0000ff]public[/COLOR][COLOR=#000000]:[/COLOR] [COLOR=#0000ff]virtual[/COLOR] [COLOR=#0000ff]void[/COLOR] F() { Console::WriteLine([COLOR=#800000]"B::F"[/COLOR]); } }; [COLOR=#0000ff]ref[/COLOR][COLOR=#0000ff]class[/COLOR][COLOR=#000000] D : B {[/COLOR] [COLOR=#0000ff]public[/COLOR][COLOR=#000000]:[/COLOR] [COLOR=#0000ff]virtual[/COLOR] [COLOR=#0000ff]void[/COLOR] F() [COLOR=#0000ff]override[/COLOR] { Console::WriteLine([COLOR=#800000]"D::F"[/COLOR]); } }; [COLOR=#0000ff]int[/COLOR][COLOR=#000000] main(){[/COLOR] B^ b = [COLOR=#0000ff]gcnew[/COLOR] D; b-F(); } [/code] It says identifer not found. I dont know why …

Member Avatar for Narue
0
104
Member Avatar for gbe87memo

Hi, I need to create a program: Hangman. So far we have seen arrays and functions in class but I don't know how to translate the logic into the code. My program has to take the words from an array and randomly select one. The user is to enter the …

Member Avatar for iamthwee
0
98
Member Avatar for gbe87memo

Im using a switch to decide if you guessed a letter [code] [if (guess.Equals(myCharArray)) { switch (counter) { case 0: txt1.BackColor = Color.White; break; case 1: txt2.BackColor = Color.White; break; case 2: txt3.BackColor = Color.White; break; case 3: txt4.BackColor = Color.White; break; case 4: txt5.BackColor = Color.White; break; default: pictureBox1.Image …

0
75
Member Avatar for chetanpbhalerao

Hello, Hope you are doing excellent. I have developed a small commercial application in VB+MSAccess. To make a package I have used, Visual Studio's Package and Deployment Wizard, but it's not fully customized. So, [B]I want a third party FREE-WARE for Package and Deployment. [/B] Please guide me in this …

Member Avatar for chetanpbhalerao
0
93
Member Avatar for c#dummie

how do i sort information in a listbox by name (that is, alphabetical order)? im doing c# programming n using microsoft visual studio .net 2003

Member Avatar for campkev
0
90
Member Avatar for Oxiegen

Hi! I've come across an interesting, and annoying, bug(?) in Visual Studio 2005. I don't know if anyone else has been experiencing this bug, and I don't know if this is something that exists in all versions, but it does in mine. I'm using version 8.0.50727.42. I have set the …

0
71
Member Avatar for ChadW

Hi all. Hoping someone could help me out here. I recently started toying around with ASP.NET web development and had downloaded a small business website starter pack from the MSDN site. I've gone through and made many modifications to the pages (only as they relate to the content of the …

Member Avatar for ChadW
0
85
Member Avatar for denn0069

I have the following code: [code=c]class date { private: unsigned int nDay,nMonth,nYear; static unsigned int nMonthArr[12] = {31,28,31,30,31,30,31,31,30,31,30,31}; //LINE 36 ...[/code] Upon compilation I recieve these errors: n:\courses\8110\Labs\Lab7b\Lab7b.cpp(36) : error C2059: syntax error : '{' n:\courses\8110\Labs\Lab7b\Lab7b.cpp(36) : error C2143: syntax error : missing ';' before '{' n:\courses\8110\Labs\Lab7b\Lab7b.cpp(36) : error C2143: …

Member Avatar for denn0069
0
103
Member Avatar for Izzah

hello friends. i'm still new in vb.net i have a problem while using visual studio 2005 where the '.ctor not a valid identifier' accured when loading the form design and i don't know how to overcome this problem. can you all help me please..

Member Avatar for waynespangler
0
101
Member Avatar for com spec

i am not sure where to post this treat but i know that Visual Stuido Team System can do software development therefore i place it under software development category. ok. my question is i want to know about can i create A Check-in policy in Team System? cause i believe …

0
75
Member Avatar for spefanis

Hey I am just starting to play with some SQL stuff after upsizing a old access database. What i would like to do is be-able to pull information out of the SQL database and display this on a web site. The query i want to use i have built using …

0
53
Member Avatar for Mr Violent

I'm a bit confused on how the precompiled header system works. I'm using Visual Studio 2005 and when trying to include multiple .cpp files in a project, they each, on compile, give me an unexpected end of file error. I have them all set to precompile a header, stdafx.h, and …

Member Avatar for Mr Violent
0
139
Member Avatar for jbennet
Member Avatar for mcosciel

i'm using the included cd that came with my Deitel Deitel Third Edition C++ book. Help / about tells me i'm using visual C++ 6.0 I'm trying to compile a piece of code i wrote in FORTRAN. The code runs and accepts changes to my namelist but does not compile …

Member Avatar for Ancient Dragon
0
92
Member Avatar for Dhruv Shah

Hello Everybody, I want to know that how we can delete the record from the datagrid only, that data should not be deleted from the database. i.e., It should not be seen in webpage,but it should remain in the database. Please help me out soon.My existing code is: [CODE=asp.net] <%@ …

Member Avatar for web_developer
0
100
Member Avatar for Luwigie

Hello there. This is obviously my first post on DaniWeb, as I just found the site in searching for a solution to my issue. I've read over the site rules, as well as the forum rules regarding homework help. Let me start out by saying I am [U]not[/U] looking for …

Member Avatar for Luwigie
0
170
Member Avatar for bnrup

I know absoulutely nothing about compiling source code other than you need MS Visual Studio to compile it. I have the express (free) version of it, can you compile in this version?

Member Avatar for Ancient Dragon
0
155
Member Avatar for wheelz

[code=c] /// // Program; Project2.cpp // Date; // Purpose: // Description: // Input: // Output: // Use: This program is compiled and executed using // Microsoft Visual Studio C++.net 2003 Version 7.1 #include "stdafx.h" #include <iostream> // access input/output stream. #include <string> #include <cctype> using namespace std; int StateNumber(char, char); …

Member Avatar for Ancient Dragon
0
118
Member Avatar for Mohandsa

[B]hi all,iI design database by sql by using visual studio 2005,i need to have pdf or any refrence guide to know how to write select,insert, delete statement ,could you help me[/B]

Member Avatar for GreenDay2001
0
131
Member Avatar for Panachski

Hi, I am a newcomer to Visual Studio 2005 and am having trouble making a timer which will work out the time it takes to download a file. The file is 45 kb and the user can change the speed with a scrollbar, which is called hsbSpeed, from 1 – …

Member Avatar for Panachski
0
105
Member Avatar for foo

Just Started learning Visual Studio and C#. I am at the point in the book where it discusses the use of objects. This is a really confusing subject. What I want to understand is after you've used a class to create multiple objects, how do you make sure that you …

Member Avatar for tgreer
0
143
Member Avatar for aidi.morini

[COLOR=#808080]Hi, [/COLOR] [COLOR=#808080]I’ve written a Windows application in Visual Studio .NET using C++. The main window of my application is a dialog window. I need to display a Save File Dialog window when one of the buttons on my main window is clicked. But my main window is a dialog …

Member Avatar for Ancient Dragon
0
148
Member Avatar for x2012

Hi, im very new to programming. I was just wondering if anyone can help me code a simple program that opens up a few instances of internet explorer when i type a certain symbol (of a stock) in to a text box For example, if the symbol of a stock …

Member Avatar for Godfear1
0
155
Member Avatar for ohart

From what I can gather, it [I]appears[/I] that you cannot access Excel from VB.NET without having Visual Studio 2005 Tools for Office (and a healthy extra sum of money)! Is this really true? There's got to be a way, seeing as you can do it in VB6 without anything extra. …

Member Avatar for ohart
0
119
Member Avatar for XYXOXY

Hi all... I have an issue that I've been puzzling over here and there for about a week. I should say that I'm new to ASP.NET and new to this forum. I Had some experience with VB6 some years back then my career took a left turn. Now I'm back, …

Member Avatar for blacklocist
0
105
Member Avatar for DmD

Hi, I'm making a program that is has to send texts from textboxes to a external device wich shows them on leds. But the LED's cant show every character(takes to much time :P), so i'm tasked to make a filter on the textboxes to check if they contain any invalid …

Member Avatar for Ancient Dragon
0
132
Member Avatar for Lutzee

Hi there, im a c++ noobie. I have a class called node. Node has a data member id. When i try and access id in the obect named f outside of main visual studio 2003 gives me the errors: : error C2065: 'f' : undeclared identifier error C2228: left of …

Member Avatar for Salem
0
124
Member Avatar for mishmash8888

Hi I hit the wall with ASP.NET2 letarally immediately.. I just installed VS2005 and created the first Web Site project. It wouldn't compile with two almost idential errors showing in the Error List: Error 1 C:\Documents and Settings\Misha\My Documents\Visual Studio 2005\WebSites\WebSite1\Default.aspx: ASP.NET runtime error: Request for the permission of type …

0
57
Member Avatar for j1979c

[B]Well... just post this up in case you guys are having the same problem that I did for a couple of weeks. I've been experiencing this everytime I shutdown my com. aspnet_state.exe. Application Error. The instruction at 0x6a2a2fec referenced memory at 0x0000000c could not be "read". Click "OK" to end …

0
84
Member Avatar for DmD

So I'm working on a program where you fill in some textboxes and press a button to generate a .txt file with the texts in it... I'm working in Visual Studio Express (C++) The only thing i have so far is: [code] [COLOR=#0000ff]private[/COLOR][COLOR=#000000]: System::Void btnAdd_Click(System::Object^ sender, [/COLOR][COLOR=#000000]System::EventArgs^ e)[/COLOR] [COLOR=#000000]{[/COLOR] [COLOR=#0000ff]char[/COLOR][COLOR=#000000] …

Member Avatar for Nick Evan
0
1K
Member Avatar for aparnesh

Sometimes when I am trying to package a project, I am getting the message 'Dependency File for <some File> could not be found. If you are sure there is no external dependency Click OK' etc. Interestingly, the same setup (same set of Visual Studio CDs) installed in a different machine …

0
61
Member Avatar for stealthdevil

Hello, I'm trying to write some vb.net code that communicates with a device attached to the USB port. It uses a serial adapter. Can anyone help me out with this? I've looked all over the net. I'm using Visual Studio 2005.

Member Avatar for stealthdevil
0
44
Member Avatar for aidi.morini

[COLOR=#808080]Hi,[/COLOR] [COLOR=#808080]I’m using Visual Studio .NET 2003 and my application is a dialog window, with some buttons and a picturebox. I’ve activated the maximize window option and I’d like that when the window is maximized the picturebox will enlarge to occupy the same percentage of the window as in normal …

Member Avatar for aidi.morini
0
198
Member Avatar for j1979c

Has anyone noticed that...if you create a ms access database with "Password" as one of the table's column name.... You can't make a data insertion through sql statements via oledb (no rows are affected)? like : insert into employees(password) values('asd32f1asdf') wasted me 1 1/2 hours trying to debug the thing …

Member Avatar for j1979c
0
103
Member Avatar for dev.cplusplus

Hi to all, I don't now if this is the rigth place, but I will ask anyway. I'm trying to improve the performance of my ISAPI application (written in C++), I'm looking for information to read in the web but I dind't found much, I was wandering I you have …

Member Avatar for dev.cplusplus
0
90
Member Avatar for KikinO

Hi everyone, I'm doing my final year project now and I'm needed to use ASP.NET 2.0 and Visual Studio 2005 to do the project. I've never learnt anything about it and I've a big problem with the project. At this moment, I'm trying to do an edit page where user …

Member Avatar for Blah Blah
0
126
Member Avatar for theUnNown1

Folks, I need to write a small application that runs on a Windows Mobile 5 based device. All I need it to do is listen to a port and return whatever it sees. I have searched all over and can't find a good resource for this. I have found many …

Member Avatar for ~s.o.s~
0
92
Member Avatar for theUnNown1

Hi folks. I'm new to the board and I sincerely apologize if this has been posted time and again. I did search but couldn't find an answer. I am starting to program for the Symbian OS (never done it before) and have Visual Studio 2005 at my disposal. I've read …

Member Avatar for ~s.o.s~
0
122
Member Avatar for furjaw

I have been debugging my application for 6 months. Now, when I try to run it I am getting "under the default settings SQL Server does not allow remote connections." My computer is not on a network. I recently went from Visual Studio 2005 Express Edition to the Professional edition. …

Member Avatar for furjaw
0
109
Member Avatar for stealthdevil

Hello, I'm trying to extract some data from a scanner. The scanner works much like a jump drive, in that it stores info when you scan then you hook it up to a USB port to check the data. The scanner is a "CS 1504 Consumer Memory Scanner." I was …

0
76
Member Avatar for Toulinwoek

If you are really completely new to programming, or if you have done a little bit of programming some time ago, you might be interested in using the [B]Visual Studio Express Edition[/B] products. However, even though Microsoft says these products are aimed at novices and hobbyists, their definition of "novice" …

Member Avatar for Toulinwoek
0
113
Member Avatar for FireSBurnsmuP

Alright. So I download Visual Studio 2k5 in 2 discs from my college software site. (I don't particularly want to use VS2k5, but I want to have it around JIC.) I go and map them to my virtual drive, and they autoplay. Great! I'll install and be on my way! …

Member Avatar for FireSBurnsmuP
0
78
Member Avatar for complete

Included file not found during compile time. This must be an easy question for you to answer. I have a header file (basetsd.h) that is located in the C:\Program Files\Microsooft Visual Studio\VC98\Include directory. Where do I set the path to this header file? I don't want to hard code it …

Member Avatar for FireSBurnsmuP
1
181
Member Avatar for SOLO13

Im planning in buying this. Is this all I need to start coding? Thanx Overview [B]The Visual Studio® 2005 Standard Edition from Microsoft®[/B] is a comprehensive, high productivity professional development environment for individual developers for building enhanced performance, multi-tier applications for Windows®, Web, and common consumer mobile devices. It allows …

Member Avatar for Ancient Dragon
1
112
Member Avatar for Flay

I allready asked a question about this inside JoBe's Thread about the stl <map> ([URL]http://www.daniweb.com/techtalkforums/post252520-10.html[/URL]), but maybe it's better if i make a new thread about it. The problem is, when i try to use <map> inside my project i get 2 errors: C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\map(16) : error C2143: …

Member Avatar for Flay
1
100
Member Avatar for Flay

I have a question about the map-question JoBe asked at the start of this post. I'm also trying to build a program using <map>, but when i compile i get error that point to code inside the MAP-file. I saw your post here, and i tried your small program, but …

Member Avatar for GloriousEremite
1
281
Member Avatar for mohammadrikaz

:cheesy: Hi guys. My name's rikaz but call me nastyriky pleez!. I jst signd up. Im a web developer/programmer.I signd up cuz i think we can master our profession by sharing our problems n Idias.I use .NET teknologies , dreamweaver , MS SQL server programming , raw html , Coldfusion. …

Member Avatar for happygeek
1
24
Member Avatar for linq

pop out so many errors, which seemed don't even exist: --------------------Configuration: 12 - Win32 Debug-------------------- Compiling... StdAfx.cpp c:\program files\microsoft visual studio\vc98\include\winuser.h(3) : error C2143: syntax error : missing ';' before '.' c:\program files\microsoft visual studio\vc98\include\winuser.h(3) : error C2501: 'winuser' : missing storage-class or type specifiers c:\program files\microsoft visual studio\vc98\include\winuser.h(3) : …

Member Avatar for ~s.o.s~
1
320

The End.