rajgz's Q&A profile
Visual Studio Team System WSS Customization how to remove Process Guidance?
Not sure if this is the right forum to ask but since it gets created by TFS I'll ask here. I've been creating my own TFS template using the MSF Agile as a baseline and I'm having almost everything the way I want now, except the WSS site. I'd like to remove the Process Guidance from the left menu of the WSS sites created. Does anyone know how I can do this I already removed all the content under it by removing certain things in my TFS templat ...Show All
Visual C++ How to get a pointer of a specific child frame window in a MDI application
How to get a pointer of a specific child frame window in a MDI application if I have open more child frame windows If you are using the Doc/View architecture you can enumerate the View in the Doc with GetFirstViewPosition and GetNextView. From the view you can use GetParentFrame to get to the Frame. Where is the position where you want to receive a pointer to the Child Frame And what is the reason ...Show All
Windows Forms How to create a DropDownList/ContextMenu style window?
I need a popup window(no border) to input some text. But it should be something like the drop down list of a combobox which doesn't make the owner form inactive. Making it a child window does that but it will be clipped by the owner form, while drop down list won't be clipped. I've tried changing the CreateParams to use different set of flags, but not successful. And I've been googling the whole afternoon... I saw someone says not to make ...Show All
SQL Server Remote tables
Hi everybody: I am working on a query that referrences a table in a remote database. It seems in Management Studio 2005 anytime you open a new query window you should connect to a specific database instance that's why when I refer to the remote database table using Fully Qualified Name it tells me the database name is unknown. Do you have any solutions for this Thanks a lot You can try with OPENROWSE ...Show All
Visual Basic How to pause execution in a Form?
DOes anyone know how to pause execution in one form/method until another form/method is through then finish its own program. I want to be able to switch to another form, run some execution, then take the results to pass back to the original form and let it finish execution. WHen I try it, it will switch over and even pass info back, but the original form will fishish its sub-routine with out waiting for the results. Know it sounds confusiong. ...Show All
Windows Forms tutorial on treeview
Hi can anyone direct me to a good site where i can learn how to use the treeview control I want to be able to covert this code With tvwMediaCategory .Nodes.Add , , "ROOT", "My Media", "CDMUSIC", " ...Show All
Smart Device Development Identify which control causes validating event in a textbox
Hi, I want to validate the content of a textbox with his validating control, in fact i only want to validate this textbox when the causes of his validating event is that the control button1 got the focus. How could I Differentiate between the event validating of textbox1 cause by the button1 and the event validating of textbox1 cause by the button2 I supose that if the are any diferences it is in the "e" or "sen ...Show All
Windows Forms Oder of events for textbox
what is order in which a textbox executes these events Leave, Validated, Validating, and TextChanged & Enter Hi, according to the msdn: Enter GotFocus Leave Validating Validated LostFocus These events occur when you change the focus of the text box either programmaticaly or by user interaction. TextChanged doesn't occur in this specific sequence since it can be raised by the user or ...Show All
Visual Studio Express Editions Which version of Visual C++?
Hi Folks, I would like to buy Microsoft Visual C++ to do write some simple Windows applications perhaps using DirectX in them. I am not really interested in .NET or web development, and would just like to write C++ applications using resources such as graphics/icons/sounds that compileto executables. I am a bit confused about what product I need to buy. Looking at past products, I can see that I would want something similar to Visual ...Show All
.NET Development Making dataset instances invisible to COM
Hi There, I've got a C# assembly that's marked for COM Interop Registration. It contans a dataset definition. When I look at the TLB file generated for the assembly, the object is included. (for example, if the dataset is called AlphaDS, there's a default interface generated for the dataset called _AlphaDS, and a coclass entry for AlphaDS) I'd like to mark the Dataset as COMVisible(false) so it doesn't show up in the TLB. I could mark the ...Show All
Smart Device Development How can I know whether the scroll bar of a window is disabled or not?
I wanna disable a scroll bar instead of hiding it. However, how can I know whether it is disabled My platform is wince dot net, pocket pc. Hi, If understand your problem right then the functions EnableWindow and IsEnabledWindow are what you are looking for. You need to get the HWND for the scroll bar so that you can disable the scroll window. Hope this helps. Thanks ...Show All
Visual Studio Dynamically Changing ConnectionString for reports' ObjectDatasource
Suppose that there is set of servers (in my case it is only one server, but I would prefer a more general solution), each with their own set of databases. All the databases have the same structure (for example, they are all editted copies of the Northwind DB), but contain different data. How can one write the report such that it can choose which database to use based on user-specified parameters When designing a report with VS 2005 ...Show All
Windows Forms Install Content Files In A Directory Structure
I am using c# Express. I have created an application that searches for content files(images and sounds) in folders located in the same directory as the application's .exe file. Is it possible to have Clickonce install my application's content files as part of a directory structure rather than a bunch of loose files in the same place as the exefile such as: Appfolder << Dont Care if this is unknown I'm using Directory.GetCurr ...Show All
SQL Server Ad hoc reporting Model and Security Filters
I am having some problems with creating security filters. The way my system is setup is that I have a main table that contains all my data. I also have a security table that tells me what records each user has access to. I created an entity for my security filter and have a security filter defined that limits the data to the rows that have the logged on users id. This works fine if I look at the data I see the rows that ...Show All
Windows Forms Location in the Panel with "AutoScroll=true"
I have a Panel in which, in runtime, I put a “PictureBox” when I click on a button control. When I click on this button, the PictureBox is positioned in a point with coordinates: (PosX,8) where “PosX” is calculated to place the PictureBox side by side. When the number of the PictureBox increases, appear an horizontal scrollbar, because of I have selected the AutoScroll property to “true”. If ...Show All
