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

Software Development Network >> Rajeev Goel msft's Q&A profile

Rajeev Goel msft

Member List

Pierre PP
Jerry8989
Corridriver
AmitKale
yi peng
OfficeDeveloper
Rasatsimpy
Vishal Mistry
Holo
opop
Mark Phelps
decrypted
Massimo Sartoris
Mike Weller
Alex O
TesmerR
shuttler
Optikal
Naamala
Tom Kaminski
Only Title

Rajeev Goel msft's Q&A profile

  • Visual C# form collecting

    I have the following line of code in my program that grabs all of the open forms on a page. FormCollection tmp = Application .OpenForms; Now I need to get at the forms that are open. I have a hooker that I need to pass it to but I don't know how to get at the individual forms inside of this list. How do I get to it At its simplest the FormCollection class is just an array of Form objects and because of that you can easily iterate through each one in a foreach loop ala:             foreach ( Form f in tmp)       ...Show All

  • SQL Server Where are the SQL Management tools???

    I just finished installing SQL Server 2005 Developer Beta 2. There are no menu items for the manager or any thing else. Where are these things installed.  How do I access them Hello, Did you ever get an answer on your issue I am having the exact same problem and can't figure out what I'm doing wrong. I have uninstalled and installed several times, but still just get the Configuration Tools. I don't have Express installed or anything, so I'm not quite sure what the problem is. Any help you can provide would be appreciated. yvette ...Show All

  • Visual Studio Team System how to daily build automatically?

    I create a new buildtype, I want to do daily build with this new buildtype automatically, how can I do I add a new windows taskproject, select the TFSbuild.exe as the programme that I want to run at 6:00 PM each day, in the run textbox, I write as follows: "D:\Program Files\Microsoft Visual Studio 8\Common7\IDE\TFSBuild.exe" start <ubscmserver> <ubs 目> <automatedbuild> but I found no outcome in my drop location at the scheduled time,why Thanks a lot. First, I would write a bat file in order to run the t ...Show All

  • Visual C++ Constructor Overrides

    I've got a question on something that I'm not quite clear on.  Maybe somebody can help me! If I derrive a class from another class like so: // Plant class... class CPlant { public :    CPlant( int par_leaves):leaves(par_leaves) {};     int leaves; }; // Tulip class with different signature on constructor... class CTulip : public CPlant { public :    CTulip( bool par_hasBloomed):hasBloomed(par_hasBloomed) {};     bool hasBloomed; }; Whenever you instantiate a derrived class, the parent class constructor is called first... so when you derrive a class and write a constr ...Show All

  • Visual Studio Team System ImplementIDisposableCorrectly woes

    Me again, with some more Dispose confusions.  FxCop has nudged me to implement this snippet of code but still complains about the DerivedComponent class, with the suggested resolution: "Remove IDisposable from the list of interfaces implemented by MyNS.DerivedComponent and override the base class Dispose implementation instead."  DerivedComponent does not directly derive from IDisposable, and I'm assuming "overrde the base class Dispose implmementation" to mean Dispose(bool).  As far as I can tell the resolution is implemented.  Am I missing something     public class BaseComponent: IComponent   ...Show All

  • Visual C# byte to integer conversion - client server programming

    hello... I have written a client in java and a server in C#... when i write those programes in my computer, opening same port and listening to same IP...everything works fine. But when I move my server to another computer(also running win XP pro), at one point of the communication, i need to make multiple readings from server on integer value sent by client. The way i did it is by converting the integer into 4 bytes BYTE, and send it over, at server I convert them from BYTE into integer again. most of the time it will fails reading or converting the int. Those integers will be read in as an unreasonable large value or unreason ...Show All

  • Visual Studio 2008 (Pre-release) binding combobox selectedindex/item in a listbox itemtemplate

    I am having an issue with comboboxes contained in a listbox (using the itemtemplate). I want to be able to change the value of a property on the selected item, by choosing it from a combobox containing a collection of the properties type. Is this possible Currently I've tried binding the combobox itemsource to an objectdatasource, which works fine (apart from the fact that when I change the selecteditem, it changes in EVERY listbox item), and binding the combobox.selecteditem to the corresponding property on the listbox datasource. But this doesn't work. I hope that makes sense. Simon < DataTemplate x:Key = " ...Show All

  • Visual Studio Team System how to used external smtp

    i want to use external smtp server. where i can set this with username and password You need to set up a SMTP virtual server . Have Tfs send email to that server. Then configure it to send email to the external server. You can configure it to use any username and password when connecting to the external server. ...Show All

  • Software Development for Windows Vista Uint16 and Unicode incompatibility?

    Another issue that I have run across which I have "fixed" is the following: was:     int l2 = wcslen(inputedString); and generated      error C2664: 'wcslen' : cannot convert parameter 1 from 'Uint16 *' to 'const wchar_t *' is now, is this the correct way to handle this or is there a better way.     int l2 = wcslen(reinterpret_cast<wchar_t*>(inputedString)); I found the following information in the error help and was wondering if this is bug will be fixed in future versions. "A bug in the midl compiler results in a wchar_t type being emitted as an unsigned short in the type libr ...Show All

  • Windows Forms Please HELP!!

      Hi,   We have made our collections bindable at design time..by implementing IComponent.. One of my form has CustomerCollection(variable is CustomerCollection1),and textboxes are binded to its properties at designtime..We are having a global function which loads customercollection..when user gets logged in..called..global_CustCollection..Now, on form load of customer I am assigning this global collection to, collection object binded to form at design time(CustomerCollection1)..but when I view the form no data is being displayed though the collection object(CustomerCollection1) has the data.. why is it so thks If I unde ...Show All

  • Windows Forms Web application User Agent Name

    Hi I am working on the Web application that Play a role as the web browser for few particular sites. And a application server for other. Anyway it is the application Which call a web page access through the web domain (like http://www.example.com) on port 80.  I use the HTTPWebrequest class and other related class to get it working. The application is& ...Show All

  • Software Development for Windows Vista Problem with MSVidCtl?

    I have some code that uses MSVidCtl to build a DShow graph for the purposes of tuning TVTuner type cards. For the most part it works great, but some devices NVTV for instance ( and some Avermedia, but not all) I recieve the following error 0xC0040596 - A filter or Pin implementing IAMAnalogVideoDecoder could not be found in the current Tuner Segment. I have definately selected the correct input device (there is only one, named "NVTV Tuner"). I would really appreciate anyones insight into this problem. Cheers Warren ...Show All

  • Visual Studio Team System How to change email notification account?

    Hi, I have installed and setup VSTS + Server Foundation Beta 3 Refresh.  Everything is working fine and I'm able to create team projects.  However, I'd like to change the user account that sends the automated alerts.  I did not know the TFSSERVICE account would be the one sending the email notifications.  Is there a way to change the account name   Thanks in advance. Roy Changing the display name shouldn't be to hard.  First, I would try setting the "emailNotificationsFromAddress" setting in web.config under \Program Files\Microsoft Team Foundation 2005\Web Services\S ...Show All

  • SQL Server WHERE and HAVING

    Can someone confirm what I think the difference between these is As I understande it, WHERE is used to select records prior to aggregation (and grouping) in a Group By query and HAVING is used after aggregation (i.e. it evaluates the aggregated values). As stated often in SQLBOL WHERE and HAVING work the same way in non Group By queries. Thanks You are right about the aggregation issues in statementes, furthmore Where is used in non aggregated queries. HTH, Jens Suessmeyer. ...Show All

  • Visual Studio Team System Create Tests doesn't work...

    I have a solution with 9 C# projects in it: 1 WinForms application, 4 class libraries, and 4 test projects corresponding to the class libraries. The EXE and the 4 class libraries implement branches of a rooted hierarchy of namespaces (not sure if that's significant, but thought I'd mention it). In one of the class library projects, if I add a new method to a class that already has a corresponding unit test class, everything's fine. In another of the class library projects, when I try to add a test using the Create Test... context menu item from within the source code editor, the dialog box that appears to let me choose the test project shows ...Show All

©2008 Software Development Network