Software Development Network Logo
  • VS Express Editions
  • Game Technologies
  • Visual Basic
  • Visual C++
  • Visual FoxPro
  • .NET Development
  • Visual Studio
  • Visual J#
  • SQL Server
  • VS Team System
  • Visual C#
  • Microsoft ISV
  • Windows Live
  • Windows Vista
  • Smart Device

Software Development Network >> Robert Fontaine's Q&A profile

Robert Fontaine

Member List

Saratha
Khelb
ripern
Tim Mischkin
Galb
Mirko Teran
RensV
Gilles L.
Doug Maynard
hima2006
Raph
Brian Harrison
YnottonY
Federico Caselli
seand_03
OICU812
txc43
Draxinmus
mohana
dangraz
Only Title

Robert Fontaine's Q&A profile

  • Visual Studio Team System Checkin a project into VSS 2005

    Hi.. everyone.. I have a real simple question for all of you. How do i checkin a project in VS2005 into VSS 2005. The version i using is VS 2005 Team Suite. I do not see any "source control" option at the dropdown menu under file like what VS2003 have. Please help me on this, have been meddling and trying out for 2 days. Thanks in advance. Regards, Kashiro I hate to ask but have you verified that Visual SourceSafe 2005 is installed You might want to check if it appears under Control Panel->Add/Remove Programs. If it is installed, the other thing to check is that the VSS SCC plug-in is selected within ...Show All

  • Windows Forms how to bind 2 columns to same lookup table with combobox?

    Following seems NOT to work but maybe i found the solution (see below)             this.p1ComboBox.DataSource = personView;             this.p1ComboBox.DisplayMember = "lastname";             this.p1ComboBox.ValueMember = "pid";             this.p1ComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", bindingSource, "person1", true));             thi ...Show All

  • Visual Basic VS 2005 IDE Unresponsive

    We had originally installed Beta 2 of the product which ran better than expected. After using the tool from MS to uninstall the beta software we then installed VS2005 Final which we downloaded through our msdn subscription. The IDE becomes just about unusable. Not only that but it pretty much renders the computer useless while it eats up CPU cycles. This occurs during the following conditions: 1.) We make a small change in code and the editor hangs, the hour glass pops up and the cpu usage for the devenv.exe process is usually at 99%. The icon at the top of the VS IDE switches to the default exe icon. This unresponsive behavior usually ...Show All

  • Windows Forms Why is SplitContainer a sealed class?

    Hi, I just tried to derive from SplitContainer but had to notice that it's a sealed class. Why is that Probably a little late, but FYI: It's no longer sealed in Beta 2. ...Show All

  • Windows Forms Adding a new "blank" record to edit

    I have a bunch of controls bound to a dataset. When I bring up existing data and make edits, all is well. But I'm missing the boat completely when it comes to adding a new blank record to be filled in.  I try adding a new row, but just get DBNull exceptions. Where am I going wrong You're probably having the "two different&n ...Show All

  • Windows Forms winforms 2.0: how to create a template that contains an "about" form + splashScreen

    hiya, Is it possible to create a project template that contains the above So instead of choosing the default "windows aplication", I could choose a windows application that includes my company "about" form + company splashScreen Many thanks, yogi thanks folks, that worked a treat. I don't know why you have to "select the zip folder that you have just created" ..the whole point of the excercise was to create a template...I see this as an unnecessary extra step that vis studio imposes. Anyway, happy days. cheers, yogi ...Show All

  • Software Development for Windows Vista Problem with Lab6 - Exercise 2

    I followed all the instruction up to the point where is says to: " Right-click on the FabrikamWorkflows project in the Solution Explorer and select Publish as web service " I get the following message box when I try to publish as web service: --------------------------- Microsoft Development Environment --------------------------- The web service could not be published because there is no workflow in the project that uses the WebServiceInput activity. --------------------------- OK --------------------------- I then opened the complete lab and I got the same message box. Cheers John ...Show All

  • Visual FoxPro How to play a Windows Media Audio format (WMA) in VFP?

    Hi all, I am now trying to create a small program to play media audio files. I'm now using the MultiMedia ActiveX control (mci.ocx) to play these files but this ocx seems can not play WMA files while this type of file is getting more and more popular to music-lovers. Could anyone tell me how to play WMA files in VFP. Note:I want to play them directly in VFP with MCI control or with some API function that VFP can handle, do not have to use ActiveX of 3rd party (If have to use ActiveX of a third party to play , i can create one for my own in VB6). Do you have the latest codecs installed, right my two cents, ...Show All

  • Visual C# Displaying Numbers

    This displays numbers from 0 to 25...i was wondering what i could use to not display numbers 10 through 15...which means i want to display numbers from 0 to 25 except numbers from 10 to 15.....any help static void Main() { for ( int j = 0; j<26; j++) Console.WriteLine("Number {0}", j); Console.WriteLine("Press enter to continue"); Console.ReadLine(); } } Oops that one should be: int [] values = {1,2,3,4,5,6,7,8,9,15,16,17,18,19,20,21,22,23,24,25}; foreach ( int count in values) {          Console.WriteLine("Number {0}", count); } Console.WriteLine( ...Show All

  • Visual Studio Team System Team Build not setting "Integration Build"/"Resolved In Build" for associated work items

    I apologize if this has been answered before, but my searching turned up nothing. For some reason when we run our builds they're not updating the "Integration Build" (for scenarios/tasks) or "Resolved In Build" (for bugs) fields. The build knows what work items were resolved between builds because they show up just fine in the reports, but it's not updating the actual work items. Any clues TIA, Drew Nevvvvvermind. No sooner do I ask than I figure out that the UpdateAssociatedWorkItems property is not being set by our TFSBuild.proj. *sigh* Well, hopefully this helps s ...Show All

  • Software Development for Windows Vista WMF9 sdk help please

    I used WMF9 to render a file from harddisk.I used IWMReader::Open method. I called IWMReader::Start method.All these works fine without any runtime error. Onstatus , I am getting status as Opened, but no video is displayed. Can u please help me as it is urgent. I want the video to be displayed in a picture box.( I am using C#). What are the steps to be done to display video in the picture box. I haven't tried this with WMF in c#. Is DirectShow an option ...Show All

  • Visual C++ XML in unmanaged C++

    I need to use the XPathNavigator.  What is the include file for the XML in unmanaged C++   You can use MSXML in unmanaged code. http://msdn.microsoft.com/xml/default.aspx ...Show All

  • Windows Forms Control.Invoke & Delegates in VB

    does anyone know how to use the Control.Invoke method i want to fill a treeview from a different thread, so to add the nodes i have to use the Control.Invoke method  (or the Control.BeginInvoke / EndInvoke, but that sounds even more complicated) i cant find an example in MSDN thanks in advance! thanks guys! if anyone is interested, here's the cod ...Show All

  • Visual C++ Getline () error in VS 2005

    Hi, I am running into an error with getline. I am a student and I am using Visual Studio c++ 2005. I am writing a Secert Santa program so we dont havce to pick names from a hat every christams. The progam I am runnign into is that getline is skipped the first time through the loop. Here is my code- place=1; do { cout<<endl<<"Enter the name of the Santa - "; getline (cin,name); santa_name [place] = name; temp= santa_name; place++; } while (place<=people); I read about the library problem in version 6.0 but I thought that this was fixed in later releases. I am doing something wrong Thank You ...Show All

  • Smart Device Development Using x86 emulator with DEM

    Is it possible to use the x86 v5.3 emulator with the Device Emulator Manager (DEM)   It only seems to populate the list with the images that support the new Arm based emulator.  It's strange that I can see the platforms for all the SDKs I've installed, but there are no workable image entries for emulation.  Not at this time. The existing X86 emulator does not have the proper drivers installed to support the user of the Device Emulator Manager, and we have no plans to add them at this time. ...Show All

©2008 Software Development Network