answersLogoWhite

0

📱

VBNET

VBNET is an object-oriented programming (OOP) language developed by Microsoft. It is the .NET version of Visual Basic, which supports OOP concepts like aggregation, modularity, abstraction, encapsulation, inheritance and polymorphism.

500 Questions

Is VBNet any good?

User Avatar

Asked by Wiki User

How to write a bar code scanner system?

User Avatar

Asked by Wiki User

I am writing a barcode scanner system.

First, I print barcodes like QR Code and Data Matrix on paper. Then scan these barcodes with a hardware barcode scanner. This scanner must read the barcode and verify its validity. Some organizers may want to verify ticket validity offline or online..

Some questions:

-Do I need a windows based app (so do something with windows forms?)?

- the scanned data from the scanner is sent to a PC...can I with VB.NET receive that data and pass it to an online app/server to verify the validity realtime?

- any other things I should consider?

Basically I want to avoid installing client software, is it possible?

How do you Convert string to integer in vb net?

User Avatar

Asked by Wiki User

Dim aInt as Integer = 5

Dim aStr As String = String.Empty

aStr = System.Convert.ToString(aInt)

What are three characteristics of user centered design?

User Avatar

Asked by Wiki User

User-centered design (UCD) is an approach to design that focuses on understanding the needs and goals of the users and creating solutions that meet those needs. Three characteristics of user-centered design are:

Empathy: User-centered design requires designers to empathize with the users to understand their needs, goals, motivations, and challenges. Designers must put themselves in the shoes of the users and see the world from their perspective.

Iteration: User-centered design is an iterative process that involves prototyping, testing, and refining the design based on feedback from the users. Designers must be willing to iterate and make changes to the design based on user feedback.

Usability: User-centered design focuses on creating products that are easy to use and efficient. The design should be intuitive, with clear and concise instructions, and should minimize the cognitive load on the user. Designers must consider the user's physical, cognitive, and emotional abilities when creating the design.

Overall, user-centered design places the user at the center of the design process and prioritizes their needs and goals over other factors. By focusing on empathy, iteration, and usability, designers can create products that are more effective, efficient, and satisfying for the users.

How can you get content of div in VB.Net?

User Avatar

Asked by Nimach

I want to get the content of div with its class with VB.Net but i don't know how to do it. i show you a simple example to notice what my question is.

<div class="whatever">Text</div>

I opened a website and I found above code in its source code. and i want the content of this div code for my text box or label ...

Is vb.net platform independent?

User Avatar

Asked by Wiki User

yes,it is platform independent because it uses CLR(common language runtime) for compiling the codes and then the code can be run on any platform.

How do you create notepad in vbnet?

User Avatar

Asked by Wiki User

Create a new form and put a textbox in it. Et voila.

You can add extra things like change font, size, word wrap, find/replace, print etc.. but bear in mind that you cannot change colour in a textbox. Well, you can but if you want to save it - you need to save it as a .RTF document so it saves the styles (bold, italic, colour etc.) - so i would use a richtextbox instead of a textbox.

How do you write a vb script code to Reverse an array?

User Avatar

Asked by Wiki User

Dim x(1)

x(0) = 5

x(1) = 2

Dim NewArray(1)

For xx = 0 To x.Length -1

Dim item As Integer

item=xx-x.Length -1

item=item * -1

NewArray(xx) = x(item)

Next

Their you go at first the original array was 5,2

after you run the loop it will be 2,5.

What is difference between option button and check box?

User Avatar

Asked by Wiki User

In Check box, you can select multiple options. In Option Button (also known as Radio button), you can select only one option at a time.

A Check box is rather similar to an option button. The Value property of both the controls is tested to check the current state. Check boxes are valid as a single control whereas a single option button is probably counts- intuitive.Check boxes are not mutually exclusive.

How do you manage forms in VB?

User Avatar

Asked by Wiki User

What is IPEndPoint?

User Avatar

Asked by Wiki User

Represents a network endpoint as an IP address and a port number.

Inheritance Hierarchy

System.Object

System.Net.EndPoint

System.Net.IPEndPoint

Namespace: System.Net

Assembly: System (in System.dll)

What are two types of debugging?

User Avatar

Asked by TrinityLove

How do you instantiate in vbnet?

User Avatar

Asked by Wiki User

dim obj as object

obj = new object();

The disadvantages of VB.NET?

User Avatar

Asked by Wiki User

Some disadvantages of VB.NET is that it is mainly only used for software development. As an electrical engineer me and my teem often use VB.NET to make a business applications. If you want to develop games you should not spend your time learning VB.NET, instead you should spend your time learning C++ or C#.