donaldg's Q&A profile
Visual Studio Visual Source Safe over Internet in old Visual Basic
Hi all! Can I use Visual Source Safe 2005 with Visual Basic over Internet Thanks noop: For basic check-out / check-in functionality, yes you can. However, if you want to Show History, Get older versions of files, Get Labels, etc, you'll still want to use something like SourceOffsite ( http://www.sourcegear.com ). See - http://support.microsoft.com/default.aspx scid=kb;en-us;320317 for Microsoft's KB article. HTH ...Show All
Visual J# Need header files odbc.h and oci.h PLEASE!
Hi, I'm trying to acces an Oracle 9i database from C++ via ODBC or OCI, but I cannot find the c++ libraries odbc.h or/and oci.h anywhere on the web. Would you happen to have them by any chance If so, could you send them to me please (to hammerjp@gmail.com) Thanks a lot! Pablo Hi, You may like to post this query on Visual C++ Forums . That's the best place to get quick response on C++ related queries. Thanks. ...Show All
Smart Device Development copy file from PDA to desktop PC
hi all any idea on how to programatically copy file from PDA to desktop PC using vb.net in VS.NET 2003 to send it from the pda to the pc you would need to do something like ftp on the device and send it to ftp server in IIS on the desktop pc. you can use ftp on if the winnet.dll exists on the pda. for ftp look at www.opennetcf.org they have a ftp class in their sdk its much easier if you get the pc to get the file from the device ...Show All
Visual Studio Express Editions Is there a "Setup" project available in Express editions?
Maybe a dumb question, but I have Visual C# Express 2005 Beta 2 installed on my computer but it seems like it doesn't have a Setup kind of project. Isn't it available in Express editions How else, except for the Publish feature (which doesn't work as well), can I deploy my applications Resorting to 3rd party software doesn't sound too good to me. Is it something wrong with my installation It would be a pity not to include in VS 2005 such a tool. Hi A.L. Forgot to answer your other question: Setup projects are available in in the VSTS SKU. -Patrick ...Show All
Visual Studio How to support template export in VS 2005?
Hi, There is not the topic of the template export implementation In VSIP document . Could anyone do me a favor Thanks! Maybe I havn't given a clear description. I want to implemente the function of exporting template develop environment of my own. After click the "export template" in FILE menu, what is the function I should do. If you don't known about this issue either, can you tell me which articles about this issue I should read. Best regards. ...Show All
.NET Development Randomly GNE "General Network Error" after upgrade MSDE 2000 to Sql2005 Express
I wish nice day, we have many, many bugs ( arround 10 errors messages from every user per week --- today 300 users using our application and up to end of May, 2006 we reinstal Sql 2000 MSDE -> 2005 Express next 750 users) from our application ( .NET 1.1, localDB on Sql2005 Express ) with exception bellow: ----------------------------------------------- General network error. Check your network documentation. -> ExecuteReader [.Net SqlClient Data Provider] | Call Stack | at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream) at System.Data.SqlClient.SqlCommand.Exe ...Show All
Windows Forms DataGrid Paging Problem. Please help
Hi All, I have to using 2 radiobuttons to control 2 datagrid summay and detail representively. when I click detail radionbutton, there are 10 pages records. when I click summary radiobutton, I select 3rd pages it display the following error. In the summary report just only 1 page record. "System.Web.HttpException: Invalid CurrentPageIndex value. It must be >= 0&n ...Show All
Visual Studio LoadSaveReportException : Invalid Report file path while using dataset and source
Dear All, I am new to .net in crystal report aspects. I was trying to add a report to my project using data set. I am getting the error : LoadSaveReportException : Invalid Report file path while using dataset and source These are the code I am using: ---------------------------------- prs_lib.ComboData objParam = (prs_lib.ComboData) this .cmbnats.Items[ this .cmbnats.SelectedIndex]; sqlselect = "SELECT * from prs_vreg_period where vcap_date between '" +DateTime.Parse(TxtRepItem1.Text).ToString("MM/dd/yyyy")+"' and '"+DateTime.Parse(TxtRepItem2.Text).ToString("MM/dd/yyyy")+ "' AND vcountry_id = " + objParam.Value +" ORDER BY vnat_number"; ...Show All
Visual C# Save Settings
I have two forms a and b. there is a button on a that will hide a and show b. Then i want to go back to a without making a new instance. Also pass a an new vaule. how is this done code below a private void ShowAction_Click( object sender, EventArgs e) { SingleActionSelect SelectActionDisplay = new SingleActionSelect (StationDataTable); this .Hide(); SelectActionDisplay.ShowDialog(); } b private void ActionSelect_Click( object sender, EventArgs e) { int index = ActionDisplay_listBox.IndexFromPoint(ActionDisplay_listBox.PointToClient( Cursor .Position)); Stationstatus s ...Show All
Visual Studio Team System Team Build Suddenly stopped working: System.NullReferenceException: Object reference not set to an instance of an object.
I'm using Team Build Beta 3 and have several team builds defined. Everything was working fine but now I keep getting (both in the IDE and from Command line) "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\TFSBuild.exe" start http://test-team:8080/ IQ "Messaging Service Install Build" /m:shaundev /b:c:\builds Microsoft (R) TfsBuild Version 8.0.0.0 for Microsoft (R) Visual Studio 2005 Team System Copyright (C) Microsoft Corporation 2004. All rights reserved. Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.TeamFoundation.Build.Common ...Show All
Visual Studio Express Editions RichTextBox - Font for visual lines > 4 should be RED
VB Express 2005 I have a richtextbox and wish to have: 1) The font for lines 1 - 4 should be BLACK 2) The font for lines > 4 should be RED The above relates to visually lines and what one views on the screen and not carriage returns etc. This is line 1 - BLACK FONT This is line 2 - BLACK FONT This is line 3 - BLACK FONT This is line 4 - BLACK FONT This is line 5 - RED FONT This is line 6 - RED FONT NOTE: This should be done for visual lines so if someone types in a very long line it will still work for word wrapping. I will try and - BLACK type in a very - BLACK long line to - BLACK show how I - BLACK would like for - RE ...Show All
.NET Development InvalidOperationException error
I have created a test C# project with only one format, which has a datagridview and a save button on it. I have linked the datagridview to the database via the data source configuration wizard, which has created a tableadapter, dataset and bindingsource. When I startup the project, data will be loaded in the datagridview. When I want to update the datagridview via de save button, I get the following error message: InvalidOperationException was unhandled "Update requires a valid UpdateCommand when passed DataRow collection with modified rows." I don't know what I have done wrong. I have seen other people ...Show All
Visual C# help with data set
Hi I have made a data set from a xml file with no problem. However how do you bind the dataset to a data grid Thank you DataMember property can only remember one assignment, since you are assigning a value in a for loop, it is going to remember only the last table name from your data set collection. Are you building a WinForms app or Web app Are you using .NET 1.1 or .NET 2.0 If you are using GridView in .NET 2.0 (at least you named your control as GridView) it can only show one table. Can you post the code where you load XML into dataset ...Show All
Visual Basic Deployment Help
I'm using a setup project to deploy my windows app. It works fine to install, but each time I make a change to the application, I have to uninstall the app, then reinstall. I would like for the install to check, and upgrade what is already on the PC rather than having to uninstall it and reinstall everytime. Thanks in advance Hi, bairdm, Yup, there is a way. Go to the solution explorer, select the project, and then look at its properties in the property grid. Scroll down until you find the RemovePreviousVersions property, and set it to "True." When you install the new version of your ap ...Show All
Visual Studio 2008 (Pre-release) Error while generating metadata.
I'm trying to use a XmlAnyElement attribute in a Message contract. However when ever I do so my service fails to generate metadata when I navigate to the service endpoint with my browser. I saw this example posted here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=222421&SiteID=1 This has everything I'm trying to accomplish but also fails to generate metadata Is it a reasonable expectation that metadata should be able to be generated for this example Craig. [ ServiceContract (Session = false )] public interface IMyClientContract { [ OperationContract ] [ XmlSerializerFormat ] void Do( M ...Show All
