MpRoC's Q&A profile
Visual Studio Express Editions How to save Files with a "SaveFileDialog"
I don't Really know how Can someone tell me how Like you type a string in a textbox and you press a button called "Save" then you want to select the folder you want to save the .txt at. Thanks It's a two step process: a) Get the file name and file path: The SaveFileDialog doesn't save anything: it simply allows your user to navigate to an allowed folder and enter a valid filename. The dialog box looks ...Show All
Visual C++ Different results by recompiling
Alright, i've got the following opensource code witch is a part of Luigi Auriemma's GSList. There is one function i'm intereseted in, however, if i recompile it in VC8 and approach it with the same input as for the original function, the output is different.The function is totally written in C, so i had to make a few changes, however there arent any crusial once. The code can be found here: http://polity.magnoon.nl/TEMP/Validate.rtf I hop ...Show All
Windows Forms SQL Parameters with datasets
I'm taking my first stab at WinForms after some time with ASP.NET and I need some help. When I drag a DataGridView onto the form and go thru the wizard to create a DataSet and TableAdapter that use an existing stored proc with a single boolean input parameter for the select command, I can't figure out how to get it to use a checkbox control on the form to fill the parameter. When I do the same thing in ASP, the DataSource wizard sees the para ...Show All
Visual Studio Team System Add Work Item menu still loading...
I just uninstalled/reinstalled TFS on my server. I uploaded my custom process template, and created a new team project from my template. However, when I try to right-click the Work Items folder, Add Work Item, it says "Add Work Item menu still loading...(try again in a moment)". It has been saying this for over an hour now. When I remote desktop into the TFS server and use team explorer on there, I can add work items just ...Show All
Visual C++ CHtmlView Exceptions - Lots of Them!
I'm building an MFC app that uses an CHtmlView and I've observed that it throws multiple, non-crashing, exceptions from the main app instance (MyApp.cpp). The exceptions are: ------------------------- First-chance exception at 0x7c81eb33 in htm.exe: Microsoft C++ exception: COleException at memory location 0x0012dcc4.. Warning: constructing COleException, scode = DISP_E_MEMBERNOTFOUND ($80020003). ------------------ It throws t ...Show All
Windows Forms foreach statement
This foreach statement don't loop to the next item in the arraylist(resluts) Can somebody tell me what is wrong with it Thanks public void IAVAs() { UpdateStatus1("Installing COTS Upgrades: HotFixes Updates", null); lib.InstallCommand(); foreach (string Item in resluts) { string selectionCriteria = "//iavaInstallCmd[..//SubKey = '&qu ...Show All
Visual Studio Tools for Office Debugging Broken
Debugging no longer works for me in VS.NET 2003. The Excel splash screen flashes briefly but then disappears when I try to start debugging. My belief is that installing SQL Server 2005 Developer Edition is what broke debugging. I can say I had a similar problem with debugging web apps, but when I uninstalled ASP.NET 2.0, debugging worked for me again with web apps. Does anyone have any idea how VS Tools for Office 2003 an ...Show All
Architecture the best orm for .net?
I would like to know your favorites, i am looking for a free one and with caching capabilities. Well most persistence layers support db2 out of the box. "Besides, how do tools like Codus or Persistor.net integrates with Enterprise Library from MS (June edition) " Are you referring to the MS data access app block in particular If so ... they don't at all. The two would generally be considerred similar to each other (i.e. you ...Show All
Software Development for Windows Vista Defining Bitmap of custom activity
Hi, I want to define a bitmap with a custom activity. I already set the ThemeAttribute in the ActivityDesigner and the ToolboxBitmapAttribute with the Activity but I cannot see the bitmap ... Any help appreciated! Thanks Andreas anderl, You'll need to drop the custom activity into a workflow first to see the resulting designer. ...Show All
Software Development for Windows Vista i AM LOOKING FOR VISTA BETA 2
If anyone can help please let me know I was on beta testing cant find all my info I have Beta one versions, Thank you! Sincerely, Eric Powling If you wish to become a beta member, you can do so by registering for the world-wide Windows Vista Beta Experience . ...Show All
Visual Studio Team System Avoiding Properties.Settings and Properties.Resources in Whidbey
Heya, I'm creating a custom rule for private class members variables. So far I'm using this code: public override ProblemCollection Check( TypeNode type) ... foreach ( Member member in type.Members) ... if (member.IsPrivate && member.NodeType == NodeType .Field) // Do check Now, the problem here is that I get a lot of attributes which are in the Properties.Settings and Properties.Resources classes/files. Is there a way t ...Show All
Smart Device Development Add Column to DG
How do I add a column to a datagrid - one that is not bound to the datasource - say I want to add a col with "X" as the first col and then the rest I have assigned via the datamap You can not do that with NETCF grid, you have to add column with "X" to data source. ...Show All
Windows Forms best way to alter the auto generated SQL (then stop code from being overwritten)
hiya, I assign a sqlServer datasource to the dtagridView..I can add and delete etc. I want modify the auto-generated SQL "DELETE" statement in the "datasetName.Designer.cs"... I know that this human modified code will overwritten if I regenerate the code. Is there any way to ensure that this particular piece of code is not overwritten during subsequent regenerations ..I think I should be able put it in a partial ...Show All
Visual Studio Team System which .NET framework to install with VSTS Beta 2
I am trying to install VSTS Beta 2 Data Tier with SQL server Beta 2. SQL server is installed properly with .NET framework 2.0 .But while installing VSTS it gives an error saying "A prevoius version of .NET framework 2.0 is installed. Unistall it and retry". But if i uninstall .NET then SQL server stops working. What could be the possible solution Hi Vikas, The new VSTS Beta2 requires the SQL Server 2005 Ap ...Show All
Windows Forms making controls resizable for user
Hi, I have datagrid and panel control on my form. Is there anyway I can let user to change their sizes by selecting the control boundary and then dragging it to resize The easiest way is to add a grip bitmap at the bottom right corner and code the resize process using mouse events similar to the technique used to move controls. ...Show All
