wirelessdeveloper's Q&A profile
Visual Studio Team System VB6 mssci provider
I'm assuming it's a known issue that policies are not enforced on checkin or are we doing something wrong Some policies will work and some will not. Policies that require VS2005 are not going to work. What policy is not being enforced in your scenario Ed ...Show All
Visual Studio Team System Find Changesets
How do I go about determining which changesets were created between two dates Is there a web service that can supply this information for me Michael, The VersionControlServer object in the client OM exposes the method QueryHistory which returns an array of changesets for the specified item. If you provide $/ as the item and specify the date range, it should return all changesets that were checked in during that time period. You can also scope this to a particular team project or folder by specifying the full server path to the folder. This blog entry has an example of how to retrieve the VersionCon ...Show All
Visual Studio Express Editions Writing code in VB .net express edition
Hello.I use Visual Basic 2005 Express Edition and I wan't to now where I can found diferent functions for VB.For example: How to launch a program when the user click a button hi you can use process start from system.diagnostics name space with the aplication name like "notepad.exe" System.Diagnostics. Process .Start( "app.extention" ) hope this helps ...Show All
Visual C++ Help ID generation not available for ActiveX Control
Hi there, Well we have been using an ActiveX control in VC6 for quiet a long time and generating help ID for them but , when We start using newer versions of VC Studio the Option for generating Help IDs for ActiveX control is not displayed and we have difficulty using Context Sensitive Help, If there is any work around Please help us out. Regards Usman Mahmood Yes this is still an issue can I have any work around for it or .... Regards, Usman Mahmood ...Show All
Visual Studio Express Editions Composite Keys in the Database Explorer?
I am working on my first application and it will include a database, so please excuse my newbishness. I have read a bit about composite keys (primary keys made up of the aggregate of multiple columns) and I have decided that this is what I need to use. But how do you set composite keys in VB There is a button in the database explorer when you select 'open table definition' but I can only set 1 column as the primary key. I tried to select "manage indexes and keys" and set up 2 columns as a unique primary key, but I must be doing something horribly wrong as I have corrupted my .xsd file (I think) several times now, causing the dat ...Show All
SQL Server Cannot create new Subscription?
Hi, I recently got the September CTP Enterprise version and installed it on box with Windows Server2003 os. When I go to a report and try to create a new subscription by going to SQL Server management studio, that option is disabled for me. I have already setup the email configurations and started the sql server agent. Anyone has ideas why this should happen I'm having a similar problem where: - "New Subscription" is greyed out in Server Management Studio. - Subscribing via the browser, even as the Content Manager, allows you to fill in the form for the subscription but then reports the following error "The cur ...Show All
.NET Development DataChanged
Is there some simple way to know when the user has changed data I'm useing bound controls and would like to activate some sort of Save button that flags the user they need to save their data back to the database. The form has many data databinding and tableadapters. IE master->detail->detal->detail (ya 4 sub levels of detail shown) I can easily make a single save button to save date all the way down the tree but I'd like to flag the users to make sure they know they need to save everything once they start to make changes. In addition to using the DataSet.HasChanges() method ...Show All
Visual Studio Express Editions How do I make a screenshooter?
I've been messing around trying to find out how to(at the click of a mouse) : disable the rest of the screen for capturing; draw a dotted line according to the cursor's movement(to highlight); to copy the selected image to windows clipboard(when the click is released); HELP PLEASE--I've been baffling over this for too long!! First thing you need to do is capture the mouse. For the rest, you need to read up on how to do it in C++ and do it via pinvoke. ...Show All
SQL Server Error message
Hi, I keep getting this error message while creating and deploying my report. I already restart the SQL server services(MSSQLServer) a lot of times, it is still the same. An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'AdventureWorks'. (rsErrorOpeningConnection) A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) I also got another error message while deploying my report. The selected report is no ...Show All
Windows Forms Menu Strip?
This might be dumb!!!! Is there not existing code or snippet somewhere that I can just past into each toolstrip and menue strip to do " common functions" Like Open, Close, New, Exit, Print Form. etc. I am still new and have looked for days. I have inserted "Common items" but the snippets I seem to have don't work. So far I have found only "me.Close()" Hey at least I can shut ur down when it all screws up.lol Thanks. You have a short cut on the smart tag named Insert Standart Items, it adds the common commands with all the icons (but you need to implement them anyway) ...Show All
Software Development for Windows Vista Deploying WWF Beta 2...
Hi, I've got a problem - my workflows work on the development pc but not on the production server. I'm using WWF Beta 2, both machines are in a very similar hardware configuration. The error message that i'm getting is: "Cannot create more than one WorkflowRuntime per AppDomain". The way that i'm creating WorkflowRuntime object is as follows: public WorkflowRuntime WFRuntime { get { if (_runtime == null ) { try { _runtime = WorkflowWebRequestContext .Current.WorkflowRuntime; } catch ( Exception ) { _runtime = new WorkflowRuntime (); } } return _runtime; ...Show All
.NET Development Can you do IE-like NTLM negitiation with HttpWebRequest in winform application?
I am using HttpWebRequest to do an HTTP GET and receive 407, proxy authentication required, from our internal proxy server. When I sniff the network traffic I see that all requests to external sites do an NTLM handshake with the proxy server and IE handles this for me. Is there a way to do this with HttpWebRequest I've tried every combination of setting credentials on the request but still get the 407. My assumption is that I need to respond to the 407 with NTLM credentials, the way IE does, but I'm not sure how to do that. Any help will be much appreciated. ...Show All
SQL Server problem while passing connectionstring through URL
Is there any way to pass connection string and credentials to connect with Database at run time for a user Like if user A wants to connect with DB1 using Sql Authentication and User B wants to connect with DB2 using Integrated Security. How we can acheive this If I set the Credential to "Prompt Credential" and pass this connection string through URL "data source=servername;initial catalog=databasename;Integrated Security=SSPI" and set dsp:DatasourceName='' dsu:DatasourceName='' Report server use its own credential to connect with DB, but what i want is, it should use the credential of user (user B) to conne ...Show All
Visual Studio 2008 (Pre-release) milcore.dll missing from my system?
Hi guys, I'm finally getting around to playing with WPF. I created the simplest possible app that is just supposed to show a window and uses the simplest possible msbuild file. It compiles and builds 100% fine. But when I run it, I end up with a DLLNotFoundException triggered by a missing milcore.dll file. My dev box has the following software on it, WinFX Runtime Componenets (Sept CTP) WinFX SDK (Sept CTP) C# Express Beta 2 (Although I'm currently just building everything from the cmd line) I've searched my machine for milcore.dll and I can't find it. Searching the web for a solution has also turned up a blank. Any ideas Thanks. ...Show All
Visual Studio Express Editions MSI Installer and C# Express
I am happy with most of the features in C# Express, but ClickOnce deployment is not my preference - I would really like to use MSI. Can I combine C# Express with any MSI Installation packages I assume that it is hard to find out what merge modules etc. that should be included. Thanks in advance. Soeren The only thing you really need to run a typical .NET application, is the .NET runtime, which you can download here: http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en Most installation packages such as Wise and InstallShield, ...Show All
