MYVB's Q&A profile
Windows Forms filling treeview control from xml file
could u please tell me hoe to fill my teeview from xml file send me code please ...Show All
Visual Studio Express Editions Problems accessing certain help topics.
Hi All :) I'm trying to access 'Network Programming' under '.NET Framework SDK > Quick Technology Finder' from within the C# Help Documentation. It keeps saying the content isnt available, and that I need to check my settings to ensure it loads online help where required. I've done this (Internet works just fine under IE) and am dumbfounded as to why this wont work... Any ideas Hello, I'm having the same problem trying to use online help. My internet connection works fine, but I can't access any help files that are online. And I'm not using a proxy server. If anyone knows how to solve this- please h ...Show All
Visual Studio 2008 (Pre-release) soap security negotiation failed
I have a service with no security, atleast i didn't configure any. When I try to call it from another machine it throws an exception saying thta soap security negotiation failed. It works fine when the client is on my development machine but not when it is on other machines. Any ideas Steve All the pre-defined bindings except for basicHttp default to enabling security. So you you didn't make any changes, you're problably using security. Thanks, Scott ...Show All
.NET Development bug in Int32.Parse
In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't. The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Professional int x = 0; x = Int32.Parse("0") // throws FormatException x = Int32.Parse("00") // works fine x = Int32.Parse("000") & ...Show All
Visual Studio Express Editions SDK errors
I am installing the Platform SDK and i get an error. I do like it says and i run VC++ then make a new project. I name it then go to Win32/Win 32 console app. I am gettting errors when running the wizar. I click "Next" then i get the error: An error has occured on this page. Line: 385 Char: 2 Error: Expected identifier Code: 0 URL: file://C:\Documents and Settings\Owner\My Documents\My game\VC\VCWizards\AppWiz\Generic\Application\html\1033\AppSettings.htm 2) A question is when i did (a step from http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/default.aspx ) Step 3: Update the Visual C++ direct ...Show All
Windows Forms Problems/bug? Navigating Webbrowser control from a remote form
I have two forms: form1 is the starting form; form2 is a form with a webBrowser control. If I navigate the browser control from form2 where the webbrowser resides it works fine. If I navigate form2’s browser control from form1 my firewall and network monitor tells me that an http request has been issued and then completed but the browser control  ...Show All
Windows Forms DataGridViewComboBoxColumn bound to complex object
I have a list of Customer objects(List<Customer>) bound to a DataGridView. One property of Customer is Category which itself is an object of type Category . I want to bind this property to a DataGridViewComboBoxColumn column. At design time, I add a DataGridViewComboBoxColumn column to the DataGridView. I set the following properties of this column. (pseudo code) DataPropertyName = "Category" DataSource = CategoryBindingSource DisplayName = "Name" ValueMemeber = (blank) The BindingSource CategoryBindingSource is bound to a List<Category> object. But when I run it, I got two errors for ea ...Show All
Microsoft ISV Community Center Forums Execute an access DB macro from VB.NET
Hi, I am having problems trying to execute an access DB macro from my VB.NET APP. Any help is welcome. Thanks Mike Hi, Thanks for the code. I have it working now. The only part that I could not get to work was the "CloseCurrentDatabase"; however, the quite command worked great. Thanks Again Mike ...Show All
Visual Studio 2008 (Pre-release) SVCUTIL.EXE Error
I am trying to get a very basic WCF service to work using the helloworld example described at: http://windowscommunication.net/collateral/pages/howto.htm I've built it exactly according to the instructions at that location using exactly the same code. (The only modification I made was to run it on port 8080...if I try to run it on port 80 as the orginal code, I get an IIS error that says that port is being used by another application. Here's the code I'm using: [code language="c#" ] using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; namespace HelloService { class Program ...Show All
Visual Studio Team System Validate Diagram in Logical Datacenter Designer
Hi, I'm pretty sure that in the previous beta / CTP I could right-click the design surface of a Logical Datacenter Diagram and select "Validate Diagram". I don't seem to be able to do that now, so has that feature been removed And if so, why is that no longer needed Many thanks, Tony Loton www.lotontech.com Hi Tony, You could do this on all diagrams up to probably the December CTP. The Validate action on a particular diagram was validating the underlying SDM. We removed the command because in VSTESA, the SDM files are only modified only by the designers. As such, there was really no need for a user-based validate action. On Deployment ...Show All
Visual Studio Tools for Office Build an Action Pane Across All Document Types?
In VSTO 2005, is it possible to build an action pane which is accessible across all documents Rather than associating an action pane to a single document or single template, I'd like to have something (exposed in an action pane) which is available to -all- documents opened in Word. I understand that Word add-ins have the global availability that I want but I don't believe add-in functionality can be exposed via a pane, can they There is some functionality which we'd like to provide as a service to all of our documents and we'd like to expose its user-interface in an action pane (or a similar pane like the research pane).&n ...Show All
.NET Development Prob with System.diagonstics.process
Hi, with the help of system.diagnostics.processes class, i'm opening a new process - iexplore.exe and passing in the required parameters. it works on my machine, the iexplore.exe process starts but however, the process doesn't start on the server where i need to deploy it(microsoft server 2000). what could be the prob plz help Could you provide some more information for us. Are you running this code inside a Windows app, service, web service, whatever Can you post the exact code you are using Off the top of my head I'd lean toward a security issue or an attempt to do something like this in a web environment or servic ...Show All
Visual C++ Is there any thing equivalent to NotOverridable in C++?
Hi guys, My problem is this. class Base { public: void OneFunction() { cout<<"Base"; } }; class Derived:public Base { public: //overriden, I don't want this to happen. void OneFunction() { cout<<"Base cl ...Show All
.NET Development Best Way to Copy Data From Server A Table A1 to Server B Table B1 w/ C# and ADO.NET
Hello ... new guy here ... thank you for your patience. I've seen lots of ADO.NET examples (including the 101 C# examples), but I have not found one "exactly" like this...and I'm looking for the best practice... Here's my environment: SQL Server A has a database that contains table A1 SQL Server B has a database that contains table B1 Table A1 and B1 have an identical structure (columns, datatypes, etc.) Rows periodically flow into table A1 from various SQL Server sources. I would like to create a C# application (VS 2005) using ADO.NET that simply copies the rows in A1 (the source) and appends them into Table B1 (the target) on SQL Ser ...Show All
SQL Server Label 3X7
Hi, I want to create a report to display and print 3 * 7 sheets of labels. Please guide me to achive this. Thanks, Prashant You can setup the report properties Page Width and Page Height to fit the size desired. I have not seen this used for sheets of labels, but many people use this to differentiate for Portrait and Landscape modes. ...Show All
