Software Development Network Logo
  • Visual FoxPro
  • VS Team System
  • Visual C++
  • .NET Development
  • Windows Vista
  • Visual C#
  • SQL Server
  • Smart Device
  • Visual Basic
  • Visual J#
  • Game Technologies
  • Architecture
  • Microsoft ISV
  • Windows Forms
  • Visual Studio

Software Development Network >> Todd Girvin's Q&A profile

Todd Girvin

Member List

sneakyfeline
Michaelxyz3
Mish
nrb1955
Chung Ho Lee
Mark Fasano
perfect13
tamlin2
DeepaSubramanian
office of technology
Jeroen Alblas
David Eccleston - DX MVP
Timothy Tim
Jignesh Joshi
VladD2
OakRaven
Lisa Shanley
1gotoguy
John George-MSFT
megadith
Only Title

Todd Girvin's Q&A profile

  • Software Development for Windows Vista Bug? InvokeWorkFlow activity used with Sequential Workflow hosted in Console App

    I've been experimenting with InvokeWorkFlow activity and found what I think might be a bug with the logic in hosting code for the console app.  In the Main method, the WF runtime is instantiated and the started passing in the type for WorkFlow1.  Before it starts the workflow however it wires up a handler for the WorkflowCompleted event that when called sets a AutoResetEvent which the main thread uses to terminate the WF runtime and end the app.  So here's the problem.  I have a workflow that uses InvokeWorkflow activities to invoke 3 separate workflows that I want to run asynchronously.  However, after calling the ...Show All

  • Visual Studio Blue Screen when installing VS.NET 2005 Pro

    Hi all, I downloaded the VS.NET2005 Pro and SQL 2005 Dev Editions from the MSDN site and have been trying to install it on my IBM Think Pad for the last week. When installing at the point when the install says "Installing .Net Framework 2.0" I get a blue screen of death. This happens both for SQL 2005 and VS2005. I then tried to install just the .net 2.0 framework and get the BSOD. below are the dumps in my Event log (I have the actual .dmp files to) I have tried switching off my Windows Firewall etc as I found ONE post about someone having a similar problem but the issue was Zone alarm. But this did not even help. EVENTLOGS: (Please ...Show All

  • Visual Studio Team System Cannot connect to TFS from Visual Studio

    I am not sure if TFS is even running.  I can get to sharepoint no problem, create new sites etc.... I can get to the report services no problem and when I browse to the TFS host machine from a workstation I get the sharepoint site.  I have tried running Visual Studio as the the tfsservice account and still I get the cannot connect dialog.  How can I tell that TFS is installed and working   Is there an admin utility What directories should I have in IIS Thank you in advance! You are missing the STSAdm commands... ALSO, you must separate the Report Server and Reports Virtual Directories ...Show All

  • SQL Server error when trying to connect to jdbc

    I got this kind of error when I' trying to connect to jdbc: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket. I have checked the server by ping and there is no problem with the server. But why I can't connect. Here is my code: import java.*; public class Connect{      private java.sql.Connection  con = null;      private final String url = "jdbc:microsoft:sqlserver://";      private final String serverName= "localhost";      private final String portNumber = "1433";      private final Strin ...Show All

  • Visual C++ ddraw.h and wtsapi32.h not found

    Hi: I tried converting a C++ unmanaged project from VS2003 (professional edition) to VS2005 (standard edition) and get errors indicating that the files ddraw.h and wtsapi32.h are not found.  I noticed that these files are in the Platform SDK that came with VS2003 but not the Platform SDK that came with VS2005. Does this mean that these files are no longer included in the most recent Platform SDK, or is the Platform SDK that came with VS2005 incomplete   Can I fix this problem by installing the latest full Platform SDK or do I need to install an older Platform SDK These files do still exis ...Show All

  • Visual Studio set credentials for ReportViewer?

    This can't be rocket science. In RS 2000, I could set a credential like this: rs.Credentials = New System.Net.NetworkCredential(repSvcUserID, repSvcPwd, repSvcDomain) What is the equivalent to this in RS 2005, when calling a report via a webform reportViewer control I've found some very complicated examples of creating your own class with IReportServerCredentials, but I can't seem to get it to work. Is there some simple example available Marie Specifying credentials to the server in the webform control is a little more complicated. The problem is that the webforms control will make ser ...Show All

  • Visual Basic my.**** is coming up undeclared

    I have pretty much copied the exact program into a new one but the new one with almost identical code(only change being variable names) won't publish because of the My in My. Computer.FileSystem.GetFileInfo(openFile1.FileName) Please enlighten the newbian:>) Thanks! if you create a new windows application and use this line does it work correctly ie. is it only this project that is having the problem. was this project created in 2005 or was it migrated from an earlier version. how did you copy the project as there are other hidden files behind the scenes which you may not have copie ...Show All

  • Visual Basic Monitoring system messages?

    Is there a way in vbExpress to monitor the system messages going between the tcpip input from the net to the displayed windows form I get the data I need now by reading the screen, but it would be much easier and faster if I could instead capture the input to the form before it went to the display. I would very much appreciate any suggestions. Thanks Dick R. Hi ReneeC, The form contains about 36 areas which are updated regularly (once or twice a minute) with numerical text or graphics which change with each update. The graphics (gif's) are stored locally and referenced by a code which is suppli ...Show All

  • SQL Server Conversation ID cannot be associated with an active conversation

    Hi: My service broker was working perfectly fine earlier. As I was testing...I recreated the whole service broker once again. Now I am able to get the message at the server end from intiator. When trying to send message from my server to the intiator it gives this error in sql profiler. broker:message undeliverable: This message could not be delivered because the Conversation ID cannot be associated with an active conversation. The message origin is: 'Transport'. broker:message undeliverable This message could not be delivered because the 'receive sequenced message' action cannot be performed in the 'ERROR' state. How do I pro ...Show All

  • SQL Server Model Information

    Is it possible to get hold of the fit parameters out of the prediction models in order to use them without going back to the database. E.g. With the linear fit model, y = ax + b, is it possible to get hold of a and b   This way I could use the fit equation and parameters directly within my C# code, rather than making many costly connections back to the database. You can get all of the parameters from the model's content rowset.  You can see the rowset by using the generic viewer (there's a viewer drop-down above the mining viewers) or by executing the query SELECT * FROM [My Model].CONTENT. At www. ...Show All

  • SQL Server Executing .sql file using SMO

    Hi all, Is it possible to execute a .sql file using SMO. like in old days we used to use osql.exe to execute the sql files Thanks in advance Rujith Hi, you don’t need SMO for that,executing scripts can be done via a *normal* sqlconnection (untested script, just wroite down in notepad) static void Main(string[] args) { if (args[0] == null) { Console.WriteLine("No file passed to the program."); return; } if (!File.Exists(args[0].ToString())) { Console.WriteLine("File does not exist."); return; } ...Show All

  • Windows Forms MDI Help

    Hi,     how do i display another MDI child form from an existing MDI child form, for example, i have an MDI child and it contains a button upon clicking the button another MDI child will be displayed.... but the Mdi child with the button is not an MDI container. thanks! Its really easy, your MDI Child form contains a r ...Show All

  • Windows Forms how to make Forms senstive menus in MDI appliaction?

    hi there gurusss I have developed an MDI windows form application using C# and dockmanager library. Now i want to enable/disable the parent form menu items based on which child form is displayed. and also i want to make child form senstive menus i.e if child A is displayed then parents's FILE menu should be changed accordingly. currently i have 2 approaches ...Show All

  • SQL Server foreign key constraint

    i have a publication that is composed of many articles. The publication is composed of many realated tables. I'm doing a snapshot replication Is there a way to specify the order by which table must synchonize. lets say. article 1 synchonizes first, then article 3, then article 2 are you getting foreign-key constraint errors, is that why you ask if so, you can mark the foreign keys as "Not For Replication", this way they're not enforced when replication runs. You can also choose not to script foreign keys at the subscriber, if you wish. ...Show All

  • .NET Development My remoting application work on XP but does not work on Windows Server 2003

    Hello I have a application that call helper(MarshalByRef) classes and they return the business objects(serializable) instances to client side, then I am binding my user controls to the returned local objects. Every thing is fine on XP but after deploying my remote classes(Helpers) to windows 2003, in the client application when I try to set properties the application freezes. When I traced, I saw they are trying to put the values in transport proxy instead of local instances. My host is IIS. Regards Mohsen ...Show All

©2008 Software Development Network