Integrating C++ Classes Into VB?

Nov 7, 2011

How do I integrate C++ into Visual Basic applications made in Visual Studio?

View 4 Replies


ADVERTISEMENT

Integrating SQL Query Into Excel?

May 29, 2009

I have a SQL query that I want to integrate into a VBA subroutine in Excel. I have had some success using the Macro Recorder to call up the SQL query (throuh Microsoft Query) in the past. However, the SQL code that I have for this query is significantly larger than previous attempts.When I record this one through the Macro Recorder is trips up because there are too many line breaks integrated into the recorded code. To get around this I have tried to manually update previous (successful) queries with the larger SQL code that I want to use, but without success.I was hoping that someone out there has some experience in integrating the standard SQL query code (SELECT xxxx, yyyy, zzzz, *nnnn FROM aaaa, bbbb, cccc, *nnnn WHERE 1111, 2222, 3333, *nnnn) into VBA.

View 1 Replies

Integrating A Barcode Reader In Vb 2005?

Nov 27, 2009

I am a student and I am about to make a program that will use a barcode scanner well ofcourse to scan a barcode. My problem is i don't know what library to use and what certain things i need to do so that when i am going to scan a barcode it'll be something like show it on a textbox and pull something from the database. i've actually research some. i've seen mscomm1 (not so sure about that) and POS for .net (haven't fully understood its use) were those will help me develop my program?

i have a metrologic ms9520 Voyager barcode scanner. and i am going to create a program for it in vb2005.

View 6 Replies

Integrating Java Class To Be Used In Application

Apr 13, 2012

I have been asked to create a project in vb.net which needs to integrate a java class created by Apple (Autoingestion.class) to pull sales records and so on.I found out a couple of questions here on stackoverflow but none of the answers given worked for me when trying to integrate this java class in my .net application.For example this question seemed to be what I really needed but when trying to compile this java class (I decompiled it first using Java Decompiler), it generally throws some errors.All I need is to use this class in my application to invoke a method.Does anyone know how to pull this out without much ninja-ing?

View 1 Replies

Qr Code - Integrating A QRCode Library?

Aug 27, 2010

I have been looking for a way to create QR Codes using VB.Net but I am going round in circles. I found some samples but they use C#. Also read about ZXing library but I have no idea about how to reference it (or what to reference). Can you suggest a tutorial (for complete beginners) as to how to go about finding an open source library and referencing it i

View 18 Replies

.net - Integrating ASP.NET Repeater Control Into Current Page?

Feb 7, 2011

So I currently have a aspx page that shows details for any single staff member, and the page is setup with mostly ASP labels. I have a subroutine called "getstaffdata" that populates the page on load (via subroutine).

I would like to convert this to a page that shows details on one staff member, or many staff members, one after another. So I thought of using the repeater control, but I'm not sure how to convert the page over. The staff userids are passed via query string, but I'm just confused on how to do the datasource for the repeater control.

View 3 Replies

Integrating Army Knowledge Online Chat

Jan 6, 2012

I'm using this link in my webbrowser: url...And I'm prompted for my Army username and password. It works and the page begins to load (showing a loading bar across the screen) as it's almost finished, a window pops up saying this:"Couldn't load config value for the policy file url; values are: , connectionType:http, password:, server:akoim.us.army.mil, autoLogin:false, red:1, location:, blue:1, green:1, username:".And then it asks me to log in again.how I can successfully complete this? The URL is for the AKO instant message service and I'd liek to integrate it into my program,

View 2 Replies

Integrating Bing Map With Multiple Routing In Desktop Application?

Jan 18, 2011

how to integrate bing map in Desktop Application (VB.Net).Is there any option to pull the data from Database from the locations and display the routes for more than one routes?My requirement is I need to show the routes like,

Person A's Route:
Starting point a to b, b to c
Route color: Blue

[code]....

View 5 Replies

Start Learning/using Modules Instead Of Integrating The Code Directly Into The Program?

Jun 22, 2010

I want to start learning/using modules instead of integrating the code directly into the program. So, I tried to make an example. Basically, what I wanted the program to do, is I click button1 and it lists details about my computer. So, I added 7 labels to the form, and a button. Then, I added a module (Module1.vb)

[Code]...

View 8 Replies

Use LINQ To Filter Collection Of Nested Classes To Yield Dictionary Of Unique Properties Of Those Classes?

Jan 23, 2012

I have two classes, one nested in the other. [code]Neither "Name" or "ID" are unique between operations and records.I wish to construct a dictionary using LINQ = Dictionary(Of String, Of List(Of Integer), whereby the keys are uniqe examples of Names in my collection and the values are the collective set of distinct IDs that are associated with those names.

View 2 Replies

VS 2010 Structure Classes So That The User Interfaces Though A Single Class While The Supporting Classes Are Hidden From Their View?

Jun 13, 2012

How can I structure my classes so that the user interfaces though a single class while the supporting classes are hidden from their view? I think its best understood in an example:

Public Class MyInterface
Public Economic as EconomicClass
Public Sub New()
MyBase.New()

[code].....

So you might ask why am I even separating them? It's strictly for others who will be working with this interface. I need to funnel them though a logical structure:

interface.Economic.MyMethod
interface.Currency.MyMethod
etc

This way everything is already handled for them in the background and they only need to run the method they need. I don't know if I can have it both ways in VB.NET.

View 23 Replies

VS 2010 Calling Subs And Functions Within Classes That Are Within Classes?

Oct 24, 2009

Here is some example code of what I mean:

vb
Public Class Form1
Private Sub Button1_Click(ByVal sender as Object, e as systemEventArgs) Handles Button1.Click

[Code]....

View 5 Replies

Derived Classes Cannot Raise Base Classes

Jul 10, 2009

I m trying to raise Click event of Textbox explictly but I m getting "Derived classes cannot raise base classes" error.[code]....

View 1 Replies

Integrating ASP.NET C# Website As Subsite To A VB Website?

Jan 25, 2011

I have a ASP.NET 2.0 website created in C# that acts as a completely independent site and I am looking to integrate this into an existing ASP.NET 2.0 website created in VB.NET. Unfortunately I just don't know much about the server management side of ASP.NET yet so too much I'm unaware of when it comes to IIS configuration etc. Does anyone have any advice as to how I can go about integrating this? Basically I want to host it in a subdirectory from root so when you hit example.com/myindependantsite/ it will pull up my C# site.

One possible solution I came across mentioned just dropping the project folder into the root directory and setting up that directory as an application virtual directory in IIS? A few other random questions were small things like would my application relative links (~/for-example.aspx) stay relative to my root subdirectory if it's made into an application virtual directory? Just trying to get this running on their site but like I said it's completely independent so want to preserve my websites environment.

View 4 Replies

Loop And Enumerate Properties Of Nested Classes In Nested Classes?

Sep 24, 2010

so far i got

code
For Each item As Reflection.FieldInfo In GetType(NameSpace.ClassWithNestedClasses).GetFields
rtfAppend(item.Name & ":" & Tab & item.GetValue(Me))
Next
For Each item As Reflection.PropertyInfo In GetType(NameSpace.ClassWithNestedClasses).GetProperties()

[code]...

which gets me the simple string vars and properties of my top class, but how can i apply this to loop through all sub classes and get there vars and props?

View 1 Replies

VB XML Classes Vs String Classes?

Oct 13, 2011

Searching the internet finds no less than 700 different ways and opinions to accomplish what I'm trying to do, and I would just like to know the simplest, most bullet-proof way possible.

[Code]...

I simply want to extract the string "bar," which is inside <hostName></hostName>I can do this easily enough with simple string functions, but I'd like to do it with one of the .NET XML classes/methods.

View 2 Replies

Best Pratice In Inheritance - Three Classes Employee, Manager And Salesman. Manager And Salesman Classes Inherits Employee Class

Jul 27, 2010

I have three classes Employee, Manager and Salesman. Manager and Salesman classes inherits Employee class.

Employee :

Public MustInherit Class Employee
' Field data.
Protected empName As String
Protected empID As Integer
Protected currPay As Single

[CODE]...

Manager :

Public Class Manager
Inherits Employee

[CODE]...

Salesman :

Public Class Salesman
Inherits Employee

[CODE]...

Now I have created a object of salesman and manager using the following code:

Dim objSalesMan as Employee=new Salesman("xyz",1,2000,5000)
Dim objManager as Employee=new Manager("abx",2,5000,"production")

Is this a good programming pratice or should I use:

Dim objSalesMan as new Salesman("xyz",1,2000,5000)
Dim objManager as new Manager("abx",2,5000,"production")

View 6 Replies

.net - Events In Classes?

Jun 17, 2010

I find that I write a lot of code within my classes to keep properties in sync with each other. I've read about Events in Classes, but have not been able to wrap my head around how to make them work for what I'm looking for.For example, in this one I always want to keep myColor up to date with any change whatsoever in any or all of the Red, Green or Blue properties.

Class myColors
Private Property Red As Byte
Private Property Green As Byte

[code]....

If one or more of those changes, I want myColor to be updated. Easy enough as above, but is there a way to work with events that would automatically do this so I don't have to put myColor = Color.FromArgb(Red, Green, Blue) in every sub routine?

View 3 Replies

.net - Use Classes In Several Projects?

Jun 8, 2011

How can I create a namespace and classes in it, then save it, and reuse the namespace in other projects? Do I have to click on Create Class Library in Visual Studio?

View 2 Replies

Asp.net - Project Which Has Set Of Classes In .net?

Jan 12, 2012

I am new to .net and was wondering if there are any projects which have sets of vb.net classes online which i can use. For example we have Flourish — PHP Unframework which has lots of php classes therefore a programmer doesn't not to replicate code on each project. Is there a asp.net (vb) resource website or any open source project which has built in vb.net functions.

View 3 Replies

Calling Sub From Other Classes - No Value?

Oct 28, 2009

created class TestA. There is Sub mysub defined inside it. Now I want to use this Sub in other class. So far I did like this:

Dim oTestA As New TestA
Dim dblA As Double
dblA = oTestA.mysub

[code].....

View 3 Replies

Can Sub Routines Be Placed Into Classes For Later Use

Feb 6, 2011

I have a slew of sub routines that I need to use in my software because each website that I will be accessing don't all use the same methods.....go here...click that...go here...click that...etc etc

So I've divided them into sub routines and call them when I need them but the coding is getting so long that it's becoming confusing to keep up with each sub.

Is it possible to place the sub routines into an independent file like a class and then call them from the file when I need them so I can free up some space to code?

View 1 Replies

Classes And Objects?

Aug 29, 2010

The 1st part of the code required me to write a class definition for a class(Worker). The class should include Private variables and Property procedures for a worker object's name and salary.

The salary may contain a decimal place. The class should also contain two constructors:a default and a parameterized.

The second part for the code indicates that I need add a method named GetNewSalary to the Worker class.The method should calculate a Worker objects new salary, which is based on a raise percentage provided by the application using the object.

Before calculating the new salary, the method should verify that the raise percentage is greater than or equal to zero. If the raise percentage is less than zero the method should assign the number zero as the new salary

There are three text boxes which allows the user to enter the employees name current salary and raise percentage....the calculate button will display the new salary in the new salary label box...so far here is what I have for the worker class.

The Class for the code had to be written from scratch. Can you please look over the class code and see if I need to chang anything....that will allow the program to run.[code...]

View 1 Replies

Connecting To Sql Using Classes?

Jun 5, 2011

'A way to connect to SQL with VB.Net using Classes

'This must be a class on its own
Imports System
Imports System.IO

[code].....

View 3 Replies

How To Add C# Classes To Vb Project

Mar 18, 2009

How can I add c# classes to my vb project. I am using vb .net express 2008

View 1 Replies

How To Get To Grips With Classes

Mar 10, 2011

I am trying to get to grips with Classes and how to use them "efficiently", So bearing this in mind I decided to create a small class driven application.I am struggling to understand how I can "use" this new instance of this user somewhere else.

Test Data was
Name : Joe
username : JoeBloggs
Password : JoesPassword

[code].....

Now this works and updates the listbox with the new instance of the user but how can I use that instance from the listBox control to retrieve that users details?

View 14 Replies

How To Turn Classes Into XML

Apr 15, 2011

As easily as possible? How to parse and create XML easily?

View 3 Replies

How To Write Classes

Mar 5, 2010

how to write classes. I have been searching and I understand classes a little. What I am confused on is how to write a class that contains more than 1 bit of information. How would I write a class that contains someone First Name, Last Name, Age, Address, City and State they live in. For instance all the information in the class can be retreived if I enter the person last name. And the class has to have more than 1 person infomation in it.

View 8 Replies

Import C# Classes From Dll In A .net Dll?

Feb 16, 2012

IDE: VS2010 Framework.net: 4.0 I created a c# dll project under Visual Studio 2010, with several public classes, and I would like to use its classes inside another dll project, but written in vb.net.

In the vb.net dll project, I referenced the built c# dll, but impossible to import the c# classes. The namespace of the c# dll is even not recognized.

What must I do to see my c# classes? If this is possible.

[Code]...

View 4 Replies

Make Own Classes In .net?

Jul 22, 2010

I've often wondered why would you need to make your own classes in vb.net? What purpose can they serve a typical application that cannot be already down without creating them?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved