|
Browse by Tags
All Tags » ASP Migration ( RSS)
-
|
Now all we need to do is setup the VB6 code that we will use for migration. To do that follow these steps: 1. On the Source Code Explorer toolback click on the Add Files button: 2. Click the Add Folder button and select the folder with your VB6 files...
|
-
|
As vb6 migration experts in our company we deal everyday with a lot of issues around Interop and serialization. One important thing to note is the concept of “Bittable Types”. I’m not making up terms. Those terms actually exist. Just see this link in...
|
-
|
One of our clients wanted to change the CreateObject function migration for a function of their own. So they wanted all cases like: Dim x As Object Set x = CreateObject("Excel.Application") To be migrated to something like: Excel.Application...
|
-
|
If you have your ASP.NET application for example in c:\inetpub\wwwroot\WebApplication1 and you want to programmatically get that path just use something like: string AppPath = Request.PhysicalApplicationPath;
|
-
|
I saw this with Francisco and this is one possible solution: ASP Source rs.Save Response, adPersistXML rs is an ADODB.RecordSet variable, and its result is being written to the ASP Response Wrong Migration rs.Save(Response <-- The ASP.NET Response...
|
-
|
When people decide to migrate their VB6 applications they eventually end up questioning where they should go. Is VB.NET or C# a good choice? I have my personal preference, but my emphasis is in developing the technology to take where YOU want to go. VB...
|
-
|
Motivation: I hate to be disappointed. Specially if it is by a person you had respect for. And that's exactly what Francisco Balena from VB Migration Partner, has done. I have respected him for his books and all his VB6 experience. In terms of legacy...
|
-
|
AJAX applications are great Their coolness factor is high, and your clients will be trilled by the new interactivity of your pages But as a developer when you have a problem with AJAX it could be hard to track. Because there is a lot going on behind the...
|
-
|
Localize a VB6 application can be cumbersome, specially if it was not even originally planned to be localized. Nowadays is common that you're clients might demand support for different languages. While a localization task is still difficult, we have found...
|
-
|
This is the migration of a snippet of ASP classic to ASP.Net Checking that a File Exists ASP Classic <% Dim strExists Dim strNotExists Dim objFileSystemObjectVar `` strExists = "exists.txt" strNotExists = "error.txt" Set objFileSystemObjectVar = Server...
|
|
|
|