Migrate Backwards From ASP 4.0 To 3.5
May 25, 2011I have a simple application that I have to migrate backwards from ASP VB.NET 4.0 to 3.5 because of client limitations.
View 2 RepliesI have a simple application that I have to migrate backwards from ASP VB.NET 4.0 to 3.5 because of client limitations.
View 2 RepliesI don't believe this is possible by conventional methods, but something like this verbose code: For Each s As String In myStringList Step -1 //' Do stuff here Next I will probably have to invert the myString object before a conventional For..Each Loop, correct?
View 9 RepliesDoes anyone know of any reason why my FilmID field (which is an autonumber) is going backwards? When I add a new record, it is going -1, -2, -3, -4, instead of carrying on from the last number. If you need the code, just ask, but I was thinking it might be something in properties or something?
View 3 RepliesIs it possible to make a For loop which count down. Like:
For i as Interger = 5 to 0
'Do stuff
Next
I want to read a file starting from the last record and proceeding to the first record. How can I do it [if it can be done]?
View 11 RepliesWas just wondering, is VS .NET 2008 compatible with SQL Server 2000?
View 2 RepliesI'm working on a webcrawler in VB.net, and using the System.Forms.WebBrowser object for handling navigation on sites that use javascript or form posts, but I'm having a problem. When I navigate backwards (WebBrowser.GoBack()) to a page that was loaded with a form post, the page has expired and I have to do a refresh to resend the request. When I call a refresh (WebBrowser.Refresh()), a dialog box pops up to confirm. Is there a way I can get around this modal dialog in code?
View 3 RepliesI have.. Textbox1.Text = Textbox2.Text
I want it so that when you type text in Textbox 1, textbox 2 says it backwards.
Is there a command for this, if so how do I use it?
I have made an application with VS2010, meaning it requires .NET framework 4 to run properly.If the program is ran on a machine with .NET framework 3.5, it returns an error stating I should install 4.
View 7 RepliesI am going to be taking up a new job as a VB.net developer. I have worked with C# for about 3years. I did mention to the interviewer that I haven't worked with VB.net, but he seemed to think that its easy to migrate from C# to Vb.net.
how I can prepare myself for this job? Any good books or websites on this area? How different is vb.net from C#?
I am thinking of migrating to VB 2008 from VB 6.0. What are the things to expect from VB 2008. Is still the same?
Im still Looking for a trial version of VB 2008.
I have been using COM+ components(using VB 6.0) in my existing web application developed using Asp/sql. I'm basically using COM+ to get the benefit of it's inbuilt Transaction Management feature which is useful when you are performing some set of actions across different databases simultaneously.Now I want to migrate my existing site to the .Net Framework.
View 1 RepliesI having the project in Vb i want to migrate that project in the vb.net.
View 4 RepliesI Have installed Visual Studio 2005 ( 90-days trail), I want to use Visual Basic Upgrade wizard an error will appear on step 5 the error is :
vbu.exe has encountered a problem and needs to close
more detialed info is :
AppName: vbu.exe AppVer: 8.0.50727.1 ModName: msvcr80.dll
ModVer: 8.0.50727.163 Offset: 0001c1cd
how i can migrate my vb6 to vb.net
My WebBrowser1 keeps going backwards like 8 pages and then coming forward, I don't get it.
[Code]...
I could crop up a string to give me a cirten value.
The specified string involves a username, and a price, along with other numbers as a result of math.
"Would you like to buy "Relic TV System" from Demi0092 for $1,009?"
So in this situation I want to gather the "1,009" without any of the other text.
I have two textbox controls and I want to accept input for textbox 1 and textbox 2. However, when user enters text into textbox 1 I would like textbox 2 to mirror the same text as it is typed. I am sure this is a very simple procedure however it is new to me and I am having trouble finding an answer with search engines. Most result are coming back as text that one can read backwards in a mirror which is not what I am looking for.
View 1 RepliesSo work uses an Excel sheet with controls in it they designed a while back. however when they load it, all the normal text looks fine but the comboboxes and listboxes have backwards and upside down text. When i open the list options the text looks fine, but as soon as i select something it goes back to upside down and backwards. Anyone seen this before?
View 3 RepliesHow to do the following in either C# and VB.net.
In C++, in my header file I do the following[code]...
I tried the same thing in C# but it got error. How could I do the same thing in C# and VB.Net?
I am writing a program to be able to input a password and take that password and display a new password in a label. the new password will display the results as follows. Any vowels in the old password will be displayed as an x in the new password and numbers will be displayed as x's, and the last part it will display in reverse order so if I enter in timmy1 it should display zxmmxt. I do not know how to write the code to be able to reverse the string to be able to display the password backwards.
Option Explicit On
Option Strict On
Option Infer Off
Public Class frmMain
[code]....
I have the following code that I need to migrate from VS 2003 (.Net 1.1) to VS 2008 (.Net 2+)but I get compilation error System.Xml.Xsl.Xsl Transform' is obsolete: This class has been deprecated.I probably need to use System.Xml.Xsl.XslCompiledTransform instead.but I do not find the matching Load() and Transform() overload versions that I can use with all the parameters of my original code.in MSDN [How to: Migrate Your XslTransform Code] I only found some simpler cases.url...but in my code I see some remarks that hints that the added parameters were used to avoid exceptions, so I prefer to use these parameters.[code]
View 1 RepliesI have a legacy VB6 ActiveX control used in IE to provide control of a parallel-port device from a browser application. I wrote this thing about five years ago; It's a pretty simple control, and it doesn't require a lot of maintenance. However, I've noticed that running the VB6 tools is becoming more and more painful over time, so I'm looking at the possibility of migrating this code to VB.net 2008.This thing is super-simple. It implements IObjectSafety and exposes a single public method, which we call using Javascript. The control has no UI other than a single box with a caption that displays its name and version number-- useful for troubleshooting deployment issues.
How would I create the equivalent in .net? Am I creating an applet? Or a .net Assembly? Any gotchas to look for as I try to make this transition?(I should make it clear here that I'm not either a VB6 programmer or a .net developer-- I've dabbled in this stuff but it isn't my area of expertise, so go easy on me).
I have an ASP.NET in VB code base that if I open in Visual Studio as an existing website works and tests just fine. I have followed many tutorials for porting this over to Azure: -Tried create new Azure project add a webrole and drag and drop project files into the new webrole, but I get about 300 reference/missing stuff/etc errors -I have also tried creating an azure project under the website solution but the option to add the website to the webrole by clicking "web role project in solution" is disabled/grayed out I have been able to make the configuration files and compile through the command line but this does not work with visual studio so I am unable to test before deploying into staging
View 1 Repliesis there a quick way to migrate a .Net 3.5 App written with VS 2008 back to VS 2005?
I'm really fed up with VS 2008 freezing every time I resize a Table.
I have some questions: 1) What's the learning curve for someone with good background in VB6? 2) what are the main advantages of VB.Net compared to VB6 and what will I be missing from VB6? 3) With VB.NET 2010 "ultimate" edition is it possible to make stand alone apps or they will be depending on net anyway even for the EXEs?
View 12 RepliesI get the following error when I run my vb2010 progrm on windows 7 machine:Class not registered (Exception from HRESULT: 0x80040154. It ran fine on vista. there is no option on the compile to target x86. It is related to an active x flex grid
View 2 RepliesI have generated a component in Delphi 2007 Code Gear and I need to migrate it to .NET to be used by VB.NET platform.I generated an ActiveX dll but I have been told that only the declaration of the class is visible in .NET.Actually the component I have generated is inherited by another component of which I have only the .dcu files. My new component is exactly similar as the parent one except from that I have overridden the constructor create.I wonder why the .NET, although it accepted the component, it did not provide the inherited properties, methods etc.
View 1 RepliesI have an Access data base back end that contains only the tables that was created in the year 2005 (by someone no longer here so cannot answer much about past and I am not very familiar with Access). When I use SSMA 2005 for Access v4.0 to migrate to SQL 2005 a table with images (defined as OLE Object) the ones that appear in the Access table as bitmap will work fine, there are ones that appear in the Access table as "Microsoft Photo Editor 3.0 Photo" or "Picture" that will not. I set up a data source and used tableadapters in a VB Windows Form and used data binding by dragging the column from the data table and dropping it on a predefined picture box on the form (this basic method works fine for all the other columns in the table). I am using Visual Studio 2008.
The Access database is over 130 megs and we are migrating it to make it available across a network to multiple and sometimes distant sites. [Code] I have used all the extensions defined in Photo Editor and this .obd is just another one I have tried to see if that makes any difference. I tried moving the array to a variable defined as an Image and then moving that to the picture box and that failed too. [Code]
how i can migrate a sql server database to mysql? I have an app (developed with VB 2003) that it works with a big DB SQL server. But the user wants to migrate to MySQL.
View 11 RepliesIn VB6 I would say "optReason.Value = true"
In VS2008 would I say "rbReason.Focus()"
And accomplish the same thing?