HelloHello's Q&A profile
Visual Studio Team System Reverse Engineering C# projects
Hello, I'm trying to reverse engineer a UML model from my very large solution and it's not working. I'm hoping someone reading this can help. I've got a solution with 170+ projects. Three are C++ projects, the others C#. I've got all but 9 C# projects unloaded. I select the solution node in the solution explorer, then select Project->Visio UML->Reverse Engineer. DevStudio says it completed, Visio starts, but all I get is an empty UML ...Show All
Visual Studio Team System Modifying canned reports
I am trying to the rdl from the Team Systems report services site and the rdl before I switch to data view runs fine, but once I switch the report to data view. I have both connections that the server uses and checked permissions and all that seems fine. Is there any info any where to let me know how to properly setup a development environment to be able to properly modify and make variations of the canned reports I seem to be pretty close, prob ...Show All
Visual C++ VC8, Adding __event to non-CLR code gives error C2712
In a non-CLR class I have a number of __events defined. When compiling the source code in which the corresponding header file has these __events, I receive the error: error C2712: Cannot use __try in functions that require object unwinding pointing to the last of the __event lines in my header file. When I look at the error message it says: "cannot use __try in functions that require object unwinding". Further it is mentioned that "object unwind ...Show All
SQL Server Drop all column extended propterties
Need help with admin scripts. Have written stored procs to insert/update/drop column extended props but can't quite figure out how to drop all extended props for a particular table::column. Tried stored proc to cursor on result fn_listextendedproperty but couldn't get that to work. Where are xtended props stored in db This will work. Never touch the system tables, and it is not even reasonable to do it in 2005. This ...Show All
Smart Device Development Is the autoscrollbar active???
Hi I'm developping a pocket PC application that must be useable in both horzintal and vertical alignment, which means I need to re-define some controls width or left properties. But some forms have the "autoscrollbar" propety on and I need to know if the scrollbar is visible or not. Is there any property for that thx There is no property that can readily tell this information. However, you can handle the Resiz ...Show All
Windows Forms DataGridView VS 2005 change cell style
I am writing a program in VB.NET that is displaying data from mySQL. I need to have only one column to display two decimal places (like dollar amounts). However, it show 4 decimal places. How can I change just that row. If I change it in DataGridView properties, it changes other columns to two decimal places as well. Thanks A column has cell style properties as well, so change it there. At desig ...Show All
Windows Forms Logo in the bottom, left
Hi, I need to have a logo always located at the bottom, left of my screen. I thought that by using Anchor it would do the trick but it doesn't. In http://www.corobori.com/sos/picLogoDef_1.jpg you can see that the logo is slightly off the form in&nbs ...Show All
Windows Forms highlight text in textbox
i wish to highlight the text inside my textbox programatically, how can i do that can anyone help me thank you i try with TextBox1.SelectAll() but it seem does not work Set the textboxes hideselection property to false so the text will be selected when the textbox does not have focus http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemwindowsformstextboxbaseclasshideselecti ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Memory Problem and DisposeObjectException in my project
Hi all, I am using C# and MDX to create my game. After my project becomes larger and larger, memory problem occurs int the following code: public static Bitmap ConvertByteArrayToImage(byte[] array) { Bitmap image = null; try { MemoryStream ms = new MemoryStream(array, 0, array.Length); ms.Write(array, 0, array.Length); image = (Bitmap) Bitmap.FromStream(ms, true); ...Show All
Visual C# message box in webapp
I need help. I need a message box OK/Cancel button in a web application (JavaScript ) to confirm a deleting row the problem is that i have not button "Delete" but i have a datagrid with a button column. Thx PS-could you post code and explanation In the ItemCreate event from the DataGrid put this: Control myControl = (Control)e.Item.FindControl( "MyControlID" ); myControl.Attributes.Add( "OnClick" , return confirm('Are ...Show All
.NET Development Getting Param
Hi all, I'm trying to recieve information from the browser into Visual Studio 2003 C++. I understand it is not though the main(args) but though some thing else. How do I set that up I'm trying to get the params from a < object > Thanks ...Show All
Windows Forms how to color cells of a column based on some condition ?
Hi, I want to know how I can color the cells of a single column in a windows forms datagrid - based on some conditions Thanks, -Apurva. This site has a good example of how to do this, http://www.syncfusion.com/FAQ/WinForms/default.asp#44 Hope ...Show All
Visual Basic How to display data in table format in windows application?
Hi everybody, How would you display data values from a database in a table format in a windows application and which control is appropriate to display them Code belwo shows creating table in html, how could you do this table in windows application Thanks. Note: the html not exactly correct. Code: <htmL> <body> <table bgcolor="blue" border=2> <tr> <td>Place data from database& ...Show All
Visual C# simple editor using webBrowser control
Hi, I am working on an editor using the htmldocument in the webbrowser control. This is my code for testing out its capability: private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { htmldoc = webBrowser1.Document; htmldoc.ExecCommand("EditMode", true, null); } private void webBrowser1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { // proces ...Show All
Visual Studio Express Editions Time - Increasing
I hope someone could point me in the right direction on this. I have a text field which I would like to set at 00:00 (zero minutes and zero seconds), then click on a button to increase the time by :30 seconds after each click. Any assistance is much appreciated. Hi, You can try changing the value of the textbox value by 30seconds and converting to time format on button click event. Thank you, Bhanu. ...Show All
