Activity overview
Latest activity by rkamp
When I applied the patch to Version 3.2 that is listed in post: http://www.red-gate.com/messageboard/vi ... php?t=7249
my problem was corrected. Without this patch, 3.2 never worked on my app. 4.0 doesn't work on Windows 2003 Server, but does work fine on Windows Vista.
Rick / comments
When I applied the patch to Version 3.2 that is listed in post:http://www.red-gate.com/messageboard/vi ... php?t=7249
my problem was corrected. Without this patch, 3.2 never worked on my app. ...
Stephen,
In most cases I'm getting to the server via a Terminal Services connection.
I have tried running locally on the console, and still have the same problem.
I'm going to try running with the database connected locally instead of using a remote database. I'll let you know the results.
As far as the Call Graph, it does a good job about showing the most expensive calls. The drill down is very good, too. If I need more detail, I just look at the individual lines of code to see the timings. What toolkit are you using to display the graph? It is a very nice tool for your application.
Rick / comments
Stephen,
In most cases I'm getting to the server via a Terminal Services connection.
I have tried running locally on the console, and still have the same problem.
I'm going to try running with the ...
Stephen,
Thanks for taking a look at this. My development machine is Windows 2003 Server and is where I'm having the problem. If I run your program on my Windows Vista machine (SP1), everything seems to run fine and I can profile my application without problems.
If I find some more information about this issue, I'll let you know, but for now I'll do my testing on Windows Vista.
I'm really excited about the 4.0 release. The user interface is great!
Cheers,
Rick / comments
Stephen,
Thanks for taking a look at this. My development machine is Windows 2003 Server and is where I'm having the problem. If I run your program on my Windows Vista machine (SP1), everythi...
I have taken some of the initialization code in my app and created a simple project which works sometimes with the 4.491 release, but most times the app just hangs when it is trying to open the database connection. My real app doesn't get through the Load routine in the main form.
For the 3.2 release, the program just hangs and the main form never appears.
This is a VS 2008 (SP1) VB application running on Microsoft Server 2003.
In either case, I would appreciate your opinion on why this code doesn't work with your tool.
I have emailed the source code to the support@red-gate.com email address.
Thanks,
Rick Kamp
Kamp Consulting Services / comments
I have taken some of the initialization code in my app and created a simple project which works sometimes with the 4.491 release, but most times the app just hangs when it is trying to open the dat...
When I looked to see how far the application profiling got, my application is hanging in the following code when the profiler is running: Dim cn As System.Data.SqlClient.SqlConnection '=
' Clear out any old error messages
DBErrorMsgs = ""
' Define the connection
' Dim cn As OleDbConnection
Dim SQL1 As String
Dim cmd As System.Data.SqlClient.SqlCommand
' Assume we cannot access the database
ValidateDBAccess2 = False
' Set up the connection string
sConnString = "Data Source="
' Add the database server name
If sServerName = "" Then
sConnString = sConnString + "(local)" + ";"
Else
sConnString = sConnString + sServerName + ";"
End If
' Set the initial database name
sConnString = sConnString + "Network Library=DBMSSOCN;Initial Catalog=ToysToTrack;"
' Try using integrated security
sConnString = sConnString + "Integrated Security=SSPI;"
Debug.Print("Connection string: " + CStr(sConnString))
Try
' Open the connection and try to do a simple DB operation
cn = New System.Data.SqlClient.SqlConnection(sConnString)
(Code never executes past the time that the database connection is attempted. Code works fine without the profiler.)
Any ideas?
Thanks,
Rick / comments
When I looked to see how far the application profiling got, my application is hanging in the following code when the profiler is running:Dim cn As System.Data.SqlClient.SqlConnection '=
' C...
Another crash from Version 3.2
I was originally profiling under VS 2005 and now have converted all my projects for VB 2008 (SP1). When I start to profile, I get an Unhandled Exception. Here's the exception info. Any help w...
Problem with new version 491
I successfully ran my VS 2008 VB project (with VS SP1) with your 396 release, but it no longer works with the 491 release. The log file gives me the following error message and then my applicati...