KimKim1's Q&A profile
Visual Studio Team System Modeling tools
First off, I'd like to say I was happy to read about this much needed additon to the VSTS family. Way to go, guys! Now, for my questions: You've said that this version of TSData will not include data modeling features. It follows that many of us will have to integrate existing modeling tools with TSData. Are there any features that can be used for that purpose Will you present best practices and/or how-tos on this subject Does TSData ...Show All
Windows Forms ListView sorting
hi there, i have a ListView on my form. Its 'View' property is set to 'Details' and it has several Column items in its Column Item Collection. I want the user to be able to click on one of the Column headings and see a little arrow facing down (Sort by ascending order) or an up arrow (Sort by decending) similar to Windows Explorer. How does one make this little 'arrow' visable to the user regards, hi Galin, once again thanks ve ...Show All
Windows Forms FTP In window form
dear Sir i need ftp protocol in dot net allah hafiz If you are using Visual Studio 2005, check out the new FtpWebRequest and FtpWebResponse classes in System.Net. If you are using VS2003, FTP isn't natively supported, so you will have to create your own implementation. Refer to the help topic on Pluggable Protocols. ...Show All
.NET Development Unable to modify database data (ADO.Net, C++, ODBC)
I am trying to learn how to use DataSets to edit data in a database using the ODBC .Net provider. I would also like to have an OdbcCommandBuilder buid the SQL commands for me. In this simple example, I created a small MS Access database with two tables (Table0 and Table 1), with a few columns, and populated with a few rows in each. I am able to connect to the database using a DSN (only targetting Table0), query and properly populate a DataSet - ...Show All
Visual C++ Adding bitmaps
How do I add bitmaps to a Visual Studios 2005 C++ program without using The Windows Forms interface or express edition. After adding a bitmap as a resource is there a way to insert the bitmap. Use Bitmap::FromResource() to load the bitmap from a .NET resource, then use Bitmap.GetHbitmap() to create a bitmap you can use with GDI (BitBlt etc) . Cast the IntPtr returned by Bitmap.GetHbitmap() to a HBITMAP handle. ...Show All
Software Development for Windows Vista designer and project template support for C# Express Edition 2005.
Hi, I have installed the SDK package, everything went fine except designer and project template support, there are no templates available when I want to create a new project. Should this be part of the sdk or do I need a separate installer package for this bicmar wrote: Thank you for the answer. When you say ' Visual Studio 2005 designer extensions' are not supported in the Express editio ...Show All
SQL Server "sa" account and domain level rights
Hey everyone, I apologize for the newbie question but I'm looking for the correct answer. We have 4 production SQL servers at this time. When we had originally set them up the "sa" account belonged to the domain administrators group. Since we have a SQL admin team and a domain admin team we would like to remove this privilege. Is this something we can and should do Our SQL servers use mixed mode authentication and some data ...Show All
SQL Server Creating a publication
hi I was following the walkthrough " Creating a Mobile Application with SQL Server Mobile" and when I got to the point where you create a "local publication" I couldn't find the link "Local Publication" in my Object Explorer. I read all the help in books online however id did not tell me how to bring that link there. I did install the replication component using the CD installation. I have SQL Server 2005 Standard E ...Show All
.NET Development Getting Data back out of an XML file
hi i use the following to get some info out of an xml file: dim mycountries=new DataSet mycountries.ReadXml(Server.MapPath("/aspcomm/xml/countries.xml")) ddcountries.DataSource=mycountries ddcountries.DataValueField="value" ddcountries.DataTextField="text" ddcountries.DataBind() the xml file has the following in it: < xml version="1.0" encoding="ISO-8859-1" > <countries> &l ...Show All
Visual Studio Express Editions ArrayList Error (arg out of range)
I am trying to write a simple playing card shuffling routine using the C# ArrayList class. (Yes, I know the conventional swapping routine, but I'm trying to learn this class!) My idea is to create an ArrayList of 52 elements, assigning card values of one to fifty-two (using ints to make it simpler) to each corresponding element. When I need to deal a card, I will generate a random number between one and the number of cards remaining and call ...Show All
Visual Studio Team System SDM: Flow and Extends questions
Hi, While working with SDM S DK , I’ve encountered two problems that I cannot resolve. I am trying to use inheritance in the following manner: I defined application-layer system A with property P1 , and then I defined system B that inherits from system A ( < SystemDefinition Name =" B " Layer =" Application " Extends =" A " Abstract =" true "> ). When I add system B to my AD model I don’t see prope ...Show All
Visual Studio i need to change the login info for my crystalreports during runtime
in my windows application developed with vs2003, i need to change the datasource,username & password for my crystalreports during runtime,using oledb for Oracle Server. How can we setup the service name for oracle here i got more than 60 reports which are to be changed.if i can get how to change the same for one.i can manage the rest.i tried to find the solution on net,but i cudnt.can anyone help me out !! ...Show All
Visual Studio 2008 (Pre-release) XLinq xsi:nil="true"
I was wondering if there was any consideration about providing "first-class" support for indicating that the content of an XElement equates to "nil". The XML Schema spec is pretty clear that you can only use xsi:nil="true" when the element contains no content. But to detect this, you currently have to do a nested if{}: if (x.Element(_SupplierID).Attribute(_nil) != null ) { . if (x.Element(_SupplierID) ...Show All
Visual Studio ToolboxItem attribute not honored by AutoToolboxService in VS 2005
The service that automatically creates toolbox items is not using the correct class: it ignores the ToolboxItemAttribute on the component that specifies which ToolboxItem-derived class to use, and instead creates a ToolboxManagerToolboxItem. The result is a bunch of unusable Toolbox items. We have already logic to populate the toolbox with a correct ToolboxItem whenever the designed class is opened in our graphical root designer. So we h ...Show All
Visual FoxPro VFP 7.0 and ASP.NET
Friends, I developed an application with VFP7.0 and ASP.NET . Every thing is going good except one problem. Once in a while application is crashing when I am executing sql statements and it is giving error like "Object Reference not set to an instance of an object". I tested the connection status and it is good. I am thinking that, it is happening due to some Record Locking mechanisms. My application is intranet application. ...Show All
