GaelFraiteur's Q&A profile
Visual C++ Where did the win32 winsock libs and headers go?
I am trying to compile some software I wrote using the win32 winsock interface and its just not there. What happened to it VC6 is no longer supported. So you don't need to wonder that the official SDK only supports the newer versions of the VS series. Also the higher MSDN abos contain the MSDN library that is a the complete online docs integrated into the VS IDE. And the all higer MSDN abos include a version o ...Show All
Windows Forms Staging QA vs Production ClickOnce
I have clickonce app that uses 2 web services. One written in .NET under my control and another written in java. Both web services are deployed on different servers for both qa and production. The click once app is published to 2 different locations for both qa and production. The problem arises during deployment. The web service urls are stored in the app.config correlated with a Settings.setting entry. ...Show All
Visual C# C# Without .Net
Hello Fellows, I’m about to start a project, and in this project i cannot have any framework I must have only the .EXE of the application. Is it possible to create an EXE in C# that does not depend on .Net framework Thanks Technically speaking, you can compile any application without mscorlib by giving the parameter /nostdlib to the compiler. But it practically renders your entire application uncompilable unless you give it another librar ...Show All
Visual C# resource problem
I have added an xml-file (Signals.xml) containting a definition of a dataset to my project in visual studio. I then marked the xml-file as a embedded resource, and everything works fine. I read the xml-file in a class extending DataSet like: this .ReadXmlSchema("Signals3.xml") and everything works fine. When I later add another resource (for instance a background image), I get the following error message: An exception occured w ...Show All
Visual Studio Team System Error TF30207 Creating Project
I'm getting a TF30207 error when I try to create a new project. I was able to create a new project with no problems last week, but now I get this error every time I create a new project. I didn't make any changes to the server, but Windows Update did apply some updates recently. I'm running TFX Beta 3 refresh. Here are the log file enties: 11/11/2005 11:24:40 PM | Module: ELeadServiceMediator | Team Foundation Server proxy retrieved ...Show All
Windows Forms New and open
hey, in order for me to be able to do new and open options on my text program, I need to know how to make it so the program has a certain text file type for it's documents...how do you make this with Visual studio 2005 express ya, so when you press Open it opens the open dialog, then you can chose from all files, .txt, .yptf, and so on... .yptf if the main file type for my program that I want to "invent"... ...Show All
SQL Server AS400 password request
Hi all, I'm loading a working SSIS package in VB.NET and executing it programmatically. As the 'Persist Security Info' is set, it executes fine, presumably because I executed it previously with valid login info. But, when I update the connection info (programmatically) it prompts me for a password at runtime. The connection string will be provided by the user (DB Admin) and this is running as a Windows service, so what I want to do is, in the ...Show All
SQL Server Generating a smart device cab file
Hi, I tried to generate a cab file automatically. I followed the instruction: Open your smart device application project in Visual Studio .NET. On the Build menu, click Build Cab File . But Why didn't I find in my Build menu "Build CAB File" Thanks Paolo ...Show All
Visual Studio Express Editions WH_KEYBOARD_LL
hi i have VC6, VC Toolkit 2003, VC++ 2005 EE, and MPSDK 2003 SP1. when i try to use "SetWindowsHookEx(WH_KEYBOARD_LL,...." ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/winui/winui/windowsuserinterface/windowing/hooks/hookreference/hookfunctions/setwindowshookex.asp ) i get: error C2065: 'WH_KEYBOARD_LL' : undeclared identifier the same code works fine with Dev-C++ from msdn: " ...Show All
.NET Development EndCurrentEdit gets called automatically, Data changes in more than one row
The situation is - We have our own control called DbTextBox which has the ability to autobind to datasource and which stores it's unparsed value (ints, floats, ...) inside so we just don't have to setup the binding on every single form, .... When I leave the control so it's looses focus the validating event occurs and our internal validator parses and validates the input in .Text property and if OK it assignes the internall cached un ...Show All
.NET Development document.getElementById().innerHTML fails with 'Unknown Error' in IE
Hello, I'm trying to use document.getElementById().innerHTML in a JavaScript to change information in a webpage. On FireFox this works as described in the W3C documentation, however, the same method returns 'Unknown Error' in IE. The JavaScript looks like this: <script type=text/javascript> function Change_Info (ID, ROW, VALUE) { & ...Show All
SQL Server Problem with SSIS Transaction...Transaction Scope
Hi, I am having some problem with SSIS transaction. Eventhought I tried to imitate the concept that Jamie presented at http://www.sqlservercentral.com/columnists/jthomson/transactionsinsqlserver2005integrationservices.asp . My workflow is as followed ********************************* For Each ADO.Record in Oracle (transaction=not supported) If (Certain_Field_Value = 'A') Lookup Data in SQL DB with values from Ora ...Show All
Visual Studio Team System View not checked out but modified files
How can I do this in TFS Regards, Zsolt Soczo Our command line powertoy tfpt should do this. It would be tfpt online /preview (probably you add also /recursive) ...Show All
SQL Server Finding Stored Procedures that use linked servers
Is there any way to find all stored procedures that use linked servers or a specific linked server For specific it's easy: SELECT name FROM sys.procedures WHERE object_definition(object_id) LIKE '%specific_server_name%' wrote in message news:c59eaf10-c092-4cde-8f5d-2e7a483ad8e5@discussions.microsoft.com... > Is there any way to find all stored procedures that use linked servers > or a specific l ...Show All
Windows Forms How can I invoke the copy to clipboard functionality on the GridView
I see that the GridView already has copy to clipboard functionality when you set the "ClipboardCopyMode" property. If you press <Ctrl><Insert> the selected rows/cells/columns gets copied to the clip board. Does anyone know if it is possible to invoke the same copy functionality (as when you press <Ctrl><Insert>) from my program Hi, The selected content of the DataGridView can b ...Show All
