4,928 Topics

Member Avatar for
Member Avatar for prahesh

Hi I am creating a Setup and Deployment project using Visual Studio 2008, professional edition. And I was able to build successfully the desired .msi and setup.exe files. Requirement: But I want to create a Setup project which searches registry entries for the pre-installed software (VISA) and install our setup …

0
87
Member Avatar for remuladgryta

Hi, i'm a new learner of the ways of COM and, when trying to recode a code example found in [I]Automating Office[/I] by Lori Turner from just a demo of Word interaction into a c++ class (which i will be using in my program) i come across these linker errors: …

Member Avatar for DJRoss
0
3K
Member Avatar for kgenn

hello :) I just want to ask a favor regarding the code on how to Update the edited data from the gridview. thanks. here's the code. [ICODE]<%@ Page Language="VB"%> <%--AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default"--%> <%@ Import Namespace="System.Data.Oledb" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Private Sub Page_Load() Dim …

Member Avatar for kgenn
0
135
Member Avatar for sarminatorius

Hi, i would like to create a listview in my application like it is in utorrent (and many other applications). With name, status... and they can be resizable. Any ideas how to google for tutorial? How to create it? I am using visual studio 2010 ultimate.

Member Avatar for ddanbe
0
108
Member Avatar for siaswar

I have simple db with 4 tables: class, book, student and studentbook. studentbook has st_id and book_id as foreign keys and an extra field for result. book has some book for classes. I just insert new students. I'm quite beginner in db and don't know how to fill studentbook. should …

0
73
Member Avatar for bussa.forums

in my module i need to print content of dialog box contains some data iam using fox-toolkit and visual studio. i tried with FXPrintDialog,FXDCPrint using FXPrinter classes but am failed and i got error as FXDCPrint no output device has been conntected please help me thanks in advance

Member Avatar for Ancient Dragon
0
43
Member Avatar for taylby

Hi I have a base form that subsequent forms are inherited from. It is a form that is designed to have an appropriate look and feel and really doesn't do anything else. The other froms just inherit it as per: [CODE]public partial class frmLoad : frmPeakBase [/CODE] The only other …

Member Avatar for taylby
0
152
Member Avatar for uchiha203

Hi guys, I just want to ask some help I added a Download Button in every row of my Gridview. Its function is to download the Binary File of the corresponding row. Whenever i run it it gives me the error "Object reference not set to an instance of an …

Member Avatar for uchiha203
0
173
Member Avatar for dre-logics

I have an official version of Visual Studio 2008 Team System. I use Visual Basic 2008 from Visual Studio 2008 Team System. With Visual Basic 2008, I built several Windows application. [B][COLOR="Green"]I want to use Visual Studio 2010 Premium [/COLOR][/B] [COLOR="Red"]Upgrade scenario[/COLOR] I have three Upgrade questions: 1.Can I upgrade …

0
92
Member Avatar for danibootstrap

Hi, I observed a strange bug in VC6 and Visual Studio compiler. For one particular program I needed to declare a heap as [B]u = new double[width * height][/B]; where width = 640 and height = 480 and initialize all the values to 0. So I did [B]memset(arru,0,640*480[/B]);. But to …

0
93
Member Avatar for MasterGberry

Haven't worked with classes for a while, so please excuse all these dumb questions :P Still learning. Let me know if you need more info. 1>c:\users\adam\documents\visual studio 2010\projects\help\pusoy\pusoy\pusoy.cpp(24): error C3867: 'Deck::dealCard': function call missing argument list; use '&Deck::dealCard' to create a pointer to member deck[] is a vector of Card …

Member Avatar for MasterGberry
0
190
Member Avatar for realproskater

here is the question: Write a program that reads names and gpa’s from a text file. The file looks like: James 3.9 Margaret 3.5 Charles 1.2 Jennifer 4.0 Your program sorts the students ascending by gpa, and prints the sorted list including names. To keep the names with the numbers …

Member Avatar for realproskater
0
247
Member Avatar for pucivogel

Can anyone help me out.I can't understand why am i getting this kind of error [CODE]#include <iostream> #include <string> #include<sstream> #include<iomanip> using namespace std; void getDerivative() (double [],int[]); void print_d_Array (double[]); void print_i_Array (int []); int main () { const int polynomsize=5; string sub[polynomsize]; string coefficient[polynomsize]; string exponent[polynomsize]; double coefdouble[polynomsize]; …

Member Avatar for alaa sam
0
149
Member Avatar for starmax

Hello Guys! I just created my first VB.net project using Microsoft Visual Studio 2010 that has database(.mdf) and some forms, here is the video link of my project: [URL="http://www.youtube.com/watch?v=4YBt3vP85kY"]http://www.youtube.com/watch?v=4YBt3vP85kY[/URL] I want my project to be remote/network using lan environment, in what way i can do this? can you please help …

Member Avatar for starmax
0
875
Member Avatar for track&price

I cannot get the my application (AA_Coins.exe) to run on a different PC. I have 2 pc's are using Visual Studio 2010 and Net Framework 4 Client Profile. My .exe works fine on both as expected. I put it on a 3rd PC that does not have VisualStudio with Net …

Member Avatar for Pgmer
0
113
Member Avatar for BEHZADnr

Hi I want add .mdf file in visual studio 2010 but in add conncetion show this error : click this link to show error [URL="http://imagenic.net/viewer.php?file=el5ce80y64r9d9bdspq1.jpg"]http://imagenic.net/viewer.php?file=el5ce80y64r9d9bdspq1.jpg[/URL] use SQL server 2008 R2 and VS2010 and I dont know what Please help me or give me a learning file or website Thanks

Member Avatar for BEHZADnr
0
102
Member Avatar for angele18

hello... I created a website having a database. I realised that I need to set a database username and password. I tried to include it in the connection string but I'm having the below error: Login failed for user ''. The user is not associated with a trusted SQL Server …

Member Avatar for smantscheff
0
68
Member Avatar for Danny1994

Hai Programmers, my title should say it all but im looking for a function where another form (wich pops up when a button in first form gets pressed) will pop up at the top right of the first form. (Would be best with "StartPosition" "Manuel" i guess) ([B]Im using Microsoft …

Member Avatar for Ancient Dragon
0
183
Member Avatar for pucivogel

I want to get this string arrays and turn them into double arrays, but i get this : [CODE]#include <sstream> #include <cstdlib> #include <iostream> #include <string> using namespace std; int main () { string str[3]={"2.5","3","1.5"}; istringstream stm; double d[3]; for(int i=0;i<3;i++) {stm.str[i]; stm >>d[i]; cout << d[i] << endl; } …

Member Avatar for arkoenig
0
217
Member Avatar for Bandit390

Ok, I'm new to asp, but not to visual studio(mainly c#). I have a webform that I want to put buttons, labels, etc on. What is the normal procedure for the layout? Do I create a bunch of divs on the form and use them? Also, when I have a …

Member Avatar for Fortinbra
0
189
Member Avatar for stelman

Hello there, I am trying to create an application which will open once the associated file type is clicked. I have associated my application with the extension .agl, via Visual Studio. When I publish the application and install it, the file is associated properly with my application and when I …

Member Avatar for stelman
0
236
Member Avatar for pucivogel

Hey there!I'm doing this symbolic differentiation program,and i have some problem with the code.The code in the "main" is ok ,but i have problems in the "to_term" function.Can you help me out to find where my mistake is?Please if you have any idea reply me now Thanks. [CODE]#include <iostream> #include …

Member Avatar for pucivogel
0
154
Member Avatar for starmax

Hello Guys!! NickName: RJ or you can call me starmax Age: 24 Location: CNMI Hobby: Hiking, mountaineering, playing guitar, mixing some music... well I'm just a simple person, I love to learn new things. actually I'm working as a Casino Dealer, for 2 years now, I'm having a part time …

Member Avatar for starmax
0
312
Member Avatar for tjm6f4

Hi, I'm pretty new to C# but I'm very familiar with C++ and first off I wanted to know if anyone has a good website with some tutorials for C#. Other than that, I have a few basic questions regarding GUI programming. I suppose one question at a time is …

Member Avatar for Ketsuekiame
0
159
Member Avatar for anishps

We installed SQL server 2008 on my workstation for testing SSRS 2008 and its performance over SSRS2005 But for some reason I am not able to access the reports from website or from visual studio 2008 the error I get is “The item '/CPPROD/UnprocessedInventory' cannot be found. (rsItemNotFound)” I think …

0
46
Member Avatar for mgonzalezwec

How do I specify the default SMTP host within Visual Studio 2005 or within a web project in Visual Studio 2005? I realize this can be done in the web.config file, however I don't want to do it at that level (I would rather it be done at the machine …

Member Avatar for mgonzalezwec
0
207
Member Avatar for SaberExcalibur

I'm using 2005 visual studio. I have made a windows application, using visual basic language along with crystal reports. My crystal reports function well whenever i run it within the unpublish project but the time I published the project the crystal reports always fail. Because it can't find the RPT …

Member Avatar for Luc001
0
165
Member Avatar for ajst

Hi guys and girls, I've decided to pick up C++ again after not using it for 2 nearly 3 years. I've been programming in java and c# in the mean time so my understanding of programming is very good. I've been trying to make a pack of cards but for …

Member Avatar for ajst
0
361
Member Avatar for tuanpq

Dear all, I'm a newbie Outlook Add-in and I have developed a small Outlook Add-in, but now I have an issue with the Add-in. Sample source code is bellow: [CODE] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using Outlook = Microsoft.Office.Interop.Outlook; using Office = Microsoft.Office.Core; using System.Windows.Forms; …

0
107
Member Avatar for shawnhanna

Hello, I am new to C++ windows programming and have only taken 1 class in c++ in my life (I have experience with other languages and OOP). I'm using Visual C++ 2008. and my project is created by the wizard for a Windows Forms Application. (I'm guessing this means CLI …

Member Avatar for shawnhanna
0
700
Member Avatar for Zvjezdan23

[CODE]#include <iostream> #include <string> using namespace std; int main() { // A switch program that shows the user his input choice string word1 = "Achieve"; cout << "Welcome to Your AccuWeather Report Screen." << endl; cout << "Your choices are listed at the bottom." << endl; cout << "Number 1 …

Member Avatar for WaltP
0
136
Member Avatar for axes2t2

Hello, I am using a code to generate an id for a table.But it is giving 'Conversion from type dbnull to type integer is not valid' exception. Now I know that this is due to the table being an empty set.But it works properly if there is already a row …

Member Avatar for axes2t2
0
2K
Member Avatar for BimBam

Hi guys :) I'm currently trying to do something I don't have any experience with, and I did not really understand what ixQuick found for me .. So I try here, hoping someone shouts 'oh, done this million times, it's a piece of cake' ;) So, I'm using Visual Studio …

Member Avatar for BimBam
0
94
Member Avatar for coroll

Hi, I want to send no emails with attachments.But i dont know anything about sending emails.Im using windows 7 visual studio 2008. I was looking for help on internet. According to them I installed IIS.I think it is IIS 7. How to check the version of IIS? Also smtp is …

Member Avatar for coroll
0
311
Member Avatar for dilansankalpa

I have entered a Check box Column to a [B]DataGridView[/B]. When the program runs , we should double click on check boxes in the column ti get it selected. I have add the properties [B]EditOnKeyStroke [/B]and [B]FullRowSelect[/B]. Even after i get this problem. I'm using visual studio 2008. Can anyone …

Member Avatar for jaffar_ramnad
0
90
Member Avatar for bluehangook629

This is the code I have to validate control number that we use to keep track of our inventory. However, I dont know much about Access so I have written and tested this function in VB.Net on Visual Studio. Now, I need to convert my code so it work in …

Member Avatar for AndreRet
0
186
Member Avatar for dalymiddleboro

I'm getting the following error when trying to write to a file: 1>Linking... 1>mit_lesson1.obj : error LNK2019: unresolved external symbol "int __cdecl do_stuff(int,int,int,int)" (?do_stuff@@YAHHHHH@Z) referenced in function _main 1>C:\Users\Michael\Documents\Visual Studio 2008\Projects\MIT\Debug\MIT.exe : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\Users\Michael\Documents\Visual Studio 2008\Projects\MIT\MIT\Debug\BuildLog.htm" 1>MIT - 2 error(s), …

Member Avatar for Fbody
0
149
Member Avatar for teoh

[CODE]class StudentMark { public: StudentMark(); StudentMark(double); double getGrade(); }; #include"grade.h" #include<iostream> using namespace std; StudentMark::StudentMark() { double mark=0.0; } /*StudentMark::StudentMark(double dNewmark) { dmark=dNewmark; }*/ StudentMark::StudentMark { if(mark>=80&&mark=<100) grade='A'; else if(mark>=75&&mark<80) grade='A-'; else if(mark>=70&&mark<75) grade='B+'; else if(mark>=65&&mark<70) grade='B'; else if(mark>=60&&mark<65) grade='B-'; else if(mark>=55&&mark<60) grade='C+'; else if(mark>=45&&mark<55) grade='C-'; else if(mark>=40&&mark<45) grade='D'; else …

Member Avatar for JSPMA1988
-3
213
Member Avatar for arthurav

I am creating a template class for working with matrices and get an error when I try to use the overloaded << operator. This is the code: [CODE]#include<iostream> #include<string> #include<conio.h> using namespace std; template <class T> class matrice { T **a; int m,n; public: matrice(); matrice(int,int); matrice(FILE *); matrice(int,int,T **); …

Member Avatar for vijayan121
0
2K
Member Avatar for blackik

Hi, In what way the Visual Studio generates the 'full resources names' from control resource tag in aspx file? For expample in .aspx file I have a textBox control with resource tag: [CODE]meta:resourcekey="ASPxComboBoxResource5[/CODE]. In resx file I could find this: [CODE]ASPxComboBoxResource5.DisplayFormatString, ASPxComboBoxResource5.DropDownButton.Text, ASPxComboBoxResource5.DropDownButton.ToolTip, ASPxComboBoxResource5.ItemImage.AlternateText, ASPxComboBoxResource5.ItemImage.DescriptionUrl, ASPxComboBoxResource5.LoadingPanelImage.AlternateText[/CODE] and so one... I …

0
110
Member Avatar for toast4lunch

well I followed the steps before posting and it seemed to solve the problem but here is the logs anyway: GMER 1.0.15.15530 - [url]http://www.gmer.net[/url] Rootkit quick scan 2011-01-15 13:46:00 Windows 6.0.6002 Service Pack 2 Harddisk0\DR0 -> \Device\Ide\IdeDeviceP2T0L0-4 TOSHIBA_MK1637GSX rev.DL032C Running: xrsodq7v.exe; Driver: C:\Users\Owner\AppData\Local\Temp\uwldrpob.sys ---- Devices - GMER 1.0.15 ---- AttachedDevice …

Member Avatar for crunchie
0
565
Member Avatar for wballinger

I'm using microsoft visual studio 2010 express edition, and am trying to install a new library (pdcurses). I have all of the header files in the correct folder, and the library correctly includes. However, if I use any functions from the library, I get linker errors about "unresolved externals". Do …

Member Avatar for Ancient Dragon
0
102
Member Avatar for triumphost

Using Windows Form Application from Visual Studio 2010. KK The big problem... When I compile it and run the program, Enter a value into the textbox, it automatically changes to a value the program has defaulted. I'll attach the Program/Project Folder incase anyone wants to compile/run it.. Example: Two textboxes.. …

Member Avatar for triumphost
0
252
Member Avatar for thilinam
Member Avatar for EMT

I have created a dll and I want to use its functions in my other projects using Visual Studio 2008.Kindly Help...:icon_sad:

Member Avatar for EMT
0
146
Member Avatar for Jayson83

Does anyone know how to send a message to another computer in my companys network using visual studio 2008...I would like to be able to list all the computer names on the network and select certain ones and send them a message that would pop up on their screen PLEASE …

Member Avatar for kvprajapati
0
369
Member Avatar for Josef01

does anyone has a sample code or it it possible to fix error in this code I appreciate any advice the error i get : There was an error parsing the query. [ Token line number = 1,Token line offset = 13,Token in error = user ] cmd.ExecuteNonQuery() [code] Imports …

Member Avatar for Josef01
0
705
Member Avatar for neeraj12

[url]http://rapidshare.com/files/370940756/commands.jpg[/url] [url]http://rapidshare.com/files/370940682/toolbar.jpg[/url] My question is that is it possible to have the above two options in Visual Studio Tools for Office (outlook 2007). I am trying to build custom toolbar with lots of mail items for templates or is there a way of building the whole lot in outlook as …

Member Avatar for jhoisington
0
217
Member Avatar for v_janssens

Hi there, Im a structural engineer (so excuse my limited knowledge of C++ and programming in general) and write analysis programs using microsoft visual studio. I've developed a few programs that run within VS but am wondering how I would go about making these stand alone apps/programs anyone could use …

Member Avatar for v_janssens
0
3K
Member Avatar for Rass Saee

The following program compiles (using MS Visual Studio 2010) with no errors or warnings and runs without any error, why? Thanks in advance for explanation. [CODE]#include <stdio.h> int f[3] = { 1,2,3 }; int g[4] = { 12,45,55,65 }; int main(int argc, char *argv[]) { printf("%d\n", f[5]); return 0; } …

Member Avatar for asterix15
0
100

The End.