Daniel Thomas's Q&A profile
Visual Studio Express Editions Running an exe included in the project
ive imported some install exes into my project via add existing item and want to make 1 exe that opens a list of the files which i can open from there ...Show All
Visual Studio Express Editions Referenceing.
Im just messing arround and Ive made a registration type thing and Ive got a question. Say that you get all to the end of the regristration where it asks you if all of the information you input is correct, and you say no, how would you make it so that you would go back to the part where you input all the information. First off we are going to need to know what language and technologies you are using... Is this a windows forms application of a Web application. Remember that this group is for problems relating to the registration and install of the express products. If you have a language specific prob ...Show All
Windows Forms binding a listbox
Ok, I have a Database which has a table 'Projects'. with fields ID, ClientName, Address, Phone, County & Workers. I would like to bind this such that i have a list box showing all the available Client Names. I would also like to be able to Edit the Data In the DB via a series of controls. So i went and set up all the ...Show All
SQL Server [rsDuplicateScopeName] More than one data set, data region, or grouping in the report has the name ‘CustomerName’. Data set, da
I have one rdl with about 7 rectangle regions, each rectangle I dragged a table inside. When I try to render myreport I get [rsDuplicateScopeName] More than one data set, data region, or grouping in the report has the name ‘CustomerName’. Data set, data region, and grouping names must be unique within a report. Furthermore, I don't see anything in the Rectangle's "Data Region" dropdown to associate my tables to it. Also, once I do successfully assign a rectangle to a Data Region (a table) successfully, I assume i can then reference fields from other DataRegions / Rectangles in other tables such as doing a summary table at the en ...Show All
Software Development for Windows Vista vista search technical documentation - where can I find it?
Perhaps it is my search and research that is lacking, but I am finding it very difficult to get any technical / development info on the new search and how it can be used. I did see the chananel 9 movie, which told me about OLE DB provider and thumbnails. I have also gone through WinFX documentation in SDK. I have interoperability requirements that I want to examine urgently. I am sure it's out there amoung the tons of stuff. But I can't find it. I have tried for hours. Please help Hi there. The bad news is that some of this documentation has taken longer to publish than I had hoped. The good ne ...Show All
Windows Forms Cross-thread exception (beta2) / deadlock (release)
I have a method where one control adds another control to its control collection. It looks something like: void Add(Control control) { Debug.Assert(control.InvokeRequired == false); Debug.Assert(InvokeRequired == false); . . . Controls.Add(control); // exception/hang } This routine will occasionally throw a cross thread exception in saying that 'control' was accessed crossed thread (on beta2) and it will hang/deadlock on the release bits with the call stack ending at SendMessage (partial stack at the end of this mess ...Show All
Visual Studio 2008 (Pre-release) When?
When is Linq shipping in product form Whidbey Orcas Somewhere in between ...Show All
Windows Forms ClickOnce via UNC Passing Parmeters in the command line
Hello to All, Has any successfully launched a ClickOnce winform application that accepts command line arguments from a UNC path The application I am deploying needs to determine environment (Test, UAT, Production) and specific action information. I have written a simple application that can retrieve command line parameters from the website activation. http://127.0.01/deploy/clickoncetest.application environment=test&ftpjob=job1 Any insight would be greatly appreciated. Steven Sameer, Thank You for the advice. The use of the system.environment class did not work for me. I attempte ...Show All
Software Development for Windows Vista Persistence & tracking in beta 2.2
I have created a simple application with 1 code activity, one delay and another code activity, in that order. If i'm enabling both the tracking and persistence, my workflow stops at unload If one if disabled, the other works just fine. Any ideas why this might happen Are you using a shared database Is the app hosted in ASP.NET or a win form app Can you post your code for creating the runtime and adding the tracking and persistence services ...Show All
Visual C++ my win32 api app build in studio 2005 couldnt run in other computer..
i created a new project with: File >> New >> Project >> Visual C++ >> Win32 Project (Empty project).. ... ... build succeeded and run properly. but when i copy it to my friend's computer and try to run it,. there is errors,. app couldnt be run. and says that there may be some configuration problem with the app. plx help I'm glad to see a blog on this. I'll help on my stuff also. Do you know the "simplification" Nikola refers to for RTM has happened ...Show All
.NET Development Hungarian dateformat does not work for a client side comparevalidator (ASP.NET)
Hi, We are developing an asp.net (.net 1.1) application which is also used by people in Hungary. The dateformat used there is yyyy. mm. dd. (dot-space between the parts and a dot at the end). However the comparevalidator does not validate this. Also for some other countries (like Slovak : dd. mm. yyyy) the validator does not work. I have found KB article #834330 and installed the patch mentioned, which fixes the error the Slovak, but not for Hungarian date format (because of the <dot> at the end. I cannot find another KB article which addresses this, so my question is if somebody else has this same issue and what the solutio ...Show All
Visual Basic MenuStrip shortcuts
Hi, I have a normal form with a menustrip docked at the top and also a richtextbox. The problem is whenever the richtextbox is in focus, some of the menustrip shortcuts don't work (Ctrl+R for example). The richttextbox seems to be "stealing" certain key events so the menustrip doesn't process them. Could someone please tell me how to correct this. Thanks, Alex Alex - You can set the ShortcutsEnabled property of the RichTextBox to False - RichTextBox has a group of shortcut keys defined by default, including CTRL+R. Note however that this will disable all shortcut keys for the RichTextBox, includi ...Show All
Visual Studio 2008 (Pre-release) am finding some problem with invoking a web service written using WCF.
hi, I have developed a web service in WCF and its working fine on windows xp sp2. when i run the same code in windows 2003 server then i get some error when my client tries to invoke the web service that is hosted in the IIS. The error is as given below: 1. The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error. The above error occurs when i set the authenticationScheme = "NTML" in the app.config file on the client side 2. The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The server authenticati ...Show All
Visual Studio Team System Cannot connect to the Team Foundation Server
I have successfully installed Team Foundation Server Beta 2 with both App Tier and Data Tier on a Win2K3 box. We only have a Win2K domain, but I read that this is not a problem and others were able to connect their VS2005 client to the TFS. I have installed VS 2005 Beta 2 on a Win2K client and tried to connect to the TFS. I only get the "Unable to connect to this Team Foundation Server: MyMachineName. Team Foundation Server Url: http://MyMachineName :8080." error message. The reasons listed don't give me hint on what's going on. The server name, the port or protocol are correct. I should have permission, because I am using the same doma ...Show All
Visual C++ File I/O : Which one to use? CFile or fstream
Hi Jahfer! I need to write the following structure to a file in binary mode. struct EmployeeData { char strName[50]; UINT nAge; float fSalary; }; First you should be sure that the alignment is always the same! I would recomment: #pragma pack(push, 1) // your struct #pragma pack(pop) For that, which class that I will use CFile or fstream If you use MFC I would recomend CFile: CFile::Write(&structVar , sizeof( EmployeeData)); -- Greetings Jochen Kalmbach Microsoft MVP VC++ My blog about Win32 and .NET http:// ...Show All
