917 Topics

Member Avatar for
Member Avatar for walmsles

Hi I have created my website in Visual Studios and it is connected to an Access database, i now need to create automatic email and login without being connected to a server... Any ideas how to create a login which is connected to the access database? Plus i need my …

0
69
Member Avatar for artikapri

I wanted to know if there is a function in visual studio C++ 2005, that is called on if your mouse hovers over something, and how to use it?

Member Avatar for Ancient Dragon
0
43
Member Avatar for aig3

I have created a form in which there are various values such as Name, Address, Date of Birth etc. The user is also allowed to select an image in a picture box. I want to insert these values along with the Image into database in appropriate columns. Any help is …

Member Avatar for fatihpiristine
0
402
Member Avatar for missconfused

hi... i am currently developing a reservation system which has a map locator using visual studio 2008.. the scenario was this, when the user click in any of the amenities available and a transaction was completed, the color would change. I was able to change it but if you check …

Member Avatar for missconfused
0
64
Member Avatar for artikapri

i hav 2 forms Form1 n Form2 in visual studio c++ 2005.i called form2 from the form1 thru a button which is in form1. Using the following code form2 opens but form1 is still visible behind form2. [code]Form2().ShowDialog(); Form2().Activate(); Form1().Close();[/code] i want only form2 to be visible .how can i …

Member Avatar for jephthah
0
48
Member Avatar for swinefish

I'm having an odd issue with reading the output of a process in VS2010. I have redirected all the necessary streams as I should ([icode]p.RedirectStandardOut = true[/icode] etc) and getting hold of the standard output and placing it in a another stream is no problem. However, when I read from …

Member Avatar for swinefish
1
119
Member Avatar for GooeyG

Whenever i type in code, Visual Studio puts an dot or a tab(->) in between code.I tried uninstalling and reinstalling Visual Studio, but that didn't do anything.I'm not quite sure what i did and i can't find a way to undo it. Thanks! P.s.-I tried to copy and paste the …

Member Avatar for GooeyG
0
84
Member Avatar for napkinbob

Hello. I want to copy a file from a UNC path (ex: \\comname\dirname\filename.txt) to a local destination (c:\outputdir) I have no compile errors, but when I run it, it throws an exception (System.IO.DirectoryNotFoundException). I'm absolutely sure the destination existst (it's referencing the destination directory). I've tried doing it with system.io.file.copy(source,dest) …

Member Avatar for fatiza
0
733
Member Avatar for bluem1

Team - Could someone please tell me I haven't lost my mind? I have done relationships in the past but now they don't seem to work. Have I gone dumb? Creating a winform, using VS2008, sqlexpress & vb.net. My dataset looks like this: -------------------------------------------- Table 1 - BranchInformation BranchID - …

Member Avatar for bluem1
0
161
Member Avatar for Kombat

Ok so for my program it prompts the user to enter 32 bits each separated by a space. But while debugging I would like to be able to load a txt file or something that contains the 32 bits instead of having to enter it each time I test it. …

Member Avatar for WaltP
0
78
Member Avatar for ross1664

I particularly like the Publish facility within VS 2008 (VB). What I actually want to do is use the same facility for a Spreadsheet. I.E. I have a Spreadsheet with a chunk of VBA code behind it. Is there anyway to incorporate the spreadsheet into a VS 2008 VB project …

Member Avatar for kvprajapati
0
206
Member Avatar for moonwalk

hi , is there a soft that can convert a visual c++ project to c++ builder ??? I've tried a tool that comes with c++ builder but with no result . thanks

Member Avatar for Ancient Dragon
0
153
Member Avatar for abrogard

I'm just learning C# and I'm using MS Visual Studio for that and a website with tutorial stuff. I've written my first little app which just does a simple calculation on some figures input by the user and outputs the result. It is a console app at present. Now I …

Member Avatar for Mike Gale
0
193
Member Avatar for hamza547
Member Avatar for DevC++4.9.9.2

Hello, I am working with visual studio 2008 and an external website host. The real issue is that I am trying to add a "data connection" from the mysql server on my host to visual studio. On the website host mysql is already installed and running, a Database has been …

Member Avatar for kvprajapati
0
87
Member Avatar for anthony5557

When writing programs with class declarations you need to write a header file with the .h extension. In Microsoft Visual Studio 2008 where do you enter this bit of code? I know how to start a .cpp file but don't know where to put the extension so I can call …

Member Avatar for anthony5557
0
90
Member Avatar for Kenyaweb

Hello, I'm searching for something that can be used for our side navigation that is better than TreeView Control in Visual Studio for .Net. Any suggestions?

Member Avatar for kvprajapati
0
82
Member Avatar for Manswab

i need VB6 & visual studio 2008 software...Any one please give me the link to download this softwares....

Member Avatar for Manswab
0
53
Member Avatar for Manswab

i need VB6 & visual studio 2008 software...Any one please give me the link to download this softwares....

Member Avatar for Bob_180_Bob
0
85
Member Avatar for yun

pdcurses works well with code::blocks but is there any way to use pdcurses with visual Studio, plz help.

Member Avatar for miguelbezerra
0
2K
Member Avatar for ilyaz

I need to develop a C++ DLL in a legacy system, so I have to work with Visual Studio 6.0. The project I am working with was copied from a "template" project that someone created a long time ago. I copied it, made lots of changes then realized I also …

Member Avatar for Ancient Dragon
0
198
Member Avatar for royshoa

Hello, I am using the Visual Studio Web Developer 2008 for programming in VB.NET and i have some problems: 1. Sometimes it stops highlighting the text. 2. Is there an option to refresh the Intellisense of the page? 3. When i am including files to my page, its say variable …

0
49
Member Avatar for royshoa

Hello, I am using the Visual Studio Web Developer 2008 for programming in VB.NET and i have some problems: 1. Sometimes it stops highlighting the text. 2. Is there an option to refresh the Intellisense of the page? 3. When i am including files to my page, its say variable …

0
50
Member Avatar for itzshaheer

I made a query for inserting a value from text box to MS ACCESS db [CODE] sql = "INSERT INTO Equipment (port_number,display_name,equipment,tonnage,user_privilage) VALUES (" & CLng(txtPort.Text) & ", '" & CStr(txtDisplay.Text) & "', '" & CStr(txtCA.Text) & "', " & CLng(txtTonnage.Text) & ", '" & CStr(cmbUser.Text) & "')"[/CODE] Actually I …

Member Avatar for vbdotnetlover
0
148
Member Avatar for mike.p.poulin

Hi Everyone, i'm hoping that someone can help because i'm a c-sharper who's a little confused in the land VC++ :) I have a set of older c++ files (cpp) that i found on the web and I need to consume them from c#. So, i create a c++ class …

Member Avatar for Gibson_Junk
0
219
Member Avatar for ThomasII

Hello- I am trying to create a program that will allow a user to enter in checking or savings data; date, type of transaction (deposit or withdrawl), display the previous balance and the new balance based on the new transaction entered. I cannot figure out how to locate the element …

0
95
Member Avatar for bkruep

I have a quick question with visual studio. This is the first program I have ever tried with the 2010 version and get the following error... 1>------ Build started: Project: test, Configuration: Debug Win32 ------ 1>Build started 1/17/2010 4:53:30 PM. 1>_PrepareForBuild: 1> Touching "Debug\test.unsuccessfulbuild". 1>ClCompile: 1> All outputs are up-to-date. …

Member Avatar for jbennet
1
147
Member Avatar for kdee

Dear friends! Can anyone tell me how can I connect an additional data query I created inside the tableadapter (inside dataset-editor) to a combo box list? So I will actually see the data in list. I managed to create a query inside tableadapter, which only contains data from one column …

Member Avatar for hunainbutt
0
222
Member Avatar for tqmd1

Dear Experts On Desktop, I mostly use this erro message What is this, how to get rid of it? --------------------------- Visual Studio Just-In-Time Debugger --------------------------- An unhandled win32 exception occurred in c.exe [5492]. Just-In-Time debugging this exception failed with the following error: No installed debugger has Just-In-Time debugging enabled. In …

0
66
Member Avatar for jbkar2

Hi i am unable to install visual studio 2008 from a DVD. If i put in the DVD my computer hangs and when i check the CPU usage it goes up to 50% and stays there and i cant even eject the DVD. my only option is to restart the …

Member Avatar for edssa
0
149

The End.