Thomas Schleu's Q&A profile
Windows Forms registeration for crystal reports
hello i want to make registeration for crystal reports so i go to the link:support.crystaldecisions.com they tell me to enter what kind of product do you want to register it and what version do you have so i select cystal report but i ha ...Show All
Visual Studio Express Editions Problem creating a querry with an embeded variable when using access datafile as connection source
When a Data Connection is established using Microsoft SQL Server Database File (SqlClient) as a data source the following code works perfectly SELECT * FROM ProdMaster WHERE (PRODMASTER.DESCRIPTION LIKE '%' + @DESCRIPTION + '%') The ToolStrip on the form opens an input box so you can type in a choice of DESCRIPTION and when the button is clicked the dataset returns only those values that meet the criteria input BUT If you ...Show All
Visual Studio Team System Changesets, Merges, and atomic cherries.
I've been having a look at the capabilities of changesets and merges, in particular I was interested in the following: * Cherry-pick merges -- you can merge specific file change to another branch without merging the changes that were included in previous versions of those files. Thus, if you've got 2 bug fixes which touch the same file, you can merge the second one without merging the first. So, I conducted the following simple experim ...Show All
Visual C++ How can I read the txt file into CString object???
I like to read the content of txt file into a CString object without losing the spacing between words like (eg. I like apple.). But the way I tried give me only the this format like "Ilikeapple.". The following is my code. char htmFile[50]; *htmFile = 0; while ( ! fhtmFile.eof()) //Read in the content of html into CString object fhtmFile >> &htmFile[strlen(htmFile)]; m_strhtmFile.SetStri ...Show All
Visual Studio Express Editions BindingSource Navigation
Hi, I've got a Winform with a number of controls that are directly bound to a bindingsource, I've also created a list box and a combo box that will be used for quick record selection. The problem is that both the list box and combo box, have a custom query source. What I would like to know is how to navigator to the selected record and how to change the other control to the same record. eg. If the user selects a record from the List Box, I want ...Show All
Visual Studio Team System Team Foundation Server Beta3 Setup Failed
I tried installing Beta 3 of the Team Foundation Server, single server installation. I followed the instructions in TFSInstall-v50920.chm. Setup of team foundation server failed with: Error 28905. WiDbLoc: Could not list of fields to localize from the database Berry here's when the errors occur in dd_vsinstall80.txt: [09/24/05,14:37:47] VSServerUI: ISetupManager::GetGlobalCustomProperty() failed to find global prop in CProgressPage::R ...Show All
Visual Studio 2008 (Pre-release) When can we expect WCF (Indigo) support ?
Ok so it neat to be able to call ASMX Web services, and expose my Workflow as an ASMX Web Service. But I am really into WCF/Indigo Services right now. So it would be really neat to be able to be able to 'Add WCF Service'. Sure to come when Vista is released, but I was kinda hoping to orchestrate my Indigo Services earlier. Anyone know when we get WCF support Jules Hi Jules Is there any specific problem you ...Show All
Visual C++ bug: include <stdafx.h> in wizard generated Windows Form App
Please help with this bug, probably due to CRT not starting up. To recreate: In VS2005 create a new C++ "Windows Form Application" Add the line #include <atlbase.h> in stdafx.h (or anywhere else) I get the following error: --------------------------- Microsoft Visual C++ Debug Library --------------------------- Debug Assertion Failed! Program: l:\documents\src\test44\debug\test44.exe File: dbgheap.c Line: 1414 Expression: _C ...Show All
Windows Forms how to use "SocketType.Rdm" to create a socket?
Hello,all. Socket has many types,one of them is "SocketType.Rdm". As it says,this type of socket supports connectionless, message-oriented, reliably delivered messages, and preserves message boundaries in data. Rdm ( Reliably-Delivered Messages) messages arrive unduplicated& ...Show All
Visual C# Not all code paths return a value
I have this function that grabs some files for me...but it sends an error saying that not all code paths return a value.....Any help with this...I know this has to be an easy question for an expierenced developer...help please! public string getfiles() { string [] thefiles = System.IO.Directory.GetFiles("C:\\VG\\Schuling\\Appro"); for ( int x = 0; x < thefiles.Length; x++) { lbox.Items.Add(thefiles[ ...Show All
Windows Forms Owner Drawn Menus
I'm developing an owner drawn menu (overriding OnDrawItem and OnMeasureItem) with the same look as the native Visual Studio .NET 2003 menus. Two questions: 1) I need to change the color of the little triangular arrow that appears on the right  ...Show All
SQL Server Cursor approach versus T-SQL Set based solution--Avoid/Eliminate Cursor if possible
Two Scenarios: Scenario 1: T1 (Ticker varchar(10), Broker varchar(10), Qty decimal(18,6)) T2 (Ticker varchar(10), Trader varchar(10), Qty decimal(18,6)) T1 contains the Ticker of a stock, Broker offering the stock and quantity he/she offers T2 contains the Trader interested in Buying/Selling the stock and the quantity to be bought or sold. Sample data: T1 MSFT, Fidelity, 125 MSFT, Capital One, 200 ORCL, Nomura, 145 ORCL, Bear, 100 SUNW, Fidelit ...Show All
Visual C# Noob: What would be the best way to create an unattended batch process?
I've been tasked to do a program (C# VS-2003) that reads data from ASCII files and uploads them to SQL Server 2000. I created a WinForm as a demo, where I can select an ASCII file from a folder, process it and upload to SQL Server. There will be different files in the incoming folder of slightly different types, intended for different SQL-Tables. Job was acomplished and works fine. Now I have to get rid of the visual interface (WinForm) as ...Show All
.NET Development GenerateDirectDBMethods greyed out
Again I'm trying to auto generate the insert,select and deletecommand. I'm trying to accomplish this by using ODBC and a postgreSQL database. This was possible in the beta version but not longer in the RTM version. At first the add table dialog of the tableadapter is not showing any tables which it did before, when entering a query manually the parameters are detected correctly as is the primary key. After that only the select command is generat ...Show All
Visual Studio Team System Where are the virtual server images?
This is the site I go to http://msdn.microsoft.com/vstudio/products/trial/ this is what is says. Visual Studio 2005 Virtual Images <- this links to http://msdn.microsoft.com/subscriptions/ MSDN Subscribers have access to a series of Virtual Images containing a fully functional installation of Windows Server 2003, SQL Server 2005, Visual Studio 2005 Team Suite, and Visual Studio 2005 Team Foundation Server. These Vi ...Show All
