Steve Starck's Q&A profile
Windows Forms User Control Reference problem
Hello - I have a problem with a solution originally created in VS.NET2003 and converted to 2k5. I created some user controls in my winforms project. Since the controls reside in the main exe, I had to trick the toolbox into looking at the exe in the bin folder for the controls (could not use the controls automatically added to the toolbox - I assue this is because they were in the same assembly). When I open a form that uses on eof my us ...Show All
.NET Development Unmanaged application using managed library can't find referenced assemblies
There's a C# application with some DLL's. There's an unmanaged application (Total Commander) and I want to create a plugin for it that uses some functions from my C# libraries. I figured the best interface is a managed C++ library: it implements the unmanaged plugin interface by exporting the necessary functions, and it calls into my managed code, so I don't have to reimplement that library. Problem is, it can't find the referenced assemblies (F ...Show All
SQL Server How to browse a cube using a web browser
Hi, I would like to know how to browse a cube using a web browser. So far, my company is using excel to browse the processed cubes but they want to extend the access to other departements and therefore accessing and browsing cubes using a web browser would be more appropriate. I thought using Reporting Services. Unfortunately I don't know the steps to follow. Thanks. Yes, you can use Reporting Services. I would start by checking o ...Show All
Visual C# Please help !
I've got to capture all the messages that a dos program is sending them to the console ! How can i do it The program isn't supporting this opption, to output the messages in a text file. Please help !!!!! This is easy - add System.Diagnostics and System.IO using clauses then use something similar to this: ProcessStartInfo pi = new ProcessStartInfo( "cmd.exe" , "/c dir" ); pi.WindowStyle = ProcessWind ...Show All
SQL Server Roll back to Data
Hi Guys I have unfortunatlly executed update query. My problem is have executed update command instead of Insert command. can i roll back again but in Oracle is possible SQL>Update Command SQL>Rollbank this is ORACLE. How can i execut it. In SQL SERVER. advanced Thanks Krishna In SQL Srever implicit transactions are turned off, so unfortunately if you want to recover you need to rest ...Show All
Visual Studio Express Editions Combobox2 fill based on Combobox1 selection
I need some help with a Datasets in VBExpress, I have three comboboxes placed on my form, all are filled by the dataset but I need to have the second and third CB filled by the selection made in the first and second. In VB6 you could you some code in the 'Selecteditemchanged' event to define the 'rowsource' for the following combo and similarly for the final combo however, this is not VB6 and this method doen't appear to work. Any help wo ...Show All
Windows Forms Help dealing with nulls
I was interested in the proper way to deal with null objects. I have a Contact Class that contains an Email Collection class. In certain circumstances the email collection will contain no emails. When i do something like: lvContact.SubItems.Add(contact.Emails[0].EmailAddress); ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Multiple Filter Graphs with DirectShow
Hi All, I've created an application that uses a custom allocator-presenter that I created based on the VMR9Allocator example found on the DirectX SDK (well, now it's on the Platform SDK). I've managed to uderstand most of what I've "implemented" and I now have almost everything I need, except for one thing. I need to be able to play more than one video at the same time and to control them independently. To do this I know that I need to ...Show All
Visual Basic Using my own usercontrol simple question i hope
Hi all I've just written my own simple Graph control to teach myself a bit about graphics. I compiled it for release and saved it. I then went to another project and added the new control to my toolbox. All fine so far! But i notice that i can single step - debug and edit the code for my control!!! which is nice i suppose but if i do edit it. What happens to it does just this local copy get altered or is the original being altered a ...Show All
Visual Studio Express Editions Moving through error list
Hello, I have been using Visual Studio, and most specifically, VC++ from version 4.0 to version 6.0, and lately I have been meaning to finally catch up with the latest. Since I've skipped a generation and another one is about to be released, I thought I'd skip 2003 as well and wait for 2005. To prepare for it I decided to download VC++ Express 2005 Beta 2 and the install went flawlessly (I downloaded the CD-image and installed that). Then I got ...Show All
SQL Server Setting Device Info Settings
Hello- Is it possible to set the HTML device information settings ( such as StreamRoot, Replacementroot, HTMLFragment ) through the URL or by config files (like rsreportserver.config) I'm able to access settings such as JavaScript and Toolbar using the URL like this : rc:Toolbar=false , but it does not seem to be working for other settings. If these are not available via the URL is there a list of which settings are available and ...Show All
Visual Studio Internet Connection in VS 2005
Hi, I just installed VS 2005 on my machine, but my online help cannot be accessed. I keep getting the message: "The request failed with Http Status 407. Proxy authentication required". IE on my machine does have proxy authentication. Is there a fix for this Thanks, Arshad Hmmm... not really. We're using HTTP POSTs to make our web service calls. Are you able to do HTTP POSTs (not ...Show All
Visual Studio Team System Cannot jump into the source file
Hello, I get a warning and try to jump into the source file (via link). This brings the following error: "Could not start Microsoft Visual Studio. Try specifying an alternative source coding editor in Applicaton Settings". Does anybody have an idea about the problem Thank you VP What Visual Studio versions have you installed Were any running when you clicked the link Does this ...Show All
Visual C# Potential Bug with C#
The screenshots speak for themselves. Debug - 4 is the most relevant shot. Take a look at the values shown in Watch 1, and the execution path that is being followed. What should happen is, base.Text == null evaluates to true, null is returned and life is good. What does happen, is that some how it passes over that part of the if, falls into the else and then executes the code highlighted in Debug - 4. A null reference exception is then thrown, b ...Show All
Windows Forms how to set combobox selectedvalue property?
hi, my question is how can i set the selectedvalue of a combobox. i have a combobox and i want to set the selected value to the supplied id. thanks Yep, certainly more than one way to skin this cat. I can tell you that&nb ...Show All
