Goswinus's Q&A profile
Visual Studio 2008 (Pre-release) Loading Page into TabItem
If I have a System.URI that points to some XAML in another assembly, how can I load that into the Content property of a TabItem I know this is easy in a Frame but I don't need navigation functionality. Thanks Michael The solution I've used for this situation was to create a User Control for the page. Then I add the clr-namespace to the .xaml file and do the following to add the User Control to the tab it ...Show All
SQL Server Partitioned View not updatable ???
Hi There Ok i have searched on this error and seems to be a bug or maybe i am missing something. All i need to know is can this be done or not, am i making a mistake I have created 2 tables. -------------------------------------------------------------- Table_A_Jan ( Col1 int not null, Col2 datetime not null, Col3 char(5) not null, CHECK (DATEPART(mm, Col2) = 1), CONSTRAINT [PK] PRIMARY KEY CLUSTERED ([Col1], [Col2], [Col3]) WITH FILLFACTOR = ...Show All
Windows Search Technologies #msntb_toolbar_full_name#
I have the following sign come up on the screen. #msntb_toolbar_full_name# is unable to load config file. If you recently upgraded to a newer version of #msntb_toolbar_full_name # and have not restarted your computer since the upgrade,please try resarting your computer.If the problem persist,please reinstall the #msntb_toolbar_full_name#. I'm currently running WXP Home Edition,IE7. W Defender.This problem only occured after I complet ...Show All
Windows Forms Dynamic generation of Datagrid template columns?
I would like to know the procedure to generate dynamic template column in vs2005. I would like to know the procedure to generate header template which has a button in it and an item template which has a check box into it. Prashanth, This forum is for questions specific to the tools in Visual Studio Team Edition for Software Developers. I'll move your thread to a WinForms forum where it can be better answered ...Show All
Software Development for Windows Vista Custom activity with inner sequence activity locked in design mode
Hi, I have a custom activity which simple extends the SequenceActivity. When I use this custom activity inside ot my workflows I can drag and drop activities from the toolbox to inside my custom activity. Now suppose that my custom activity contains an inner sequence activity. In my workflows when I use my custom activity, the inner sequence activity is locked. I would like in design mode to drag some activieties from the toolbox to m ...Show All
Windows Forms Many to Many Relationship GUI
I have a database which has a many to many relationship between students and contacts. Each student can have multiple contacts, and contacts can be associated with multiple students. In resolving this relationship I have created a linking table made up&n ...Show All
Visual Studio Express Editions Help Please on Visual Express Database Saving
I just recently downloaded visual basic express and i've found it to be a very powerful tool despite being free. I've been moving right along through the tutorial and ran into a simple problem..... I got to this page on the "How Do I" help training: "Adding or Modifying Your Records: Updating Data" I created a project and connected it to a database. When I run the form and "update" the database on the form( ...Show All
SQL Server Execute a package on a remote server
I want to execute a package that's found on a remote server as MSDB. The execute package task locally is not allowing me because i don't have a login permission i guess because i'm not on the same domain and my user account doesn't have the neccessary privelages to access the server. However i can execute sql statements and data flow tasks on the same server. Isn't it possible to use the login and password of the sql server i ...Show All
Windows Forms Wrap DataGridCell (Window Application)
hi all, I have a DataGrid for displaying two columns. First Column contains code and second column contains description. The discription is too long string. I want to Wrap this DataGridCell . I am using datagrid in Window Application . Please help me. Thanks Kul You can find a code sample that does what you are looking for here: http://www.mastercsharp.com/India/Forums/ShowPost.aspx PostID=769 It ...Show All
Windows Forms DataBinding to ComboBox, setting to -1 index
I am making a database interface with VS 2003. I use a bunch of comboboxes so that the user can select from a list of items stored in the database. For example, a user chooses a Tester for a particular test, the list of Testers is in a seperate table. I am generating the combobox list with databinding, but I want to have it default to -1 index, just like a combobox does when you manually add items. I have tried setting th ...Show All
Visual Studio Express Editions Wot to write in order to find the maximum number?
I wrote the following : int r; foreach(TextBox t in panel1.controls) { r=rnd.next(100); t.text=r.tostring(); } my aim is to randomize numbers for 5 textboxes in a panel and then i want to show the maximum number in a separate textbox called tmax. WHO CAN HELP hi, i guess you can do that by using variable something like this int r; int max = 0; foreach(TextBox t in panel1.controls) { r=rnd.next(100); ...Show All
Visual FoxPro Need VFP 9.0 Report Help
Hi I have a report that in the detail band I have the following info: QTY Part Number Description Price Extended Price 5 2222-009 5500 Watt 220V &nbs ...Show All
Windows Forms Security Pane
Hi, Whenever I click on the Security Pane in the Project Designer, I get the following error. I am using Whidbey Betat 2 on Win XP SP2 machine. Is this a beta bug I know i can configure it using Mage, but just wanted to see the Security Pane. --------------------------- DataGridView Default Error Dialog --------------------------- The following exception occurred in the DataGridView: System.ArgumentException: Value does not fall within the expe ...Show All
SQL Server How do I find IDENTITY columns on Table using T-SQL
Is there a query I can write against an INFORMATION_SCHEMA or against the system tables to determine if a column is an identity column Found it, a little obscure: SELECT obj.[name], col.[name], col.[colstat], col.* FROM [syscolumns] col JOIN [sysobjects] obj ON obj.[id] = col.[id] WHERE obj.type = 'U' AND col.[status] = 0x80 ORDER BY obj.[name] Does anyone know a way of doing this using an INFORMATIO_SCH ...Show All
Visual Studio Team System CA2000 - does it work?
I have this code in a simple test app: private void button1_Click(object sender, EventArgs e) { // No CA2000 warning... StreamWriter file = new StreamWriter("C:\\TEST\\TEST.FILE"); } As far as I can see, it should precipitate a CA2000 warning, but it doesn't. (This is with Visual Studio 2005's built-in Code Analysis). Am I wrong about this Under which circumstances should CA2000 file Can anyone post an example that fires CA2000 Th ...Show All
