mikkk's Q&A profile
Software Development for Windows Vista Tasklist
Hello, I am investigating the possibilities of using WWF to create a tasklist (aka worklist) application. How is this supported in WWF Are there any information available about this somewhere Best regards / Rasmus Hi James. I have identity service on data store, works like AD. I need to implement a task list to associate activities to users. I want to show a list of activities assigned to user that was waiting an action of user showing data about activity. How can I obtain data of activities like public properties I tried with SqlTrackingWorkflowInstance and SqlTrackingWorkflowInstance, but I can’t g ...Show All
SQL Server SQL Server 2005 - June CTP Developer edition
Where can I download the developer edition from It is not out on MSDN. Thanks, Shri Here is the link to the June CTP for Developer Edition: http://www.microsoft.com/downloads/details.aspx FamilyId=B414B00F-E2CC-4CAB-A147-EACA26740F19&displaylang=en ...Show All
Windows Forms Customize existing native Windows controls
I am wondering if anyone knows how to replace all TextBoxes used by windows with my own customized TextBox As in, all textboxes used by Windows and other windows programs will be replaced by my own. Is this even possible I doubt that is possible, those are a part of the binaries. They aren't some global control that you can just rep ...Show All
Visual C++ error c1083
Hi! I'm trying to use ms visual studio to connect with server of boomberg. But I don't know how to configure ms visual studio correctly. I followed the steps on bloomberg api programmer help. Probably, I made some mistake. I got this message error: description: fatal error c1083: cannot open include file: 'io.h': no such file or directory. file: bbunix.h line: 1139 Somebody can help me The code that I have copied from bloomberg's example: /* ** Example1.c ** ** This little program simply connects to and disconnects from bbcomm. ** It is mostly useful to check your build environment. */ #include "bbapi.h" /* The standard port bbcomm is lis ...Show All
Visual Studio 2008 (Pre-release) GridSplitter seperating Rows
Is there a way to have a splitter for rows Here's the xaml I am trying to use: < Grid VerticalAlignment = " Stretch " HorizontalAlignment = " Stretch " > < Grid.RowDefinitions > < RowDefinition Height = " * " MinHeight = " 0 " /> < RowDefinition Height = " * " MinHeight = " 0 " /> </ Grid.RowDefinitions > < StackPanel Grid.Row = " 0 " > < TextBlock > Line one 1 </ TextBlock > < TextBlock > Line two 1 </ TextBlock > </ StackPanel > < GridSplitter Grid.Row = " 0 " ResizeDi ...Show All
SQL Server Calling a stored procedure that inserts records and generates an output parameter
I will be calling a stored procedure in SQL Server from SSIS. The stored procedure inserts records in a table by accepting input parameters. In the process, it also generates an output parameter that it passes as part of the parameters defined inside the stored procedure. The output parameter value acts as the primary key value for the record inserted using the stored procedure. How can I call this stored procedure in SSIS This is just one of the n steps as I will be extracting the output parameter generated by this stored procedure for the succeeding steps. How do you use the OLEDB Command Transform Actually, I just created a sim ...Show All
Visual Studio Express Editions UserControls/Design Time Property Grid
I'm designing and UserControl with a lot of properties. I would like to place some of the porperties in sub catagories. Similar to the way the X,Y properties are displayed for the Location property under the Layout catagory. Can someone help me emulate this behavior. Thanks Robert Sure... you can supply a TypeConverter attribute to a property. The TypeConverter will convert your datatype to a string a vice versa. This is the string that is displayed next to your property. A typeconverter can also tell the propertygrid what properties are available for editing. That's where th ...Show All
Smart Device Development VS2005 Beta 2--activesync error
Am starting testing on VS2005 Beta 2, and have built my PocketPC app, but when VS deploys it, I get the error "The current version of ActiveSync is not supported. Install the latest version from www.microsoft.com ." I am running ActiveSync Version 3.8.0 (Build 5004) and couldn't find anything more recent. Anybody else run into this, or is there a newer version of Activesync Thanks, Mike Try http://download.microsoft.com/download/c/4/5/c45f8f83-6383-43d7-840b-cb9638484e4d/setup.exe Regards Roman ...Show All
Visual Studio DSL and GAT demo
I saw previous posts that there will be a demo presenting the complimentary work of DSL Tools and GAT demo. Is there anything available yet Do you know any recent presentations on DSL and software factories, excluding TechEd05 And this is a question that I have to ask: How are DSL Tools different from a simple code generator Is it only the designer support Thanks, Martin Kulov http://www.codeattest.com/blogs/martin Martin Kulov - MVP wrote: I saw previous posts that there will be a demo presenting the complimentary work of DSL Tools and GAT demo. Is there anything available yet No, not at ...Show All
SQL Server configuring a database in sqlserver?
I am learning dotnet thru Microsoft Official Curriculum and I got stuck up at one point. That is I couldn't configure the required databases according to the sql server I have installed and configured. I created a doctors database and while configuring using the below code I couldn't know what is '\ASPNET' in "SELECT @s = @@servername + '\ASPNET'" Also what is 'webuser' ---Configure Doctors USE doctors GO DECLARE @s varchar(50) SELECT @s = @@servername + '\ASPNET' EXECUTE sp_grantlogin @s EXECUTE sp_grantdbaccess @s, 'webuser' GO GRANT EXECUTE ON [getUniqueCities] TO webuser GRANT EXECUTE ON [getDrSpecialty] ...Show All
Windows Forms DATA GRID
I have a 3 column data gird. I would like to fire a event when i leave the thired column. How do i do this ...Show All
.NET Development Problems with WebClient.UploadFileAsync
Hi, Consider the following code: //-------------------------------------------------------------------------- public Form1 { WebClient client = new WebClient(); client.UploadProgressChanged += new UploadProgressChangedEventHandler (client_UploadProgressChanged); client.UploadFileCompleted += new UploadFileCompletedEventHandler (client_UploadFileCompleted); Uri uri = new Uri ( http://example.com/upload.aspx ); client.UploadFileAsync(uri, @"c:\somefile.bin"); } void client_UploadProgressChanged( object sender, UploadProgressChangedE ...Show All
Visual Studio 2008 (Pre-release) Enabling a button though Data Binding
I'm using the November CTP, and am having difficulty enabling a button with Data Binding. I've looked at code from previous CTPs, so it seems my code is right, and this should work, but I'm having no luck. <Button x:Name="btnSave" Content="Save"> <Button.Style> <Style TargetType="{x:Type Button}"> <Style.Triggers> <DataTrigger Binding="{Binding Path=SaveButtonEnabled}" Value="true"> <S ...Show All
Windows Forms SeedSpreadDistanceAttribute
Hi, Does anybody know why this is not being used This is not being used. And it won't be used in any future versions AFAIK. ...Show All
Visual Studio Team System Recoginize #pragma warning disable
Now that C# (v2005) has a #pragma that can turn warnings off and on, will FxCop honor the setting and not report violations that the pragma has turned off public void test() { #pragma warning disable 0168 int x; #pragma warning restore 0168 } The compilier will not report the unused local. However, FxCop will report it. The #pragma directive can be used to turn off many different warnings and I thought that maybe FxCop should honor the request. (This is just an example. I am sure there are better ones. ) As David mentions, we're currently only a binary corr ...Show All
