NiklasSolna's Q&A profile
Visual Studio Team System Migrate from CVS to TFS
Is it possible to migrate from CVS on a unix to TFS and keep the existing versions and tags I'm also curious about this. This will probably decide if we migrate or not. Anyone have any insight they mind sharing ...Show All
Visual Studio Team System Breaking on exceptions immediately
When I am running my code with the dubugger I want the debugger to break immediately when an exception is thrown. I tried to follow the directions in http://msdn2.microsoft.com/en-us/library/d14azbfh.aspx which tells me to choose the Exception option in the debug menu BUT THERE IS NO SUCH OPTION!! Where did it go I have used it in the past (VS 2003). Help... k ...Show All
Visual C++
. I am going to address your core question: There is already a lot of discussion in the C++ community that #include <iostream> already pulls in way too many other headers - and believe me it was not designed this way. Why should <iostream> pull in <string> The two are not related and there is really no reason why one should depend on the other. We do provide every STL function and algorith ...Show All
Smart Device Development Winsock error on WM5 that doesn't occur on WM2003
Well the code freeze was due to a bug in one of the static libraries which i have fixed now :-) So now i have a working application. But now i have another problem with regards to winsock. I have the following code m_socket = socket(AF_INET, SOCK_STREAM, 0); ..... linger lgr; lgr.l_onoff = 1; lgr.l_linger = 5; setsockopt(m_socket, SOL_SOCKET, SO_LINGER, ( const char *)&lgr, sizeof(lgr) 4) . ...Show All
Windows Forms How do I catch SelectionChangeCommitted event of a combobox in a datagrid?
I have a standard combo box in a datagrid (DataGridEnableComboBoxColumn) and I want to catch the SelectionChangeCommitted event. Does anyone know how to do this Blue & white hooped blood runs through my veins Hi Supa Is there any chan ...Show All
Windows Forms modifying control properties
when I create a simple form application project in vc++ express I have these two files created by default, form1.h & project_name.cpp now suppose i add a text box in form1 I'm not able to change the properties like text of this textbox from anywhere else other then form1.h (say if i want to change properties from this file project_name.cpp) its a very basic doubt but I've done evrything from making textbox public t ...Show All
Windows Forms Bringing Modal dialog to front when disabled main window clicked
I have a .NET application which can display several independent main windows (basically different documents). When one of them launches a modal dialog, all of them are disabled. I can live with that (it's a single-threaded application for the forseeable future). But, it's possible to get into a state where the modal dialog and its owner window are hidden by other applications. If I then click on a main window that is NOT the owner of the mo ...Show All
Windows Forms Font Fallback for Unicode Strings
Hello, I'd like to be able to revert to a font that can display unicode characters if my string contains them. For example, I use Tahoma as the default font in an application, but if someone passes me a string with Chinese characters I nee ...Show All
.NET Development Client-Server Communication
Hi, Im using .Net 1.1 SP1, and in my scenario, I have the server and the client applications that use tcp channel and binary formatter. The client connects to the server, and registers himself by calling the server subscribeClient method, this method receives an object named (client) that is an instance of IClient and is MarshalByRefObject and marked with the [Serialiazable] attribute, this object contains the client properties and the me ...Show All
Visual Basic How To Add Coulmn in table MS Access database
I'm using VB2005 , 2003 I have created my database, but with time I need to add or delete some columns in my table, How can I do it You can do that With ADOX. 'note this class depends upon two COM MDAC v2.8 References ' made in Project References ' Microsoft ActiveX Data Objects 2.8 Library ' Microft ADO V2.8 for DDL and Security Protected Const cNoConn As String = "No Connection has be ...Show All
Windows Forms Form Still Closes After Textbox Validation Fails
This is odd behavior, as all examples I've read indicate the opposite behavior ... ie not being able to close the form. In this case I have a textbox with a validating event. It works fine, unless the user clicks the X Close button on  ...Show All
Microsoft ISV Community Center Forums Crying like a baby
Hi there. I’m an MCSE. I became an MCSE because I felt that Microsoft products truly allowed me to help my clients with their needs. And the lapel pin makes me look cool. I have been doing a lot of simple VBA programming lately, and have decided to really take the programming plunge. This means even more waving the Microsoft flag and converting consumers to Microsoft believers. It also means another lapel pin, and ...Show All
SQL Server Exporting Report Builder Tabular Report to CSV
A simple tabular Report Builder report was written to feed another system that requires quoted CSV. I have two issues when exported: 1) I can't get control over the exported column names. Currently, they are exported as "FIELDNAME_Value". When I try to change the column headings in the designer, it has no effect on the exported column names When I create a New Field and specify my desired column name (e.g., COMPANY), the e ...Show All
Windows Forms Application Folder reference
My application resides in the different folders on development and production/client workstations Example of structure: c:\...\Visual Studio Projects\MyApp I have folder images located in the root of MyApp like this c:\...\Visual Studio Projects\MyApp\images When deployed the application is&nb ...Show All
.NET Development Smart Client State Listener
Hello... I need to write a Smart Client application that has live update capability. Problem is, I'm more of a web guy, and I've never had to write anything as complex as updating a UI according to what's happening to a back-end data base... Does anyone have any good examples of this..someone here in the office suggested remoting... any help would be appreciated! Merry Christmas doug ...Show All
