Angelo13's Q&A profile
Visual C++ I am a newb: error LNK2001
Hi, I'm very new in visual studio c++. Recently, I'm involved in a school project that requires me to handle some c++ coding. I keep getting this compiler message. --------------------Configuration: multi - Win32 Debug-------------------- Compiling... multiTest.cpp Linking... object.obj : error LNK2001: unresolved external symbol _arVrml97LoadFile ../../bin/multi.exe : fatal error LNK1120: 1 unresolved externals Error exe ...Show All
Windows Forms Customize Setup
I am using Visual Studio .NET 2002 and I am trying to create a setup project foar an application. The setup should allow the user to enter an IP address for an application server. I am using Textboxes (A) for this. My problem is that I am trying to create this setup for different clients, that have different default IP addresses. Currently, I have n setup projects (for each client), but I would like to create only one. I thought of read ...Show All
Visual Studio Team System Release Numbers
For Tasks, bugs, scenarios etc. where is the best place to stick release numbers Somtimes we will have 50 issues in our current product tracker that spans the next 7 releases. Would these be best put into the Iteration field for easier searching Yeah, very easy and it works. (The field is also added to work items created before you added the field to the template) Look at witexport and witimport for help. Alternatively you can use t ...Show All
Visual C# How to combine two arrays?
Here is my problem. I want to add functionality to a class that will allow a static array to accumulate arrays of the same time into one array. basically what I want to do is have the user select several files and collect their file names into an array. I then want to take that array and add it to my class as a static array. then when the user goes to select more files those file names will be added to that static array. Is this possible T ...Show All
Windows Forms Sample Code: TreeGridView - collapsing/expanding DataGridView
I've just started a blog and the first main post is a sample that I wrote to customize the DataGridView to support collapsing and expanding. I call it a TreeGridView: http://blogs.msdn.com/markrideout/archive/2006/01/08/510700.aspx Let me know what you think! -mark DataGridView Program Manager Microsoft This post is provided "as-is" Fantastic code Mark ...Show All
Visual Studio Report Viewer Print Button
Hi all, When press print toolstrip button that provide by report viewer, it will show us the print dialog. Trouble.... How to make it after press print toolstrip button and system will use default printer to print instead of display print dialog. Thanks kendy There is no way to modify the report viewer print button to do what you want. But there are samples that will allow you to print without the pr ...Show All
Windows Forms Icons in TreeView disappear in WinXP
I uses icons in a TreeView. When the program runs in Windows 2003, it looks fine; but the icons disappear when the same program runs in windows xp. The program is built in Whidbey Beta2. In Beta1, this problem does not exist. If You have Application.EnableVisualStyles() in code remove it. It has helped me For more details look this: http://rungesrand.blogspot.com/2007/09/what-happened-to-treeview-icons.html ...Show All
Visual Basic That is Possible? (Collections)
Hi All, please It is possible attach a datareader in a Collection and later having access itens in the Collection Dim mCol As Collection mCol = New Collection 'Sub for populate a datareader... mCol.Add(myDataReader) Dim uItem As OleDb.OleDbDataReader For Each uItem In mCol MsgBox(uItem( "myCol" )) Next Thanks! any help! This is what a datarow is for. I guess you could write you ...Show All
Visual Studio Merging auto-generated code with custom code?
Let’s say you have a DSL combined with a set of wizard and recipes to generate code for a custom framework on which a customer would like to build all future .NET applications. As a developer I start the first iteration of the application development and generate supported implementation artifacts. Then I continue adding my business logic (e.g. code behind “click” events in a form or code in C# classes which skeletons were generated through re ...Show All
Windows Forms Why is VS 2003 .NET Designer mode rendering of screens so slow?
When I add many controls to a screen (a few panels, a bunch of lists, buttons, menus, etc) and open the .h file in designer mode it takes sometimes several minutes to open. Any ideas how this can be sped up It seems to be especially slow when i add UserControl derived controls. Is this expected behavior Is a fix/improvement for this available I have 3 screens that take over 4 minutes to load now so it's getting out of hand. Thanks ...Show All
SQL Server debug
Hello guys! I am trying to debug a sql procedure inside Server Explorer but I can seem to step into each line. When I run the procedure it doesn't stop in the breakpoint I set. By the way I am running in a client pc.. Please help guys! Is this a T-SQL proc, or a SQLCLR proc If it is a T-SQL proc, make sure you ahve opened the proc in VS before you step into it. If it is a SQLCLR proc there are a coupl ...Show All
Windows Forms Another newbie question
Hi, I have a treeview control and when user select a supplier or order from treeview, application will display supplier or order details depending upon user selection. My question is that is it better to open a new form or use panels to display supplier or order info Thanks please please please please let met know of a managed c++ sample using property grid. i've been dying looking for a c++ sample using the pro ...Show All
Windows Forms Saving a picture
I have a picture box that i can draw in using mousePath.AddLine This works well but now i need to save the image into a datadase. Can anyone let me know how to do this And what datatype in the database table should I use What about to save a document in the same table Great example, thanks. ...Show All
SQL Server How to run DTS package/upgrade in SQL 2005.
Hi All, I am following instrucation in the following doc to migrate dts package. http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnsql90/html/SQL05InSrREAL.asp In step 2. Right-click the DTS Packages folder in Solution Explorer and select the Migrate DTS 2000 Package option. This starts the Integration Services Migration Wizard . I don't see "DTS Packages" folder what am I doing wrong. Thank you in advance. Satish Patil ...Show All
Visual Studio 2008 (Pre-release) View sorting does not work for me
Hi, I created a ObservableCollection and all items implement INotifyPropertyChanged . Then I bound this list on a ListView and all updates made to items are displayed correctly. But I want to sort the collection bound to my listview by a property. So I created a ListCollectionView of my ObservableCollection , set Sorting and bound it on my ListBox. Captions are I still updated but my ListBox does not resort even after calling view.Ref ...Show All
