Muark's Q&A profile
Software Development for Windows Vista Spawn new workflows from within a workflow
Is it possible to spawn new workflow instances from within an existing workflow instance More specifically, is it possible to replicate new state machine activities from a parent state activity Tewks, You can use the InvokeWorkflow activity to spawn new instances of a target workflow. When used in combination with a replicator or while activity, you can create multiple instances of the child workflow. Arjun ...Show All
Visual Basic Loading and showing a form in a Panel control
Is it possible to load and display a form inside a panel control using Visual Basic 2005 and if so what code do I need to handle this. Regards Dipendra Hi. I don't think it will be possible. I tried to make a panel be the parent of a form and I received a huge exception. It doesn't sound logical to me to do that but as far as I tried it didn't work. What are you trying to do (if we can know of course) Are you trying to do a MDI app something like Outlook Express or Ms Word or something like that regards. ...Show All
Visual Studio Team System How to get name, value environment variables from GenericTest programmatically
Hi, How to get Name, value pair of Environment Variables of GenericTest programmatically I can see from the UI, but I can not query from the sql express database. How can I access it from a program is there any API to get it Thanks! Hi, Could you explain a little more about your scenario here like what are you trying to achieve The user defined environment variables can be used on the program name, the working directory and the summary result file path from the Generic Test editor. And also the data is stored in the Generic Test storage file (for example, GenericTest1.GenericTest) Thanks, James VSTS ...Show All
Windows Forms paste event?
I have a "paste" button on a toolbar above a richtextbox object. When I click it, I can test to see if the clipboard format is one I am expecting and then do the paste (I don't want the user to be able to paste in graphics, only formatted text). How do I do the same check if someone clicks in the richtextbox and hits " ...Show All
Windows Forms Where is the DirectoryServices namespace
I am using VS.net Feb 2005 CTP and I cant seem to find the directory services namespace. The help file says that its there but when I type in System. i cant find it. I have tried to access classes which i know are there even though intellisense says there not but I get errors. i.e. System.DirectoryServices.DirectoryEntry group = new System.DirectoryServices.Directory ...Show All
SQL Server SELECT QUERY Without USING CASE
I have a select query select col1-tbl2,col2-tbl3,col3-tbl4 ,col4-tbl1,col5-tbl1 from tbl1where condition, The above quey col1-tbl2,col2-tbl3,col3-tbl4 are from table1 only, but it have only id(ie) the foreign key references of tables 2,3,4 I want the column with their values to join with the tables 2,3,4. Except USING CASE Except USING CASE Please Guide me USING CASE Not sure I understand. Just join to the tables: select tb2.colOther as col1-tbl2, from tbl1 join tbl2 on tb1.col1 = tbl2.col2 ... Or is your question different than this ...Show All
Software Development for Windows Vista Task List presentation of "my assigned activities"
We are currently developing a custom inventory, sales, and contact management system. The system (ASP.NET 2.0) maintains customers, inventory, and orders, and our next phase must provide workflow to integrate the users with each other in a task-driven workflow. We would like to use Windows Workflow Foundation as our workflow technology platform. My question is around the presentation of a "task list" for each user. In our proposed workflow solution, many complex workflows will be processing simultaneously, and each user will have many "tasks" assigned to them at any given time. We are looking for a best-practice ...Show All
Visual Studio Express Editions Access data connection in Visual Basic 2005 Express Edition
Hi everybody ! I have a problem making a new dataconnection to an Access-database in VB 2005 Express Edition. I use the built in wizard to build the connection string and when I test the connection it works fine. Then when I click the OK-button I get error message "Wrong parameter" and I can't continue. What's wrong /Bosse Svenningson ...Show All
SQL Server The Trash Destination Adapter - Really needed?
Quick question... I have a conditional split transform in a dataflow... One of the outputs of the conditional split will take records that are just not needed... Do I have to send that output into the Trash Destination adapter Or can I just let those records hang Will there be a memory leak if I don't use a trash adapter I'm just thinking about if I move the package I'd have to go reinstalling the trash adapter every time... Thanks To be clear, don't use anything, including Row Count, unless you really want to. If you will use the Row Count then fine, otherwise just ignore it. It does ...Show All
Windows Forms Menu Items -Click event
Dear All, I have created a help file say myhelp.chm seperately I want to display this help file by clicking a menu item Basically what i want to know is how to open an external file by clicking a menu item Any help is appreciated Thanks To excute external commands (like the 'Run' on the start menu) use the following code: /// <summary> /// Excute shell command without arguments /// </summary> /// <param name="command"></param> public static void Excute( string command) { System.Diagnostics. Process proc = new System.Diagnostics. P ...Show All
Visual C# session and cookie in asp.net
I want example simple about session and example simple about cookie and project simple explain more basic that use in asp.net ; thank you Hi! You can't get much help with such questions, because the answer will be very, very, very long. Ask more specific questions. If you do not know anything about ASP.NET - you need to get some book and read it first. For simple example - create new empty project. This is simple and easy example. ...Show All
Windows Forms where to download taskvision?
I cannot download from its official web page Let us know if you have any problems installing, and have fun! ...Show All
SQL Server Installing databases to different hard drives.
Can't find anything on how to install to drives other than sys. I'm brand new to Servers and Databases in general and trying to learn. How do I get databases to install on drive partitions other than my main system drive Hi, don’t know if you mean database or instance in your case. Databases can be installed (or created) on medias using the CREATE DATABASE statement using the file destination (more details in the BOL) or with the GUI placing the files whereever on your local disks or SAN you want. The instance and therefore the server service files can be installed on every drive you want for SQL Server 200 ...Show All
Visual Studio 2008 (Pre-release) Why will Dlinq fail ?
Microsoft tries to helping object developers to close the gap between the relational world and the object world.And they call this " object modelling approach " Dlinq. Using " custom business entities " in enterprise programming with Dlinq might seem the best thing after " sliced bread " but it isn't. For my part I have written my Mappers and used commercial OR/M tools. They mostly provide the same thing. __Read the table from the database. ___Put that into a some HELPER thing.( DAO,DAL,ORM) ____Put that into your custom business object _____Read from your business object.(if u can :) ) I see NO REASON for this " Unnecessary Pull ...Show All
SQL Server How to use cubes of 2000 in 2005
We have to create reports based on cubes, which were designed using SQL 2000. We have migrated to SQL 2005. We have the cubes (.cub files) and a database of SQL 2000. We need to design few sample reports based on these cubes (specifically some charts). We are quite new to Analysis Services. Can anyone guide us or point to the right direction, what are the steps to be followed here, like do we need to import these cubes into a 2005 database or can these be just copied in a folder and referred directly. basically where and how to start from. Any suggestion or help is appreciated. It is not possible ...Show All
