bschaldon's Q&A profile
Visual C# Need Tips on finding information (Vikram)
I'm amazed how much info is available from MS. I'm also shocked on how hard it is to find it. For instance: I was trying to find how to set the node in a tree view. I searched and searched and I could find nothing. This was a dumb thing on my part because I didn't hoover long enough with my mouse. Someone showed me an example here on the forum. I wanted to convert a string to an integer. If you don't know where to lo ...Show All
Visual Studio Team System Create new root folder?
Hi all, how could I create a new root folder in Source Control of TFS I have a new solution which I want to add so I click "Add Solution to Source Control". But then I need to place it in an already existing folder Isn't it possible to create there a new root folder Thanks! Root folders in TFS are called "Team Projects." You can read about them here: What is a Team Project Planning a Team P ...Show All
Visual Studio 2008 (Pre-release) Can't get IIS to host WCF service
When viewing in a browser, I get: Server Application Unavailable In the Event Log (application), it says, "Failed to execute the request because the ASP.NET process identity does not have read permissions to the global assembly cache. Error: 0x80070005 Access is denied. " Here is some vitals for this service: Assembly Name: CompanyWorkerService Workspace: LR.Services.WorkerService Interface: IWorkerService Type ...Show All
Visual C++ PostMessage & ON_MESSAGE(...)
Hi. when I use form ON_MESSAGE(WM_USER+1,ShowInListBox) in my Code after 2 or 3 Second (Less or More) my Program does Hang! but If I delete ON_MESSAGE(WM_USER+1,ShowInListBox) my Thread work Properly. this my Code: //////////////////////////////////////////////////////////////////////////////////// ........... public: BOOL* GetContinue() {return m_bContinue;} void SetContinue(BOOL* bContinue) {m_bContinue=bContinue;} ... ..... voi ...Show All
Windows Forms inherit control in the flowLayoutPanel.
Hello.. I want to ask a question because I faced the weird situation. The test process is as below. 1. Make the ancestor form. 2. Put in the flowLayoutPanel and adjust the modifiers to "public". 3. Put in the button in that flowLayoutPanel and adjust the modifiers to "public". 4. Inherit from above the form. ( Make the descendant form ) 5. See the properties of button in the descendant form. That properties are "read only". If ...Show All
Visual Studio Express Editions Which Data Type??
Can anyone point me to a simple introduction to the data types in SQL2K5EE I come from an Access background and I am trying to get a hold of having MORE POWER!! :-) I just need a simple little explanation of the data types and what they're good for. Thanks in advance... Have a look at the following links... SQL Server 2005 Express Edition Documentation and Samples (December 2005) http://www ...Show All
Software Development for Windows Vista JRTPLIB in DirectShow filter
Hello Fellow Developers, I have a simple query Trying to send data over the network using jRtplib in the directshow filter. Sender side: Source>>rtp source filter>>>null renderer rtp source filter is a transform filter, in the transform function i send the packet and all the network connectivity is done in the constructor. reciver side: rtp Client filter>>video renderer rtp client filter is a source f ...Show All
Visual Studio How to get access to ComboBox item in a toolbar
Hi All, I am using Visual Studio SDK 2005 (C#) to create a VSPackage. This VSPackage adds a toolbar to Visual Studio IDE. This toolbar has a combo box along with some buttons. In order to add my data to this combo box in the toolbar, I need to have access it's object. This is how it is specified in ctc file: COMBOS_BEGIN /// Combo Item Item Group Priority CmdId to get list Width ComboType Flags ButtonText MenuText ToolTipTex ...Show All
SQL Server Sql Server CLR integration Reference
I have a DLL coded in C# which has a one Function which returns 0 or 1 depends on the operation. I am using SQL 2005 and same functionality I want to reuse in SQL. So I have decided to use new functionality of 2005 CLR integration to avoid code redudancy. I will create a function and that function will call internally this DLL and return value. But my problem is here that I am not able to set a reference to the C# dll. I am getting mes ...Show All
Visual Studio Express Editions access parent form function
Hi, I am fairly new to the "Visual" IDE arena. I have a program with a parent window which switches between several child windows, only displaying one at a time. I created a switchPanel method which takes a form variable, closes the current form and sets the new form as the current child. This function works fine as long as I use it in the parent window, but I cannot access it from a child window. I am sure this is some newbie e ...Show All
Visual Studio Team System After Recording Next button not active
Hi I am new in Application Center Test. I am facing a strange problem that after recording a browser activity the Next button does not get active , it remains inactive. I am running the application(ASP.Net) on a diffrent machine but it is in the same domain and i have administrator previliges on both the machine. I even tried recording localhost but that didnot work. Am i missing some thing. Any help will be highly appreciated. Th ...Show All
Visual Basic Build Complete Notification Sounds
I just upgraded to Visual Studio 2005 from VS6.0 and I cannot find any documentation for Visual Studio sounds schemes. In VS6.0 I could have seperate sounds for "BuildComplete", "BuildError", and "BuildWarning". In Visual Studio I can only create a sound for VS_BreakpointHit Are any of the others available The three I mentioned in my post BuildComplete, BuildWarrning, and BuildError.&nbs ...Show All
Visual C++ What happened to vector?
Something is wrong with the STL 'vector' header file in the 2005 Express installation. After installing beta 2, I can't compile any source files which #include<vector> any more. The vector file is now 59k as opposed to a very tiny 'vector' header in the VC++ 2003 Toolkit. Also, the VC++2005 vector file has all the code in it, while the vector file that works only has a few lines including some other headers. These p ...Show All
SQL Server How to use ReportViewer in a Windows Form?
Hi all, How can I use ReportViewer in a Windows Form I'm using RS 2000. Thanks. No. The ReportViewer controls that ship with VS 2005 (both winforms and webforms) require RS 2005. ...Show All
Visual C++ increment in C++
#include<iostream.h> void main(){ int a=5; cout<<++a<<a; cout<<"\n"; cout<<a; cout<<"\n"; } the above code generates the following output: 65 6 but as per me the output should be as follows: 66 6 why does the incement doen't show up the second time I think that the simple answer is complexity. This is really a language level diagnostic but t ...Show All
