User rjrapson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:21:13Z http://stackoverflow.com/feeds/user/1616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1574484/need-recordset-behavior-in-vb-net-w-ado-help/1574694#1574694 0 Answer by rjrapson for Need recordset behavior in VB.NET w/ADO help rjrapson 2009-10-15T20:01:49Z 2009-10-15T20:01:49Z <p>It would be pretty straight forward to convert that to a SQLDataReader to replace the recordset. Basically, the syntax is </p> <pre><code> using conn as new sqlconnection({connection string}) using cmd as new sqlcommand("select * from tblDQ order by xid, xcode, xDOS", conn) cmd.connection.open() using reader as SQLDataReader = cmd.ExecuteDataReader() while reader.read do your thing here, referencing reader("field") end while end using 'dispose of the reader end using 'dispose of teh command end using 'close and dispose of the connection </code></pre> http://stackoverflow.com/questions/1510854/any-bug-tracking-addin-for-visual-studio/1510892#1510892 4 Answer by rjrapson for Any bug tracking addin for Visual Studio? rjrapson 2009-10-02T17:32:30Z 2009-10-02T17:32:30Z <p>Another free for single user product is Axosoft's OnTime. It has a Windows client, as well as integrating with Visual Studio. Uses MS SQL Server as store, and supports SQL EXpress, so it's still free.</p> http://stackoverflow.com/questions/1373341/clickonce-client-requirements/1373366#1373366 0 Answer by rjrapson for ClickOnce - Client Requirements rjrapson 2009-09-03T13:18:49Z 2009-09-03T13:18:49Z <p>The framework required would depend on the application you are deploying and which framework it is targeting. If you are not sure, I believe the setting in VS 2008 is on the project properties, Compile tab, Advanced button.</p> <p>Not sure about the admin requirements, so I won't guess.</p> http://stackoverflow.com/questions/1232837/error-in-vb-net-windows-service-when-connecting-to-sql/1232901#1232901 0 Answer by rjrapson for Error in vb.net windows service when connecting to SQL rjrapson 2009-08-05T12:21:34Z 2009-08-05T12:21:34Z <p>There isn't much to go on here, but it sounds to me like the service account doesn't have the required access rights to the database. </p> <p>If you installed the service to run under Network Service or Local, create an account on the server that has access to the database and change it to use that service.</p> http://stackoverflow.com/questions/108459/multi-format-file-viewer-for-net-development 2 Multi-Format File Viewer for .Net Development rjrapson 2008-09-20T15:20:48Z 2009-06-12T07:00:00Z <p>Is anyone aware of a multi-format file viewer, capable of displaying common image formats, as well as MS Office document formats (at least Word and Excel), and PDFs? I've seen several image viewers available, but none besides Outside In from Oracle.</p> <p>I'm looking for viewer technology that can be imbedded in a .net application - a mixture of vb and c#</p> http://stackoverflow.com/questions/860543/font-settings-in-chart-series-tooltip 0 Font settings in chart series tooltip rjrapson 2009-05-13T21:33:50Z 2009-05-13T21:33:50Z <p>Is it possible to change the font settings for tooltip text in the mschart control?</p> <p>I've tried setting the chart series font, but it doesn't affect the tooltip associated with the series data.</p> http://stackoverflow.com/questions/767870/asp-net-web-site-on-iis7-on-vista/767913#767913 0 Answer by rjrapson for ASP.NET web site on IIS7 on Vista rjrapson 2009-04-20T11:42:14Z 2009-04-20T11:42:14Z <p>I had a problem with images displaying in an MVC app until I coded the image tags like this:</p> <pre><code>&lt;img src="&lt;%= Uri.Content("./content/images/image.png") %&gt;" alt="text" /&gt; </code></pre> http://stackoverflow.com/questions/658984/application-with-no-references-to-office-requiring-office-12-2007-in-gac-for-cl 0 Application with no references to Office requiring Office 12 (2007) in GAC for ClickOnce rjrapson 2009-03-18T16:20:30Z 2009-04-06T19:34:37Z <p>I have a situation where I'm trying to deploy an application update via ClickOnce to many users, but on some it's failing with an error saying that they need Office 12.0.0.0 in their GAC. </p> <p>This happened after I installed Office 2007, so I uninstalled 2007 and reinstalled Office 2003, then re-built/re-published the app. Fixed it for some, but not all.</p> <p>There are no references to Office in the application, so I'm unsure why it's checking for a dependency. </p> <p>I checked my GAC, and it still lists office 12 and won't let me remove it - says it's required by Windows Installer</p> http://stackoverflow.com/questions/658984/application-with-no-references-to-office-requiring-office-12-2007-in-gac-for-cl/659391#659391 0 Answer by rjrapson for Application with no references to Office requiring Office 12 (2007) in GAC for ClickOnce rjrapson 2009-03-18T17:46:01Z 2009-04-06T19:34:37Z <p>I think I've resolved the problem, but I'm not sure how it occurred. There was a reference to office.dll in the Application Files on the publish tab. It was listed as a requried prerequisite, but wasn't listed under the Prerequisites (which is why I didn't accept WakeUpScreaming's answer, although I did sort of find it as a result of his suggestion.</p> <p>Since there were no references to anything Office in my app, I marked that file Exclude and it now will deploy to my users.</p> <p>Just thought I'd let everyone know what I found.</p> <p>Update 4/6/09: After un-installing all possible Office 2007 components, including the PIAs, I still had the problem. Turns out that there was still a Policy in the GAC redirecting Office 11 to Office 12, and they wouldn't un-install. I used GACBrowser to remove the policies and all is well.</p> http://stackoverflow.com/questions/718780/conversion-tool-comparisons-for-visual-basic-6-0/718841#718841 0 Answer by rjrapson for Conversion tool comparisons for visual basic 6.0 rjrapson 2009-04-05T12:01:32Z 2009-04-05T12:01:32Z <p>I haven't used either of the tools mentioned, but with a little preparation, the upgrade tools in Visual Studio are more than adequate.</p> <p>The first thing you need to do is get the <a href="http://msdn.microsoft.com/en-us/vbasic/ms789135.aspx" rel="nofollow">Visual Basic 6 Code Advisor</a> from Microsoft. It's a great help in getting your project ready for migration.</p> http://stackoverflow.com/questions/689746/altering-a-column-null-to-not-null/689757#689757 1 Answer by rjrapson for Altering a column: null to not null rjrapson 2009-03-27T13:26:56Z 2009-03-27T13:26:56Z <p>just do an update set the field to 0 where field is null, then do the alter table.</p> http://stackoverflow.com/questions/513768/install-clickonce-without-running 2 Install ClickOnce without Running rjrapson 2009-02-04T22:53:54Z 2009-03-02T15:01:21Z <p>When you install a ClickOnce application, the program runs after the install. Is it possible to install <em>without</em> running? </p> <p>I know I can use a setup and deployment project and create an installer, but I'd prefer to use ClickOnce.</p> http://stackoverflow.com/questions/554335/best-tool-to-edit-view-sql-server-2008-database/554543#554543 0 Answer by rjrapson for Best tool to edit/view SQL Server 2008 database rjrapson 2009-02-16T21:01:17Z 2009-02-16T21:01:17Z <p>+1 for SQL Server Management Studio. Everything you've asked to do is available there. True, the context menu Edit Top 200 Rows is limited to just the result set by default, but you can click on the Show SQL Pane button and edit the query and still return an editable result. </p> http://stackoverflow.com/questions/235872/document-image-database-repository-design-question 3 Document/Image Database Repository Design Question rjrapson 2008-10-25T03:56:25Z 2008-12-24T21:55:09Z <p>Question: </p> <p>Should I write my application to directly access a database Image Repository or write a middleware piece to handle document requests.</p> <p>Background:</p> <p>I have a custom Document Imaging and Workflow application that currently stores about 15 million documents/document images (90%+ single page, group 4 tiffs, the rest PDF, Word and Excel documents). The image repository is a commercial, 3rd party application that is very expensive and frankly has too much overhead. I just need a system to store and retrieve document images.</p> <p>I'm considering moving the imaging directly into a SQL Server 2005 database. The indexing information is very limited - basically 2 index fields. It's a life insurance policy administration system so I index images with a policy number and a system wide unique id number. There are other index values, but they're stored and maintained separately from the image data. Those index values give me the ability to look-up the unique id value for individual image retrieval.</p> <p>The database server is a dual-quad core windows 2003 box with SAN drives hosting the DB files. The current image repository size is about 650GB. I haven't done any testing to see how large the converted database will be. I'm not really asking about the database design - I'm working with our DBAs on that aspect. If that changes, I'll be back :-)</p> <p>The current system to be replaced is obviously a middleware application, but it's a very heavyweight system spread across 3 windows servers. If I go this route, it would be a single server system.</p> <p>My primary concerns are scalabity and performace - heavily weighted toward performance. I have about 100 users, and usage growth will probably be slow for the next few years. Most users are primarily read users - they don't add images to the system very often. We have a department that handles scanning and otherwise adding images to the repository. We also have a few other applications that receive documents (via ftp) and they insert them into the repository automatically as they are received, either will full index information or as "batches" that a user reviews and indexes.</p> <p>Most (90%+) of the documents/images are very small, &lt; 100K, probably &lt; 50K, so I believe that storage of the images in the database file will be the most efficient rather than getting SQL 2008 and using a filestream.</p> http://stackoverflow.com/questions/388941/fast-free-desktop-sql-tool-for-csv-files/388979#388979 3 Answer by rjrapson for Fast, Free Desktop SQL tool for CSV files rjrapson 2008-12-23T14:26:59Z 2008-12-23T14:26:59Z <p>SQL Server Express 2008 with Tools <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7522A683-4CB2-454E-B908-E805E9BD4E28&amp;displaylang=en" rel="nofollow">Here</a>. It includes Management Studio and it works great.</p> <p>Note that it does require .net framework 3.5 sp1, MS Installer 4.5 and Powershell 1.0, but there are links on the download page if you need to get those as well.</p> http://stackoverflow.com/questions/376068/does-end-using-close-an-open-sql-connection 3 Does End Using close an open SQL Connection rjrapson 2008-12-17T21:18:00Z 2008-12-17T22:21:30Z <p>If I wrap a SQLConnection in a Using, should I close it or does the end using handle it?</p> <pre><code>using cn as new system.data.sqlclient.sqlconnection() cn.open '{do a bunch of other stuff with commands and datareaders here} cn.close 'Do I need this? end using </code></pre> http://stackoverflow.com/questions/374522/problem-inserting-string-or-null-into-sql-server-database/374585#374585 1 Answer by rjrapson for Problem inserting string or NULL into SQL Server database rjrapson 2008-12-17T13:51:42Z 2008-12-17T13:51:42Z <p>In the spirit of answering the question as it was asked, and being fully aware that refactoring the code to paramaterizing the queries is the correct solution, you could write a function that returns either a single-quoted string or a non-quoted NULL string value, then remove the single-quotes from the query string.</p> <pre><code>string insertString = String.Format( @"INSERT INTO upload_history (field1, field2, field3) VALUES ({0}, {1}, {2})", ToStringorNull(varField1), ToStringorNull(varField2), ToStringorNull(varField3)); </code></pre> <p>If you are using VS 2008 you could even implement it as an extension method.</p> <pre><code>string insertString = String.Format( @"INSERT INTO upload_history (field1, field2, field3) VALUES ({0}, {1}, {2})", varField1.ToStringorNull, varField2.ToStringorNull, varField3.ToStringorNull); </code></pre> <p>I'll leave creating the ToStringorNull function to you - it isn't hard :-)</p> http://stackoverflow.com/questions/359934/best-way-to-update-table-schema-for-huge-tables-sql-server/360172#360172 1 Answer by rjrapson for Best way to update table schema for huge tables (SQL Server) rjrapson 2008-12-11T17:21:03Z 2008-12-11T17:21:03Z <p>We have a similar problem and I've found that the fastest way to do it is to export the data to delimited files (in chunks - depending on the size of the rows - in our case, each file had 500,000 rows), doing any transforms during the export, drop and recreate the table with the new schema, and then do a bcp import from the files.</p> <p>A 30 million row table took a couple of hours using that method, where an alter table took over 30 hours.</p> http://stackoverflow.com/questions/341521/convert-a-text-file-with-embedded-hp-printer-codes-to-postscript 0 Convert a text file with Embedded HP Printer Codes to PostScript rjrapson 2008-12-04T17:51:23Z 2008-12-04T17:56:45Z <p>I have an application that prints by generating text files with embedded printer codes, then basically just copies the file to the printer to print. I need to take that print file and convert it to an image - just as if it was printed then scanned.</p> <p>My first thought was to setup a printer with a postscript printer driver attached to a file port, and then run the result through ghostscript to create a tiff, but it isn't working.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/299856/add-web-reference-option-missing-in-vs2008/299864#299864 12 Answer by rjrapson for Add Web Reference option missing in VS2008 rjrapson 2008-11-18T19:34:23Z 2008-11-18T19:34:23Z <p>Kirk Evans blogged about that very issue <a href="http://blogs.msdn.com/kaevans/archive/2008/03/18/where-the-heck-is-add-web-reference-in-visual-studio-2008.aspx" rel="nofollow">Here</a></p> <p>Basically, you just add a service reference. A web reference is just one type of service you can add.</p> http://stackoverflow.com/questions/283632/put-a-program-in-the-system-tray-at-startup/283855#283855 0 Answer by rjrapson for Put a program in the system tray at startup rjrapson 2008-11-12T12:58:02Z 2008-11-12T12:58:02Z <p>Since this was tagged with vb.net, here's what I did in a Windows Service and Controller app I just finished, Add a code module to the project, Setup the NotifyIcon and it's associated Context menu in Sub Main(), and then set the application's Startup Object to the Sub Main() instead of the Form. </p> <pre><code>Public mobNotifyIcon As NotifyIcon Public WithEvents mobContextMenu As ContextMenu Public Sub Main() mobContextMenu = New ContextMenu SetupMenu() mobNotifyIcon = New NotifyIcon() With mobNotifyIcon .Icon = My.Resources.NotifyIcon .ContextMenu = mobContextMenu .BalloonTipText = String.Concat("Monitor the EDS Transfer Service", vbCrLf, "Right click icon for menu") .BalloonTipIcon = ToolTipIcon.Info .BalloonTipTitle = "EDS Transfer Monitor" .Text = "EDS Transfer Service Monitor" AddHandler .MouseClick, AddressOf showBalloon .Visible = True End With Application.Run() End Sub Private Sub SetupMenu() With mobContextMenu .MenuItems.Add(New MenuItem("Configure", New EventHandler(AddressOf Config))) .MenuItems.Add("-") .MenuItems.Add(New MenuItem("Start", New EventHandler(AddressOf StartService))) .MenuItems.Add(New MenuItem("Stop", New EventHandler(AddressOf StopService))) .MenuItems.Add("-") .MenuItems.Add(New MenuItem("Exit", New EventHandler(AddressOf ExitController))) End With GetServiceStatus() End Sub </code></pre> <p>In the Config(), I create an instance of my form and display it.</p> <pre><code>Private Sub Config(ByVal sender As Object, ByVal e As EventArgs) Using cs As New ConfigureService cs.Show() End Using End Sub </code></pre> http://stackoverflow.com/questions/222969/installing-sql-server-management-studio-express-2008-fail/223102#223102 0 Answer by rjrapson for Installing SQL Server Management Studio EXPRESS 2008 FAIL rjrapson 2008-10-21T19:12:59Z 2008-10-21T19:12:59Z <p>With SQL Server Express 2005, there was a separate download of the Express Management Studio. With 2008, there are two different installs, Advanced and WithTools that incude it, but the standard SQL Server Express 2008 doesn't.</p> http://stackoverflow.com/questions/216778/skipping-primary-key-conflicts-with-sql-copy/216787#216787 2 Answer by rjrapson for Skipping primary key conflicts with SQL copy rjrapson 2008-10-19T18:39:03Z 2008-10-19T18:39:03Z <p>I think your best bet would be to drop the constraint, load the data, then clean it up and reapply the constraint.</p> http://stackoverflow.com/questions/213212/managing-projects-what-do-you-think-about-axosoft-ontime/213250#213250 0 Answer by rjrapson for Managing Projects - What do you think about AxoSoft OnTime? rjrapson 2008-10-17T18:19:15Z 2008-10-17T18:19:15Z <p>We use it for a small team of developers, and are very satisfied. One of the best features is the SDK that lets you integrate it into your applications. We use that to automatically submit defect reports in our error handlers, as well as a Request a new feature option on the help menu.</p> http://stackoverflow.com/questions/204479/any-tools-to-aid-porting-vb6-to-vb-net/204502#204502 1 Answer by rjrapson for Any tools to aid porting vb6 to vb.net ? rjrapson 2008-10-15T12:19:36Z 2008-10-15T12:19:36Z <p>I used the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=A656371A-B5C0-4D40-B015-0CAA02634FAE&amp;displaylang=en" rel="nofollow">VB6 Upgrade Advisor</a> from Microsoft to convert an application. It will scan your code and make recommendations on changes that will make the automatic conversion in Visual Studio work better. </p> <p>The biggest issue, in my experience, was with control arrays. They're not supported in .net, but they do get converted in a kludgy way that makes refactoring difficult after the conversion. Do the refactoring before the conversion if possible.</p> http://stackoverflow.com/questions/199521/vb-net-iterating-through-controls-in-a-container-object/199558#199558 1 Answer by rjrapson for VB.NET - Iterating through controls in a container object rjrapson 2008-10-14T00:23:55Z 2008-10-14T00:23:55Z <p>Why not just have one routine</p> <p>ClearAllControls(ByRef container As Control, Optional ByVal Recurse As Boolean = True)</p> <p>You can recurse into it regardless of what level in the hierarchy you begin the call, from the form level down to a single container.</p> <p>Also, on the TextBox controls, I use textbox.text = string.empty</p> http://stackoverflow.com/questions/199348/how-can-i-roll-back-a-clickonce-application/199399#199399 0 Answer by rjrapson for How can I roll-back a ClickOnce application? rjrapson 2008-10-13T23:16:03Z 2008-10-13T23:16:03Z <p>If you look at your deplpyment location, you'll see every previous version, in a separate folder with the version number appended, as well as the deployment manifest, also with the version number appended. You can rename any one of them to be the current deployment, and the next time you update that application, it'll pull in the version you rolled-back to.</p> <p>I'll expand on this tomorrow when I get back to work.</p> http://stackoverflow.com/questions/182298/subversion-versus-vault/182433#182433 2 Answer by rjrapson for Subversion versus Vault rjrapson 2008-10-08T12:15:58Z 2008-10-08T12:15:58Z <p>I use Vault, so I'd like to correct one error in your feature list:</p> <blockquote> <p>Vault has a VS plugin, but it only works if you're going to run in checkout-mode.</p> </blockquote> <p>Not true - I'm unsure of which version it was added in, but you can run vault in Edit|Merge|Commit mode in Visual Studio</p> <p>I would also add that Vault uses MS SQL Server as it's repository - makes backups easy.</p> http://stackoverflow.com/questions/152814/best-way-to-get-data-from-a-datareader-into-a-farpoint-spreadsheet/152832#152832 1 Answer by rjrapson for Best way to get data from a DataReader into a Farpoint Spreadsheet? rjrapson 2008-09-30T12:32:22Z 2008-09-30T12:32:22Z <p>I'm not familiar with the product, but you can try loading the reader into a DataTable and binding that if it's supported. </p> <pre><code>Dim dt as Datatable dt.load(reader) </code></pre> http://stackoverflow.com/questions/121223/visual-studio-clickonce-deployment-certificate-expiration/121694#121694 2 Answer by rjrapson for Visual Studio ClickOnce deployment - certificate expiration rjrapson 2008-09-23T15:22:50Z 2008-09-23T15:22:50Z <p>I found a blog entry <a href="http://www.jamesharte.com/blog/?p=11" rel="nofollow" title="ClickOnce and Expiring Code Signing Certificates">here</a> by James Harte that describes a method to have your application remove itself and launch the new clickonce install. It worked for me.</p> http://stackoverflow.com/questions/1574484/need-recordset-behavior-in-vb-net-w-ado-help/1574694#1574694 Comment by rjrapson on Need recordset behavior in VB.NET w/ADO help rjrapson 2009-10-15T22:34:46Z 2009-10-15T22:34:46Z Oops - yup. missed that - didn't pay close enough attention. LINQ would definately be better then. http://stackoverflow.com/questions/896197/drag-and-drop-from-an-email-file-attachment-in-groupwise-to-a-net-application Comment by rjrapson on Drag and drop from an email file attachment in GroupWise to a .NET application rjrapson 2009-06-13T14:34:47Z 2009-06-13T14:34:47Z Glad to know I'm not the only poor soul having to work with Groupwise. http://stackoverflow.com/questions/658984/application-with-no-references-to-office-requiring-office-12-2007-in-gac-for-cl/659021#659021 Comment by rjrapson on Application with no references to Office requiring Office 12 (2007) in GAC for ClickOnce rjrapson 2009-03-18T17:01:49Z 2009-03-18T17:01:49Z It's a ClickOnce app, so there isn't a setup project. Nothing in the Prerequisites for office in the project properties. http://stackoverflow.com/questions/634777/c-extension-method-string-split-that-also-accepts-an-escape-character/634874#634874 Comment by rjrapson on C# Extension Method - String Split that also accepts an Escape Character rjrapson 2009-03-11T15:27:05Z 2009-03-11T15:27:05Z After the split call, wouldn't you replace g with just the separator and not include the escape? That would save you the trouble of having to remove the escape from the returned string. http://stackoverflow.com/questions/235872/document-image-database-repository-design-question/392262#392262 Comment by rjrapson on Document/Image Database Repository Design Question rjrapson 2009-01-04T14:08:00Z 2009-01-04T14:08:00Z It's currently running on Optika's Acorde (which was acquired by Stellent, and then acquired by Oracle). Capture isn't an issue, as we purchased the Kofax image controls toolkit and wrote our own scanning application. http://stackoverflow.com/questions/341521/convert-a-text-file-with-embedded-hp-printer-codes-to-postscript/341540#341540 Comment by rjrapson on Convert a text file with Embedded HP Printer Codes to PostScript rjrapson 2008-12-04T19:31:27Z 2008-12-04T19:31:27Z The PCLXForm looks like exactly what I need, and isn't too expensive. Thanks - I searched google for days before I asked here. Next time I'll just ask here first :-) http://stackoverflow.com/questions/213045/how-can-i-call-c-extension-methods-in-vb-code Comment by rjrapson on How can I call C# extension methods in VB code rjrapson 2008-10-17T18:16:01Z 2008-10-17T18:16:01Z One more question - Are you sure that the VB.Net project has been changed to target the .net 3.5 framework? I ask because you mention that it's an old website. http://stackoverflow.com/questions/213045/how-can-i-call-c-extension-methods-in-vb-code Comment by rjrapson on How can I call C# extension methods in VB code rjrapson 2008-10-17T17:33:09Z 2008-10-17T17:33:09Z Have you added a reference to the c# library in your VB Project? http://stackoverflow.com/questions/210187/usage-statistics-c-versus-vb-net Comment by rjrapson on Usage Statistics: C# versus VB.NET rjrapson 2008-10-16T21:34:23Z 2008-10-16T21:34:23Z Resharper supports vb.net now http://stackoverflow.com/questions/198285/sharplibzip-add-file-without-path/198301#198301 Comment by rjrapson on SharpLibZip: Add file without path. rjrapson 2008-10-13T20:11:07Z 2008-10-13T20:11:07Z Do you have the latest version of the library? It does have an overload on the file.add http://stackoverflow.com/questions/117199/should-i-telecommute/117292#117292 Comment by rjrapson on Should I telecommute? rjrapson 2008-09-22T20:17:08Z 2008-09-22T20:17:08Z Bump up for the separate space for office. Definitely a distraction reducer. http://stackoverflow.com/questions/95525/why-is-my-program-asking-for-permission-to-run-on-vista Comment by rjrapson on Why is my program asking for permission to run on Vista? rjrapson 2008-09-18T18:46:08Z 2008-09-18T18:46:08Z Are you running VS as an administrator? I do believe it's required