Kent Boogaart's Q&A profile
Software Development for Windows Vista Workflow runtime hosting questions
We're interested hosting a single workflow runtime to manage all our workflow instances. These workflow instances are mostly human user approval processes that could span days. The primary method GUI for approving/rejecting will be through a web application. If I implement my workflow runtime in a Window Service how difficult would it be to access the runtime instance. Can the workflow runtime be remoted by a web app or web service I have looked at implementing a workflow as a web service but they seem better suited for short-lived sequential workflows. I'm curious how SharePoint v3 implements the workflow runtime. I read that they use a specially tailored web service to broker the workflow runtime calls but I am not sure where the runtim ...Show All
SQL Server INSERTING Data From Server to Server
hi there! Well i have two Servers on this two Servers i have the Database with the same Tables. But the Database in the Server_2 consists no data, I want to fill the Tables in Server_2 from the Data in Server_1. What i want to do is to is liked this. -- I performing this on the second Server. SET IDENTITY_INSERT [Server_2].[Database].[user].[Table] ON INSERT INTO [Database].[user].[Table]({COLUMN_NAMES}) SELECT * FROM [Server_1].[Database].[user].[Table] WHERE id=25 SET IDENTITY_INSERT [Server_2].[Database].[user].[Table] OFF This did not work and i have the following Error Message its in German but the ERRORCODE is 7391. I already check out the help section in MSDN but it doesnt really helps... Any Ideas Thanks Die Oper ...Show All
Visual Studio Bug: DocData.tt (not asking for VSConstants.VSITEMID_NIL before locking)
In the final part of the Load method.. if (this.Hierarchy != null && global::System.IO.File.Exists(diagramFileName)) { DslShell::SubordinateFileHelper.EnsureChildProjectItem(this.Hierarchy, this.ItemId, diagramFileName); // Should have a subordinate diagram file now. If we didn't add a lock above, add one now. if (this.diagramDocumentLockHolder == null) { uint itemId = DslShell::SubordinateFileHelper.GetChildProjectItemId(this.Hierarchy, this.ItemId, this.DiagramExtension); if(itemId != global::Microsoft.VisualStudio.VSConstants.VSITEMID_NIL) { this.diagramDocumentLockHolder = DslShell::SubordinateFileHelper.LockSubordinateDocument(this.ServiceProvider, this, diagramFileName, itemId); if (this ...Show All
Visual J# Populating a forms ListBox from another thread
I'm developing a Chat Client and need to populate the ListBox on the interface form from another thread. How can I go about doing this I've tried playing with delegation but it doesn't seem to work, I continue to get the "Cross-thread operation not valid: Control 'whosOnlineList' accessed from a thread other than the thread it was created on." (Where whosOnlineList is the ListBox.) public class Client { protected delegate void addListBoxItem(Object item); public addListBoxItem addWhosOnlineItem; private void _addWhosOnlineItem(Object item) { gif.whosOnlineList.get_Items().Add(item); } public void run() { addWhosOnlineItem = new addListBoxItem(this, "_addWhosOnlineItem"); public class Receiever { p ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Using XNA for a University Project
Hey all, great community here with loads of great information. I have been considering using XNA for a while, just saving the money to buy a new graphics card for the moment. I'm doing a Game Development degree and have to choose a development framework to use for my next project. The two main choices I narrowed it down to are Quake III and XNA. I guess you would gravitate toward XNA but I noticed there some really smart people here who like a good debate so could you help give me some great advice as to which to choose. I would pick Quake III because its more games industry oriented and would be great experience, also its a complete games engine, with graphics and map editor and AI all built in. For XNA, I would pick it because I'm pr ...Show All
SQL Server Express will not load. Insurmountable difficulties with order of uninstalls/order of installs/ suggestions plz
Finding the "pieces of information" I need to successfully install the SQL Server Express edition is so complex. Uninstalls do "not" really uninstall completely, leading to failure of SQL install. Can you suggest a thorough, one-stop site for directions for the order of app uninstalls and then the order for app installs for the following... SQL Server Express edition Visual Studios 2005 Jet 4.0 newest upgrade .Net Framework 2.0 (or should I use 3.0) VS2005 Security upgrade Anything else I need for just creating a database for my VS2005 Visual Basic project I was trying to use MS Access as my backend db but would like to try SQL Express Thank you, Mark Mike, Thank you for ...Show All
Visual Studio Express Editions Creating new row
How to create a new Row in datagrid with same controls tht r present in datarid in previous row Hi, Mahender I suggest you create a new thread in asp.net forum: http://forums.asp.net/ details the condition you've encountered. There would be some guy to answer it. Thank you ...Show All
Microsoft ISV Community Center Forums Help with comma separated values in report
Hi! A bit of a stuck-up. It’s no problem in creating a coma separated fields in .txt kind of file. But I have another problem which is probably simple to manage (not for me though - my brains work 24hrs/day and don’t come up with nothing). I want to show several different values from one field (in query) on the report - now check this - They have to be separated by a comma in one line. If anybody is familiar with the solution just show me the direction and I’ll try to solve it by myself. Thanks in advance Where do I put this code Is it behind the report In which textbox could I display the result of this code. I changed the code with the real names of fields. So I expect it would work. Thanks ...Show All
SQL Server programs!!!!
i repaired my problem with the SQLserver Express.....now i know how to use....but nowadays i have some problems with my DataBase....i would like you people share your DataBase to see what is my problem......mi msn is jmontes32@hotmail.com .......if you give some programs....i will learn more about SQL server.. sorry if you find some grammmathical mistakes....i'm learnig english see you jamie You most likely will not have many folks 'sharing' their databases with you. However, you can download and install sample databases that Microsoft makes available. Here are three. Databases -AdventureWorks http://msdn2.microsoft.com/en-us/library/ms124659.aspx Databases -Northwind and Pubs http://www.microsoft.com/dow ...Show All
Software Development for Windows Vista Error while using Workflows within Sharepoint Site
Hi, I tried using the sample workflows from the ECM release (ECM sample started kit). Now this is what happens: I can install the workflows and the forms correctly. Once I go into my Sharepoint site, I can connect it to the workflow that I want. But once say I add a new document, open it in thr word client, from there say I click on "Start Workflow" this seems to fail for EVERY WORKFLOW - even those built in default (Approve etc). The initialization and association forms come up and I fill these (workflow has not started yet), once I click on "submit" (or any other button which is supposed to start a workflow) on the document library, I can see "Failed to Start" under the name of the Workflow. On f ...Show All
SQL Server Populate a variable
During a dataflow - I like to populate a variable with True or False based on a value in one of the data records. How do I do this excercise if I use a script - can someone provide me with simple script on how to populate one variable Thanks heaps For a single row result set, you map fields with their "offset". So for example if I have Select field1, field2, field3 FROM table, In the result set, I will have three mappings. ResultName: 0 Variable name: myVariable1 maps field1 to myVariable1 ResultName: 1 Variable name: myVariable2 maps field2 to myVariable2 ResultName: 2 Variable name: myVariable3 maps field3 to myVariable3 ...Show All
Visual Basic Help with working with events in .net 1.1
I have a business entity class accountEntity. I want to put an event in that class. Whenever a property within the class changes I want the event to be raized and as result call a method myMethod . So I declare my events like this: Class AccountEntity() Public Event ValueChanged As EventHandler Protected Overridable Sub OnValueChanged(e As EventArgs) RaiseEvent ValueChanged(Me, e) End Sub Then in my property FirstName within the same class I raize the event when I change the FirstName value like this: public Property FirstName as string get return _FirstName End Get set _FirstName =value; OnChanged(new EventArgs()) End Set End Property But I don t know ...Show All
.NET Development Connection Pooling not working
I have a form that has a number of database calls. It does these sequentially. In some cases it's not possible (due to archetecture more than anything) to make these calls all on the same connection. However it does open then close the connection. (all connections created are in using statements) What I'm seeing is that we're getting a timeout when the 100 connection limit is hit. Looking at Activity Monitor I can see these connections growing and growing over time in the activity monitor the more windows you open and close even though these connections are closed. (and they all use exactly the same connection string) data source=(Local);initial catalog=Evolution;password=dyknalna;user id=EvolutionUser;Connection Timeout=20; I read ...Show All
Visual Basic Problem using the contains function
What am I doing wrong, the code below keeps giving me an error when I'm debugging, stating "Conversion from string "personslastname" to type 'Integer' is not valid.", but I never defined an integer...... If CCPD.Main.MainUC1.Child_Information_DatabaseDataSet.Child_Information.Rows.Contains( "LastName" (TextBox2.Text)) = True Then MessageBox.Show( "this message indicates an attempt to save data to an existing datarow." ) The yellow highlighted area is what is highlighted by the debugger. You can also run a select on the datatabe to see if it returns any rows... Dim TheFilter as string = "Field1 =" & TextBox1.text & " AND Field2=" & Textbox2.text ...Show All
Software Development for Windows Vista Modifying a report created in report builder in the designer
After I use the report builder to create a generic report, how do I actually get that report into the report designer so that I can modify it more effectivly I'd try the reporting services forum over here -> http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=82&SiteID=1 This is a forum for Windows Workflow Foundation. ...Show All
