goofu555's Q&A profile
Windows Forms Specify size of the autocomplete dropdown
Hey! Is it possible to specify the size of the dropdown that appear for the autocomplete options in a System.Windows.Forms.TextBox when using the SuggestAppend mode Users of the GUI / application can change it manuelly, but is it anyway to do it programmaticlly as well Thanks! ...Show All
Visual Studio 2008 (Pre-release) Why the reverse German-like syntax?
Why do the LINQ queries have to look like a SQL query in German If you are trying to make it easier and are adding SQL-like keywords to the language, at least keep the ordering the same as SQL. The way this is, I have to know C#, SQL for triggers and stored procedures, and LINQ for the in-code queries. I don't see how this is going to make my life any easier. > .... why then has VB decid ...Show All
SQL Server Higher Level Edition Error Message
Hello all, I just installed the June CTP Client Tools on a fresh hard drive (no previous CTPs installed). I am trying to run a package that was written in the April CTP and runs successfully on other computers with the June CTP installed. When I run the package, it fails on an 'Execute Package Task', and I get the error message: "The task cannot run on this edition of Integration Services. It requires a higher lev ...Show All
Windows Forms Frustration With DLL Project
I have only been working with .NET for a few months now, but I am quickly learning to love most of it. Some parts however, I still think need some work. In my latest project I created a DLL file so it can be used by other&n ...Show All
SQL Server SET RECOVERY SIMPLE generates error
I've come across several references indicating that the recovery model can be set to simple by using the following sql statement: ALTER DATABASE dbname SET RECOVERY SIMPLE However, all I get is the error message below. What is the correct syntax Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '.'. Msg 195, Level 15, State 7, Line 1 'recovery' is not a recognized SET option. according ...Show All
Visual Basic What is object name for main programming class
I am trying to send data from a secondary form back to the main form in a Visual Basic program. I can't do this since I don't know the name of the object associated with the main class of programming statements. Does this main class even have an object name How would I do this Thanks for your help. It's my understanding that the name you mention refers to the class, not the object. ...Show All
Windows Forms Can't publish using August CTP
I took an existing application written in BETA 2 and attempted to publish it using the August CTP build. I made the required changes, recompiled, etc. And I can't get it to deploy to a machine that doesn't have the August CTP bits on it. I keep getting the following manifest erorr. PLATFORM VERSION INFO Windows : 5.2.3790.65536 (Win32NT) Common Language Runtime : 2.0.50215.44 System.Deployment.dll   ...Show All
Visual C# Another control instead of DataGrid
Hi!! I wonder if there's another control, I don't wanna use the data grid, I'm making a demo, so I try to put a grid with some data in HardCode; I dont want to bind to a database. Or, if there is a way to put hardcode to this dataGrid, somebody could tell me how to really thanks a lot!!! You're probably stuck with using a datagrid, however you don't need to bind it to a database. Create your own dataset / datata ...Show All
Visual C++ How to maintain things on client view when the view is maximized or minimized?????
Hello, When I resize client view in my MDI application, everything on that view is gone and only white background is shown up. Any idea about it I like to have everything on there after resizing the client view. Please help me. Thanks. Thanks, I got it already. ...Show All
SQL Server MAX doesn't apply for concatenated variables?
If I load up a local variable defined as varchar(MAX) with a 10,000-character continuous string, i.e. '123456789.....100000' the variable retains the full value as expected. However, if I break that string up into '123456789....5000' + '5001...10000', the variable is truncated at 8000 characters. Is there a way around this Thanks. This has to do with type conversion. SQL Server does not do an auto coversi ...Show All
Visual Studio Express Editions Printing Datagrid
Can anyone tell me how to print a datagrid I have put some fields of a simple database from Acces into a grid and need to print it out but I cannot find any instructions how to do it. Luke Hoban wrote: There is a sample on MSDN which does this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cscon/html/vclrfCodePrintingDataGridVisualC.asp . Thanks, Luk ...Show All
Visual Studio Team System Problems with the team project site creation
Hi, I recently installed the VS Team System Beta 2. I complete the installation and then by special reasons, I had to re-install the windows sharepoint services because i had problems with the fornt page extensions. Now, when I create a new Team project, All seems to be great, but when I want to open the project portal I receive the following message "The Web site that is referenced here is not in the configuration database" I suposse, It 's b ...Show All
.NET Development HttpWebRequest.GetRequestStream() Halts when run it 2nd time during same Execuation
Hi all, HttpWebRequest.GetRequestStream() Halts when run it 2nd time during same Execuation. But if i Rebuild the Code and execute it again it works fine but again halts when i try 2nd time during the same execution of the Application. one thing more some time it dose not works agian until i end the aspnet process from the taskbar . but it occurs rarly. here is the code below uri = new Uri("SOME URL"); req =(HttpWebRequest)WebRequest.Create ...Show All
.NET Development Generate Xml describing my textbox or any UI controls
Hey, I want to beable to generate an XML document describing my textbox, buttons or other controls properties, like size, location etc. Can anyone give me the code or help I tried to use the System.Xml.Serialize but it says it does not support buttons.gettype method This is what XAML is used for. Check out WPF (formerly known as Avalon). ...Show All
Visual Studio Express Editions Another way than WH_CALLWNDPROC
If I'm using a VC++ DLL to create a tray icon for an external application, not my own nor connected to my DLL. Is there any other way to detect mouse clicks on that tray icon other than a global hook for WH_CALLWNDPROC I've read that a global WH_CALLWNDPROC hook can be a serious drain on system resources so if at all possible I'd prefer not to use it. If it's the only way to catch the messages I want under these circumstances then I'll do it, b ...Show All
