sasseen's Q&A profile
Visual Studio dataset Visualizer
Hello, I am using the DataSet.ReadXML() method to fill a dataset. I need to be able to debug this dataset and take a look at the rows. I have read articles about the DataSet Debugger, but I do not seem to have that feature in my Visual Studio, I am running VS2005 with the .NET 2.0 framework. I should mention I am developing a Pocket PC application. Why cant I use the DataSet Visualizer Please help, thanks Ok I see, so there are different types of debuggers depending on the type of application I just thought they would all have the same features. Thanks for the info ...Show All
.NET Development Populating a combo box in VB Express with table data
I have just installed VB Express and am trying to populate a combo box with the rows from a table. In VB6 you would define a db connection, a recordset and a SQL string and use the additem method within a Do while not EOF loop to populate the combo box. How do you do this in VB Express Hi Clive, does this help http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=249090&SiteID=1 Alex. ...Show All
Windows Forms Adding named text objects to a report, in order to manipulate dynamically...
Hi, I'm really new to Crystal in VB.NET, and I've got my report almost done. But I have to add a couple of boxes onto the report that will be filled from a User Defined function from SQL Server. So, I add a text object, but can't name it in order to change it during runtime. (Ex. cr1.txtName.Text = 'Test').& ...Show All
SQL Server Import an mdb file
Hi everyone, I have an mdb file that I want to import using sql server 2005 express edition. I am using the Management Studio Express and have had no success. Thanks in advance Management Studio Express does not include Import/Export functionality, but Access does. See my answer elsewhere in this forum: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=295865&SiteID=1 . Regards, Mike Wachal SQL Express team ---- Check out my tips for getting your answer faster and how to ask a good question: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=307712&SiteID=1 ...Show All
Visual Studio Team System beta2, personal website starter kit problem
downloaded latest team system beta 2 today, created new personal web starter project, when i attempt to create an administrator account here: http://localhost:1689/asp.netwebadminfiles/security/users/addUser.aspx no mater what i type, it continues to say "please enter a different password". you are instructed to create an admin account for your personal web site by the new starter project. ideas >I'm pasting this into my web.config file and then most of these attributes >get the error underlining with "The xxx attribute is not declared" >error message. Anyone have any ideas Wel ...Show All
Software Development for Windows Vista WinFX SDK Release
The WinFX is released with Windows Vista or After Hi, WinFX is a core part of Windows Vista. It will be included as part of the Operating System. Regards, Vikram ...Show All
Windows Forms MDI + external exe
Hi can anybody give me the code so that i can load external exe's as MDI childs into my application. Also cn anybody give me code so that i can load exe's from .dlls as MDI childs into my application Thx Assuming your exe or dll is .NET.... ' MyAssembly exe or dll contains the form to be instantiated System.Reflection.Assembly asm = System.Reflection.Assembly.LoadFrom( "MyAssembly.exe" ) ' This create an instance of an Object Class, but it's castable to the proper System.Windows.Form or custom Form Class. objClass = asmExternal.CreateInstance("Form Name") objClass.Parent = MainForm ...Show All
Visual C# Where can I find free chart components for VS2005?
you may try one of these: http://www.codeproject.com/cs/miscctrl/CS3DCharting.asp http://www.codeproject.com/csharp/zedgraph.asp http://www.codeproject.com/cs/miscctrl/ChartControl.asp ...Show All
Smart Device Development No ResumeBindings on PropertyManager
I use the PropertyManager in Windows Forms applications when binding form controls to custom class properties. The method used to update the controls on a form when the underlying object properties have changed 'ResumeBindings' is missing from the Compact Framwork. How can you achieve the same functionality with CF NETCF V2 supports ResumeBinding() and SuspendBinding(). On CF V1 you can try calling CancelCurrentEdit () to push data from data source to the control. ...Show All
Windows Forms VB to C# ?
Can someone tell me how to "translate" VB code to C# in one class I have this: Private Sub Class1MouseDown() Handles Class2.MouseDown and in the other declared: public MouseDown() and somewhere in some function: RaiseEvent MouseDown() So, how to do this in C# Simply add the coresponding handler to the appropriate variable: Class2 window window.MouseDown += new MouseEventH ...Show All
Visual Studio Team System "Currituck WITs" failure whilst trying to create a new project...
I am getting a "Currituck WITs failed" when I try and create a new project, the exception has the following... System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'PK__@members__24C087ED'. Cannot insert duplicate key in object 'dbo.@members'. The trouble is I can't seem to find which database or table this is refering too. Anyone any idea Cheers Simon All fixed. i did a complete removal of everything and reinstalled. Worked perfectly. Thanks for your help. Cheers S ...Show All
.NET Development System.Security.Cryptography.XML and Winforms
I'm trying to expand on some code that was demo'd back in VS2005 Beta1. It was a WinForm that encrypted only some elements of an xml file. I finally found the System.Security.Cryptography.XML namespace in the Web Services Enhancements 3.0 and installed them. I can now add that namespace to my web sites. But, when I try to add it to a Windows project the warning is: Namespace or type specified in the Imports 'System.Security.Cryptography.xml' doesn't contain any public member or cannot be found. Make sure the namespace or the type is defined and contains at least one public member. Make sure the importe ...Show All
Visual Studio Express Editions vbNullString to C# conversion issue...
I'm working on a C# project that utilizes an API. The API is expecting to recieve a vbNullString as an input to a function and I have no idea how to send that. How do I convert a C# string to a vbNullString Thankyou. It's strange, I declared two strings and set them to null and that didn't work, but just putting the null value in did work. I would've expected the first to work as well. Red. ...Show All
Visual Studio Pagination icons in Firefox
If I move the mouse on the pagination arrow, there is a small square shows up and the arrow is not within it. It's a little bit annoying. Is there any solution to solve it Thanks. We are aware of this issue and will have it resolved in the next update. The highlight color and border width are configurable properties on the reportviewer control. Until the update, you can set the border width to 0 and the highlight color to the same as the background color to hide the annoyance. ...Show All
Windows Forms GDI+ graphics and viewport
Hello, I am using .NET 2.0 and building a custom control. There are multiple graphics elements that I would like to render on the surface. When drawn together they form the complete control image but need to be managed separately because they might have different scale, units, move indendently, and are updated at different times for different reasons. My idea was to maintain several buffers or graphics objects that I could use draw into and load images as they needed updating. Because the total image is larger then the control - I was planning to copy regions of the larger in memory images onto the control surface - like a viewport ...Show All
