Bill_M's Q&A profile
.NET Development Update connect not working..
Hi all, I am trying to save changes to a dataset in an MSDE database. First I get data from an Interbase database and fill in a dataset with it via a DataAdapter. next I use a dummy edit to mark them and changed. Next I popullate another dataset with data from my MSDE database using another DataAdapter. Then I merge the Interbase DataSet into the MSDE DataSet then do an update...... System . Data . Odbc . OdbcDataAdapter adapter = ...Show All
Windows Forms can i copy row and it's child rows and make new row with the copied one ?
i want to copy the current row that im on with it's child rows in the child table and make a new row with the copied one a note: i have an auto number in the parent row and it's a primary key so it will be changed automatically . thanks. ...Show All
Visual C# Summary of C# Classes
Anyone know if there is a URL, similar to the Java Docs Class summary, that gives a summary of all C# classes, fields, methods, interfaces, inheritance etc where you can click on a specific NameSpace and it will give you all the Classes in that NameSpace, and if you click on a specific Class, it will give you more information about it, such as its methods, or fields (Similar to the Java docs Class summary, where it lists the packages and Clas ...Show All
Visual Studio Team System VS 2005 RC aligns with what version of TFS?
There is no TFS beta 3 posted yet--which version of TFS does the VS RC work with I've also been trying to find out about this. We're on the July CTP of both TFS and VS2005 and we'd like to move to VS2005 RC1 if there's a stable version of TFS we can use with it. ...Show All
Visual Studio Express Editions AppDev - Good Training?
Hello...has anyone out there completed the AppDev courses in VB.NET If so, how good are they Most books I read make me feel like I am spinning my wheels. Thanks, Brian also try the www.learnvisualstudio.net videos if you haven't already. there are 16 free vids to teach programming. ...Show All
SQL Server How to assign Unique PKs and FKs on split of txt rows into DB tables
SSIS 2005 Ok, I have a task in SSIS that does the following and works: 1) Brings in a txt file 2) Using a conditional component, checks for a value in the row. 3) Based on the value, splits the row into one of 3 tables (Header, Maintenance, or Payment) Here is a print screen of what I have so far which splits Header rows into it's own table, Maintenance rows into its own table, and Payment Rows into its own table: http://www.we ...Show All
Visual Studio Team System Installing TFSB3R As Workgroup Then Adding To Domain
Hi, I have tried everything to install b3r on a standard win2k3sp1 virtual server, but i keep getting the dreaded 28100 error loading event web service error. i followed the install instructions to the letter on a clean image and googled for every known possible cause for this error (blank passwords, permissions on windows\temp, adding all 3 accounts to local admin group etc etc) but it was no good so i gave up and tried something different ...Show All
.NET Development Using System.Net Class
i want to write a program which will download a file from internet.......but during that i want to show some updates of most likely like progress or so...... i came to know that i have to follow the IAsync...but no further could you please provide some useful info. The new System.NEt WebClient has APIs for you to subscribe to the events of progress. The following code should provide some guidance. Let me know if you have more questions ...Show All
Visual Studio Tools for Office VSTO2005 Outlook
I have a VSTO2005 Outlook addin that creates a toolbar in Outlook at startup. The toolbar includes several buttons. I now want to create and make visible a different toolbar when users open or create a task, e-mail or appointment. Any help will be appreciated. John Thanks for helping me. So if I add a button to the Task commandbar while Outlook in initializing will it then show when t ...Show All
Visual Studio Express Editions Error C2248
I searched for other cases of this error, and could not find anything similar to this. The online help hinted at the cause but the solution did not work. I was unable to paste into this form (Win 2000, IE 6 SP1), so I have pasted some code samples at http://spaces.msn.com/members/robertjohnson/ If anyone can be bothered to read through this turgid example I'd like an opinion on how to get it to compile. It worked on VC 7 compiler, and it's prob ...Show All
Visual Studio Team System Unit Testing Web Service created from Appliction Diagram
Scenario . (Simple File based Web Service created from Application Diagram) 1. Create a Distributed System Solution. 2. Add a Web Service to the Application Diagram (Leaving the Project property as default so a Cassini file based web app will be created) 3. Right Click - Implement All from Application Diagram. (This creates the file based Web App with a single empty web service) 4.Add a simple hello ...Show All
Smart Device Development VS 2005 install - SmartPhone Device Forms not working in designer
I just installed VS.NET 2005 release and tried to take my existing projects and open them. They were previously run in the RC and worked fine there. Now in the new fresh and clean install (no errors) none of the Smartphone forms want to open any longer. I also created a new project and added a form there which also fails. What's happening is that there are no errors, but the form esigner doesn't show. All I see is the Component tray contain ...Show All
Visual Studio 2008 (Pre-release) WSE3 Security Problem!
I have a web service (WSE 3.0) hosted in IIS (ASMX). The code behind the service is in a class library that I have added to the GAC--This is necessary for my project. I am having a timestamp security problem WSE910, WSE065. I know I need to change my timeToleranceInSeconds value. Which I have done in the Web.Config file for the ASMX. However, I think the problem lies in the configuration of the actual service class, which is in a DLL, and thus i ...Show All
Visual C++ C++ Build Failure
I get stuck on the easiest of codes, the "Hello World!" code. What I do, is start a Visual C++ Win32 Console Application, Empty Project... And Application Type Console Application. Then, I add a file to the Source Files called HelloWorld.cpp. This is my code I type: #include <iostream> main() { std::cout << "Hello World!" << std::endl; } Then I try to build, compile, anything, but I keep getting this err ...Show All
.NET Development What object is best for collecting files via http
Any tip appreciated! Thanks in advance, kk Or try Systen.Net.WebClient , which is more user-friendly for starters. It doesn't offer all the bells and whistles exposed by HttpWebRequest and HttpWebResponse though. ...Show All
