Software Development Network Logo
  • Smart Devicet
  • SharePoint Products
  • Windows Forms
  • Audio and Video
  • SQL Server
  • Visual C++
  • Visual FoxPro
  • Microsoft ISV
  • Windows Vista
  • Visual Basic
  • IE Development
  • Visual C#
  • Game Technologies
  • .NET Development
  • Visual Studio

Software Development Network >> Cactus77's Q&A profile

Cactus77

Member List

DragonC#
baboori
ImGivingUp
Chuck S.
MeetJayBlack
Chuck H
psp77
SourabhGovil
BRCEWANE
rykk
anubisascends
Keren S
pkv
Jack Hoxley
LongRetired
plsh
MooseNSquirrelz
TomJ72
Musafir
JimTan
Only Title

Cactus77's Q&A profile

  • Software Development for Windows Vista How to generate the instance of Windows form ?

    I want to generate the insatnce of a window form in the static method of a workflow which is called on the completion of the workflow. I don't think if this is the exact way of how you want to accomplish it -through a static method of a workflow- but what you can do is to start the windows form in the WorkflowCompleted handler in your Main method as in: workflowRuntime.WorkflowCompleted += delegate ( object sender, WorkflowCompletedEventArgs e) { Application .Run( new Form1 ()); waitHandle.Set(); }; Hope this helps Thanks Elif ...Show All

  • Visual Studio Team System Can a Work Item Type be disabled?

    I have a situation where work items were migrated from ClearQuest as a "Defect" work item type. I need to prevent new "defects" from being created since we are using the default work items (task, bug, etc) going forward, but I still need to see the old defects for historical purposes. Is there a way to remove the ability to create work items of a specifict type So when I right-click on "work items", and select "Add Work Item", it doesn't show up on the list But then I won't be able to look at the information for history purposes. Can I try something with the workflow maybe I'll give that a try. ...Show All

  • Visual Studio Team System How to Run the VS2005 performance session from cmd line

    VS2005 IDE creates the nice performance session(s) for a given successful test runs. Rather than running these performace sessions thru IDE, is there a way to run the instrumented profile thru a cmd line (ie., after myrun.psess is created in IDE; would like to know if there is a way to use this .psess file with a cmd line tool and collect the profile data). Thanks Vani Vani, This is a request that we've heard before and that we will be considering for the next release. But sadly, the psess files are only for the IDE as of right now. There is no command line tool to run them. Thanks, Ian ...Show All

  • Visual Studio Express Editions no subject

    can anyone give me an example as to how to connect and control something from a serial port.....something really simple like a light bulb..... hey maybe this..... I have a teddy bear which runs on batteries when you squeeze his foot he snores.... I would love to connect and control him by the pc any ideas...please Not a parallel cable - a serial port cable. In your original question you writes the serial port, and my answers is based on that. Do you mean the parallel port instead No it does not sound correct! If you want to start the head motor from the PC, you need an output. The serial port cannot drive the motor directly. You need to connect a switching transistor in parallel with the sensor in the teddy bear ...Show All

  • Visual Studio Express Editions Problems Install Visual Studio Express

    Hey guys, im from Guatemala, i have a little problem with my install, i run the setup of visual basic express spanish edition, its star to unpack the instalation files, every its ok, the problem starts when the install manager wants to download packages, because im use a proxy server, so the instalation manager, cant connect to download files, what i have to do , thanks for you help. Your best bet is to try and install from the manual downloads here: http://msdn.microsoft.com/vstudio/express/support/install/default.aspx Unfortunately, these are English only and I'm trying to locate where the localized versions of the downloads are. These are provided by the subsidairy for MS who maintains their own Exp ...Show All

  • .NET Development Add a new DataTable to the DataBase through Code

    (VB.net & SQL 2005) Hi i have a "Sales" DataTable that shoulb be archived at the end of each day. i need to store the data(table) in a seperate DataTable for each day and assingn an accending number(index) to its TableName Property. How can i create a new DataTable and add it to my DataBase just by code maybe its sort of a basic job, but i have no idea how to do it. should i use SQL commands such as "CREATE" or is there another way in vb.net thanks alot. Hi, Please refer the sample given below and use it as per your need, Private Sub CreateTableInDB() Dim reader As SqlDataReader = Nothing Dim conn As SqlConnection = Nothing ...Show All

  • Software Development for Windows Vista Multiple NTVDM.exe

    I work for a corporation(TimeManagement Corporation) that uses a 16 bit application that runs in the virtual dos machine. Two years ago Microsoft released a security patch(MS04-012) that caused each new 16-bit file to open in it's own ntvdm thus not allowing our 16-bit application to communicate with other files that it calls. We contacted Microsoft about this but it was not taken care of until we posted on a forum. They then released a hotfix(KB841559) to fix this issue. We are now having the same problem with MS Windows Vista and would like to know if we can get a fix for this issue to allow our program to be compatable again. We do have a 32-bit enterprise edition. However we have several large contracts ...Show All

  • SQL Server Integrated Security doesn't work - "Not associated with a trusted SQL Server connection." Error

      Hi, I have a piece of Java code that needs to connect to SQL 2000 (SP4) using Windows Authentication. It's running on Windows Server 2003 SP1. I tried JDBC v1.1 and followed the code from the following blog: http://blogs.msdn.com/angelsb/default.aspx p=1 But still get this error as shown below. Any help appreciated. I am using JDK1.4.2, "sqljdbc_auth.dll" is located under "E:\SQL2005JDBCDrv\sqljdbc_1.1\enu\auth\x86", also made a copy under "E:\JavaTest" and "C:\Windows\System32" but still won't work. Cheers Allan   =========================================================== E:\JavaTest>javac -classpath ".;E:\JavaTest\sqljdbc.jar" TestW2.java E:\JavaTest>java -classpath ".;E:\JavaTest\sq ...Show All

  • Visual Studio Team System Project Server Integration

    I read on Brian Harry's latest post: http://blogs.msdn.com/bharry/archive/2005/10/01/476030.aspx  and he mentioned a small change in the way fields are mapped to MSFT Project... however, has there been any work done in integrating directly with Project Server   I read awhile back that integration was going to be enhanced, just not sure if it made it into TF Beta 3 or not. Thanks, ~slee The user model with Project Server for V1 is to use an .mpp file as the integration point between the two servers (Project Server and Team Foundation Server). As Brian mentioned above, there is no direct server-server integration in the V1 product we will have a starter kit for people who what do do Project Server i ...Show All

  • Visual Studio Team System Email and IM alerts to capture problems

    When the December CTP shipped I asked about the availability of forms to allow users to send bug reports and have them inserted directly into a bug database that could be allocated to workers. I was told that they would be in Beta 2 but I can't seem to locate them at all. Could someone direct me to them or have they slipped to a later version Marcel de Vries wrote: Don't know who told you this, but it's not something I have heared of to be in B2. You can implement this yourselve using the Currituck API and that is not that hard to do. Have a look at the extensibillity kit that is available at http://www.vsipdev.com/downloads/ when you register you can download the kit and it will provide a set with samples how to use the API' ...Show All

  • .NET Development problem with networkstream connection

    So i have a problem, and can't find eny solution for it. Let's say i want to write client-server program, where client can send data over network using networkstream. I found basicaly example: http://www.c-sharpcorner.com/Network/SocketProgDTRP.asp it work's very fine on my computer (when i run both, client and server) on my machine, but client can't connect if i try to do this on the network.... i run server app on other computer (server) ant tcplistener is waiting for any connections on port 10, after this i launch client app on my computer (with changed "localhost" to server host name ) ant client after about ten seconds returns error: "System.Net.Sockets.SocketException: A connection attempt failed because the connect ...Show All

  • SQL Server Move table from one filegroup to another?

    Hi guys, I'm in middle of database re-development as part of performance enhancement, I have re-group the tables to optimize query IO and created corresponding filegroups to house the data. Is there a way (or code) to move each table to their respective filegroups At the moment all the tables are on Primary filegroup. I have group the table into 6 section each to with the view to move each section into one of the 6 filegroups - each filegroup on different diskdrive I have looked at alter table command but can't find anything to allow me accoplished this task. Any ideas please thanks. Oh, yeah, one VERY important thing: Take NONE of this lightly; if you do this stuff wrong, it can ...Show All

  • SQL Server ADO Recordset from SQL Task issue

    Dear Folks, I have a Foreach Loop that enumerates a set of files from an ADO recordset variable which is populated by a preceding SQL task. The query from the task that populates the recordset returns about 200 rows with one varchar field(a file path). The loop is long running, and so far it errors on the connection string populated by the enumeration variable after about an hour. The timeout for the SQL task is set to zero. Could it be the source recordset variable timing out, or could it be that the recordset is too large Thanks, Chris Also, It's definitely not the recordset itself, as I've been able to use the same ADO variable result set to enumerate loops with fewer tasks\are shorter running. Any chance this is a memory leak ...Show All

  • Windows Live Developer Forums How to deactivate an order item?

    Hello, Let's suppose I would like to deactivate a certain order item vs. deleting it from the order. (for it to be there in case I decide to reactivate it!) Does anyone now if this is possible Thank you, Orest Hi, I don't think it is possible as there is no such method as "PauseResumeOrderItem" in the doc. Julien ps: oups, didn't see someone answered already. :) ...Show All

  • Software Development for Windows Vista "Logon Unsuccessful" balloon with the CredUIPromptForCredentials API

    Hi, I am using the CredUIPromptForCredentials API for displaying a dialog box that will prompt for the user for credentials. I am not sure how to generate the balloon when the user enters an invalid password. I've tried setting the CREDUI_FLAGS_INCORRECT_PASSWORD flag in my call to CredUIPromptForCredentials but to no avail. Any guidance will be welcome. Thanks, Prashanth ...Show All

©2008 Software Development Network