aren't they the same thing?
What's the difference between visual basic script and asp?
Visual Basic script is a language that you can use to program against the Active Server Pages (ASP) Object Model to create web applications. Visual Basic scripting can be used for other automation tasks as well, but ASP is strictly a web development technology that can be utilized with Visual Basic scripting.
Please read this WIKI:
http://en.wikipedia.org/wiki/VBScript
http://en.wikipedia.org/wiki/Active_Serv...
Reply:ASP (active server pages) can use VB script.
VB script is a subset of VB
Reply:You didn't run out to the computer store and buy a copy of VBScript. You didn't install a VBScript disk on your computer, either. All you did was install the Internet Explorer browser, which supports VBScript, on your computer--just like millions of other folks. Everyone of them has the VBScript engine on their computer, and everyone of them has the ability to create Web pages with VBScript.
So where's the integrated development environment that you're used to using in Visual Basic? Keep looking, because there isn't one. All you have is your favorite text editor, the ActiveX Control Pad, and a Web browser. That in itself is the single largest difference between Visual Basic and VBScript. It leads to some specific differences, too. Here's what they are:
Debugging VBScript doesn't have a debugger like Visual Basic. You'll resort to using lots of message boxes, instead.
Event-handlers You don't have an editor in which you select an object and event to edit an event-procedure. You have to name event-procedures in your scripts so that the scripting engine can find the appropriate handler when an object fires an event.
Reply:Both are same but some script tools differ.
Friday, July 31, 2009
In Visual Basic, how do I add a serial number activation to my application?
I don't need any kind of server side HTTP protocol activation, just a very simple one, that where you either enter the serial number in and it works, or you dont and the application doesnt work. Please list any sources, that would be more than helpful!
Thanks!
In Visual Basic, how do I add a serial number activation to my application?
Its quite simple .You have to code in visual basic which modify registry values.
Assume you set a registry value reg=0
When appln is started check registry .If reg=0 it recognise as unregistered.If it is 1 it recognise as registered.
When user enter a serial the code should chk the pattern and if match then set registry value reg=1
Hope this will help you.
state flower
Thanks!
In Visual Basic, how do I add a serial number activation to my application?
Its quite simple .You have to code in visual basic which modify registry values.
Assume you set a registry value reg=0
When appln is started check registry .If reg=0 it recognise as unregistered.If it is 1 it recognise as registered.
When user enter a serial the code should chk the pattern and if match then set registry value reg=1
Hope this will help you.
state flower
How do you add alternate ways to click something in visual basic?
i recently just made a web browser but when I enter a website in the address bar, I have to click search to go to the website. Is there a way I can make it so after I am done entering the website I just have to press the ENTER key?
How do you add alternate ways to click something in visual basic?
The keypress event in the browser. If KeyAscii is 13, the user pressed enter, so Navigate2. (Off the top of my head - I haven't used a browser in VB in a few years, but executing on Enter is the same for all controls - or for the form itself if you enable key capture on the form.)
How do you add alternate ways to click something in visual basic?
The keypress event in the browser. If KeyAscii is 13, the user pressed enter, so Navigate2. (Off the top of my head - I haven't used a browser in VB in a few years, but executing on Enter is the same for all controls - or for the form itself if you enable key capture on the form.)
How do I disable resizing in my visual basic application?
I need the code to add to my form to disable resizing/maximizing the application.
How do I disable resizing in my visual basic application?
in the form properties window, set the Minimize button and maximize button properties equal to false.
Save the current form size to the registry, and in the form_Resize event, you can read the registry to get the old size back, and set it back to the old size.
How do I disable resizing in my visual basic application?
in the form properties window, set the Minimize button and maximize button properties equal to false.
Save the current form size to the registry, and in the form_Resize event, you can read the registry to get the old size back, and set it back to the old size.
How can I get started programming in visual basic?
Do you know a good tutorial type website? ANY advice would be appreciated. I am trying to design my own software idea. I don't have an apple computer.
How can I get started programming in visual basic?
There are lots of languages, each lends itself to a different type of project.
I'll add sources where you can find tutorials for most of the popular modern languages.
Reply:dev shed stinks Report It
Reply:Why are you going to use VB and not C#, Java, or some other .NET methodology?
Reply:Well, I don’t know why you chose VB. It is good starting point for new programmers. Learn VB.Net. It’ll be easier for you to learn C# and other .Net programming languages.
How can I get started programming in visual basic?
There are lots of languages, each lends itself to a different type of project.
I'll add sources where you can find tutorials for most of the popular modern languages.
Reply:dev shed stinks Report It
Reply:Why are you going to use VB and not C#, Java, or some other .NET methodology?
Reply:Well, I don’t know why you chose VB. It is good starting point for new programmers. Learn VB.Net. It’ll be easier for you to learn C# and other .Net programming languages.
What is the difference between Visual Basic 2005 Express edition & Visual Basic 6.0 Professional?
I have a book on Visual basic 6.0 Professional.
1. Is there any site where i can download this software for free?
2. Or else can i use Visual Basic 2005 Express edition software with the book i have?
What is the difference between Visual Basic 2005 Express edition %26amp; Visual Basic 6.0 Professional?
For basic concepts(like events, looping, classes, ect..) you can use the VB6 edition.
VB6 came in three main flavor a Student, Pro %26amp;Enterprise editions. The biggest differencesbeing that the Student edition lacked the ability to create user control, lacked some controls like a masked edit box, and lacked a copy of MSDN and other tools.
For learning more than beginning concepts I would recommend that you use the newer version. Spend $30 on a good book or use the free Microsoft tutorials.
A big difference between VB6 and VB2005 is how controls like option buttons are treated. IN VB6 they are indexed like myopt(0),myopt(1) ect. In VB2005 there isn't an index for these controls so the concepts you learn in VB6 about looping through index values of option buttons has to be relearned.
Control event handling has changed.
The paradigm for connecting to databases is different between VB6 %26amp; VB.net. To simplify:VB6 uses ADO connections and recordsets make frequent and longer (sometimes continuous) connections to a database. In VB.net you work with a copy of the database and update the DB with the changes. THe idea is to make fewer quick and limited connections to the DB.
Reply:You can't use VB 6.0's book on VB2005. VB2005 is part of the .NET Framework. It has completely different nature %26amp; approach from VB6, although they have similar syntaxes.
VB2005 is completely OOP, while VB6 are not completely OOP.
They use different compiler %26amp; classes. .NET uses CLR %26amp; MSIL which are used by other .NET labguages like C#, C++.NET, J#, ASP.NET.
VB2005 is running on .NET 2.0. And .NET 3.0 is on the way.
Are you familiar with Java? If you do, VB2005 is more like Java without C-like syntaxes, but VB-syntaxes instead. You'll find C# is more like Java, with Microsoft's taste.
Simply, you're book is obsolete.
song meanings
1. Is there any site where i can download this software for free?
2. Or else can i use Visual Basic 2005 Express edition software with the book i have?
What is the difference between Visual Basic 2005 Express edition %26amp; Visual Basic 6.0 Professional?
For basic concepts(like events, looping, classes, ect..) you can use the VB6 edition.
VB6 came in three main flavor a Student, Pro %26amp;Enterprise editions. The biggest differencesbeing that the Student edition lacked the ability to create user control, lacked some controls like a masked edit box, and lacked a copy of MSDN and other tools.
For learning more than beginning concepts I would recommend that you use the newer version. Spend $30 on a good book or use the free Microsoft tutorials.
A big difference between VB6 and VB2005 is how controls like option buttons are treated. IN VB6 they are indexed like myopt(0),myopt(1) ect. In VB2005 there isn't an index for these controls so the concepts you learn in VB6 about looping through index values of option buttons has to be relearned.
Control event handling has changed.
The paradigm for connecting to databases is different between VB6 %26amp; VB.net. To simplify:VB6 uses ADO connections and recordsets make frequent and longer (sometimes continuous) connections to a database. In VB.net you work with a copy of the database and update the DB with the changes. THe idea is to make fewer quick and limited connections to the DB.
Reply:You can't use VB 6.0's book on VB2005. VB2005 is part of the .NET Framework. It has completely different nature %26amp; approach from VB6, although they have similar syntaxes.
VB2005 is completely OOP, while VB6 are not completely OOP.
They use different compiler %26amp; classes. .NET uses CLR %26amp; MSIL which are used by other .NET labguages like C#, C++.NET, J#, ASP.NET.
VB2005 is running on .NET 2.0. And .NET 3.0 is on the way.
Are you familiar with Java? If you do, VB2005 is more like Java without C-like syntaxes, but VB-syntaxes instead. You'll find C# is more like Java, with Microsoft's taste.
Simply, you're book is obsolete.
song meanings
How can I access a variable from another form in Visual Basic?
I want to access a variable from my first form in second form. How can i do this? Sample code would be helpful, thank you.
How can I access a variable from another form in Visual Basic?
Easiest way would be to create a public variable in a module which you would be able to reference throughout your project.
Reply:if the variable you are trying to access is public, then use this:
FormName.variableName
Reply:check out http://www.planet-source-code.com
How can I access a variable from another form in Visual Basic?
Easiest way would be to create a public variable in a module which you would be able to reference throughout your project.
Reply:if the variable you are trying to access is public, then use this:
FormName.variableName
Reply:check out http://www.planet-source-code.com
Subscribe to:
Posts (Atom)