katykaty's Q&A profile
Windows Forms EnableVisualStyles() and SEHException problem
Hey all....here's the down and dirty app explanation... My main exe has Application.EnableVisualStyles(); Application.DoEvents(); in it so that I can get the nifty xp visual styles going. All has been going just wonderfully, up until now. I load a sep ...Show All
Software Development for Windows Vista Changing workflow assembly during runtime
I wondered what would happen: I develop a state machine workflow, which is compiled into a single assembly. Then I use this assembly to run multiple workflows. Some time later, the workflow is subject to change (added state, and so on). The assembly is generated, and then used with existing (running) workflows. My question: What happens if I have to change an assembly where contained workflow types are running at the time I have to change ...Show All
.NET Development ADO.NET 2003 and Access 97
I am using a Linked Server connection through SQL 2000 to a local Access 97 database. I have a stored procedure that returns the columns of an Access 97 table that are defined as logical (binary) The stored procedure is storing the information in a variable defined as a varchar(10) and using a select statement to generate the recordset. When I execute the stored procedure in Query Analyzer, I see the values of the colum ...Show All
Windows Forms Added unbound grid rows are blank
Added unbound grid rows are blank I have a master-child relationship. The master are unbound controls, and the two children are grids. The column names and types I created in the columncollection. When I save the master, values automatically go into the grid columns and saved. They appear in the grid and are updated correctly to the database. If I add another row, it's values appear in the second row. However, the first row ...Show All
Visual Studio Team System Customizing bug form
Hi there, How do I make sure that the group box is only as big as it fills all the controls in it and does not leave any empty area, so that it looks better as well I can utilize maximum area of the form. Basically how do I set/control the height (as I can do for width by percentwidth attribute) of any control or group in form Thanks, Anu Hi Sagar, Do you know how I can make all of my FieldControls the same ...Show All
Windows Forms Easiest way to work with the KeyBoard??
Hy! First, sorry, if i'm at the false category.. And now my problem... I have a MainWindow...and on it i put at Runtime...some UserControls. Now i have 4 user controls on it, and want to catch the KeyPress-Event... For Example...if the User press ESC that&nbs ...Show All
Visual Studio Visual Studio 2005 Documentation Missing...??
I have installed Visual Studio 2005 standard edition. Every thing works ok except for the documentation item. When I choose the documentation item from the start menu I get a page that has links for "How to install help for Visual Studio" and "Visual Studio 2005 Combined Help Collection". When I click the first link it says to put the install CD in and choose to install product documentation but there is no such option on the install CD. When I ...Show All
Smart Device Development VS 2005 and Smart Device installation problem
I have a weird problem with my VS 2005 and Smart Device SDK installation. I'm using the DVDs from the Windows Mobile 5.0 Developer Evaluation Kit given away at the recent MEDC. I want to successfully install the Pocket PC and Smartphone SDKs and compare the IDE etc with that of evC 4.0. I appear to have successfully installed VS2005 however the Smart device SDKs do not appear to installed correctly at all even though I did install them. There s ...Show All
Visual Studio Where's the MSBuild Project Type?
There's a Makefile project in the VC project system which is handy for integrating old (non-VC) stuff into Visual Studio. I would like to the MSBuild equivalent. That way, I could move the old stuff over the MSBuild files. I would then expect the integration with VS to be at least as good as it is with makefiles (if not somewhat better - files in item groups would just show up in the project). ...Show All
Windows Forms Using a non .Net resource from a .Net embedded object
I have a .Net object in a web page that is served from a trusted site. It in turn references another .Net component. This component is successfully download. However, that component needs a non .Net DLL. I can explicitly download it myself from  ...Show All
Visual C# Open new form when button is pressed
When i make several forms in the same projects, i want them to open when i press buttons in the forms. I double-click on a button to view the code-part, and I want to make a new object of a form that I want to pop up when that button is pressed. Say Form1 f = new Form. When I start typing Form1, VS will show a list of matching forms, but sometimes the forms i want to use doesnt show, and I cant make objects of them. Does anyone know why I have s ...Show All
Windows Forms resize a richtextbox
How do I resize a RichTextBox control to be as high as its content There appears to be no way to do this . I've seen several "solutions" which all basically revolve around this code: RichTextBox1.Height = RichTextBox1.Font.GetHeight * RichTextBox1.Lines.Length that is; count the number of lines and times it by the height of the font. Unfortunately, this counts the height of the first font on the rich text control that it enco ...Show All
Visual Studio 2008 (Pre-release) Indigo Installation Problem ( Very Urgent)
I downloaded the software from MSDN Subscritpions WinFX SDK - Community Technology Preview 1) winFx Runtime Components – September 2005 CTP(English) 2) winFx SDK for the WinFX Runtime components – September 2005 CTP( English) I downloaded these two , First One contains Setup,when I run that one iam getting setup Error. Iam getting the same error which is mentioned in this site( http://www.ureader.com/message/867599.aspx ) but they su ...Show All
Visual Studio Tools for Office VSTO 2005 Infopath project template missing
I have installed Visual Studio 2005 Team Edition (release version), Visual Studio Tools for the Microsoft Office 2005 and Office (and Infopath) 2003. In the "Visual Studio installed Templates" for Office, I have templates for Excel, Outlook, and Word (and they are all working fine), but I do not have a template for Infopath. Do I need to install something else to get the Infopath templates and be able to create Infopath projects in V ...Show All
.NET Development check if node exists
i want to check if an element exists and manipulate this element if it does, eg... XmlNode node = .... if (node.selectnodes("whatever") exists) then... do something thanks if you can help. Attributes can be selected using XPath expressions via SelectNodes and SelectSingleNodes, just prefix the attribute name with the path expression '@' . See http://msdn.microsoft.com/library/en- ...Show All
