Mark W Arnold's Q&A profile
Visual C++ Controlling settings for all the vc8 projects from a common place.
Hi, Issue: Controlling settings for all the vc8 projects from a common place. I have heard about property sheet for vc. Can anyone explore about property sheet for VC In VS2005 MS has provided MSBuild but it is not supporting VC projects. Thanks in advance. Regards, Madhur To inherit from a property sheet, switch to the Property Manager window and select all projects / configurations you want to have the same properties, right-click, and choose to inherit from a property sheet. In answer to your second question, you can automate the upgrade process using vcbuild.exe. Type "vcbuild / " at the command-line for mo ...Show All
Windows Forms Please post here if you are running a Terrarium server.
I want to get a feel for how many are out there, if any. Thanks! It's up! I had a little time last night and things went well. Since it's not running on a dedicated server I may need to limit the number of clients. I'm going to do this by not publishing the URL. If you would like to attach your client ...Show All
Smart Device Development How to read the dataBase of the PocketPC ?
Hi everybody.. I'd like to know if t's possible to read the "Contact Database" of the pocket PC, and how is it possible if it is... Thanks I use the CF V1, so I've download, the "In The Hand" demo. It contains all the functions I need, and It runs very well. Thanks a lot for your precious help. Regards ...Show All
.NET Development Is v2.0.50727 the final?
I installed Visual Studio RC and found that the Framework version is v2.0.50727. Will this be the final version Hello, As far as I know, the final version of of the Framework is v2.0.50727.42. Hope that helps, Stephen [Microsoft Common Language Runtime: Security - Developer] http://blogs.msdn.com/stfisher ...Show All
Visual Studio Tools for Office excel vsto workbook appln
how can i create a stored procedure for access2003 from vsto There is no specific VSTO way for interacting with Access. In general, though, you would use the CREATE PROCEDURE command in ADO.Net in order to create Access stored queries. A Web search for Access Stored queries in VB.NET returns several relevant hits with additional info. iouri --- This post is provided AS-IS and confers no rights. ...Show All
SQL Server Cannot create a report - VS 2005/SQL 2005
I cannot seem to create a Report based on an SQL Server 2005 database. The IDE and the database server are on the same machine. The reports server is installed and running. During both installations (VS and SQL Server 2005 ) I opted for the complete install. I create a reports project - when I right click the reports folder and select Add New Item > Report - nothing happens. When I invoke the Report wizard and continue till the last step - pressing finish generates the following exception : =================================== Exception of type 'System.Runtime.InteropServices.COMException' was thrown. (Microsoft Visual Studio) ---------- ...Show All
Visual Studio 2008 (Pre-release) Client application authentication?
I realize that .Net 2.0 does not provide client application authentication and was wondering if WCF/Indigo addresses this issue in any way Thanks, Ray Manning Sounds pretty trivial , just use the assembly names as users. Use custom Token as you security and say proxy.UserName = assembly.Name proxy.Password = something excrypted on the client which the server know. Or part of the assembly signing. The server will reject you if the proxy does not provide this. Any such structure will always be insecure by definition ( replay attacks , cracking) ... but if more strong security is you ...Show All
SQL Server Upgrading from 'SQL Server Express 2005' to 'SQL Server Express 2005 with Advance Services'
Currently I have following things installed on my Computer 1. SQL Server Express 2005 2. SQL Server Management Studio Express 2005 CTP I need to install following things A. Microsoft SQL Server 2005 Express Edition with Advanced Services B. Microsoft SQL Server 2005 Express Edition Toolkit Do I need to uninstall any any of 1 or 2 What should be my path to upgrade these software. Don't you wish you could get Advanced Services, the Toolkit and SP1 separately! I got confused enough upgrading from just Express to Express with Advanced Services. Here ...Show All
.NET Development The connection could not be made because the target machine actively refused it.
Hi. I've developed an application for transfering files between a client a server. There is a remotable object in server hosted in IIS which has a method named "UploadFile". Client portion is a Windows Application project which gets a reference to the remotable object and calls "UploadFile" to send a file to the server. File is sent by being broken into many chunks sent sequentialy. I've a class named "FileData" which encapuslates a Stream object. So, to send a file to the server, I instantiate the Stream object using the path provided and use the FileData object to the server. I receive the following erro ...Show All
Windows Forms Action detect in Windows Locked Mode
Dear All, Can i detect the user what key is type when the windows in Locked Mode (Ctrl + Alt + Del, then LockComputer). Thx a lot. ...Show All
.NET Development .NET Runtime 2.0 Error Reporting
Hi, My application is running on 65 PC. After a few hours, this applications crash on 2-3 PC. I get no exception in my log files. I set the Application.ThreadException and AppDomain.CurrentDomain.UnhandledException exception event handlers. The last one is triggered with 'System.NullReferenceException: Object reference not set to an instance of an object.' but there is no stack trace available. I got no dump file, no popup window. I only get the following entry in the event log : Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 1000 Date: 13/05/2006 Time: 21:53:39 User: N/A Computer ...Show All
Windows Forms Install Error
Wanted to install it and check it out and it wouldn't work for me (the client install) Got this error: "Unable to locate the localhost database. Please contact your network administrator and re-install this application" Then it rollsback everything. Anybody else get it working Do I have to install the server on the same box first or something ...Show All
Visual Studio Express Editions Network Applications with VB2005 Express a few simple questions????
Hi There, I know that this might sound like a foolish question but... I'm new to this programming so please bear with me Here Goes... If I want to develop a client/Server application, like say a front end to look at a large database and deploy it out to many clients across a LAN (not an Internet solution) then can I do this with VB 2005 Express edition I know that the SQL Express edition cannot be deployed on the network server but If I were to develop the APP in VB Express could I then use SQL 2005 Standard edition or would I have to rewrite my code to connect this app up... or to put it another way,&nb ...Show All
Visual Studio Express Editions convert from byte to int
hello, how can i convert in c# from byte (like 50) to int i try to do this code, but it didn't convert!!!: for ( int i=3;i<14;i++) Data += (( int ) e.Buffer ).ToString(); thank you, moria byte implicitly converts to int. You do not need to cast the byte if you add it to an int. int nVal = 10; byte byVal = 50; nVal = nVal + byVal; // nVal will be 10+50=60 If Data is of type int you can write it like Data += e.Buffer( i ); If you would like to visualise that there is a cast happening you can write it like this Data += (int)e.Buffer( i ); ...Show All
SQL Server Errors in the high-level relational engine
I'm getting an error when processing a partition - Errors in the high-level relational engine. The table_name table that is required for a join cannot be reached based on the relationships in the data source view. This table is actually joined to another dimension table, which is then joined to the fact table. How can I resolve this error I did notice that there are no keys in the dimension table that relate to the fact table for this particular table. Is this a data issue ...Show All
