Create Two Notepad Files: Module HelloWorld & Public Class Person?

Oct 6, 2009

i am working on the MSDN tutorials through virtual labs and am encountering a problem with the very first tutorial regarding consoles. I am required to create two notepad files: Module HelloWorld & Public Class Person which I have done without errors having triple checked them. When the files are created I compile the HelloWorld.vb file and a .exe is created

I follow the rest of the steps and encounter an error when i try to compile the Person.vb file using the line vbc Person.vb/t:library/out:HelloWorldLib.dll as i am getting the following errors:

vbc : Command line error BC2001 : file 'HelloWorld.vb/t:library/out:HelloWorldLib.dll' could not be found
vbc : Command line error BC2008 : no input sources specified

View 2 Replies


ADVERTISEMENT

Asp.net - Access A Module Or A Public Class With Public Shared Members From Inline Vb Code <% .. %>?

Feb 10, 2011

I can access a module from code behind but not from the aspx page in inline VB code <% ... %>.

View 2 Replies

VS 2005 Place The OpenfileDialog In Public Class Or Module?

Jun 30, 2009

if it is possible to place the openfileDialog in public class or module? i tried to place it with this code, but it did not work.

Public Sub DisplayDataOnGrid(ByVal gridTable As DataGridView)
Dim filepath As String
Dim OpenExcelFile As New OpenFileDialog()

[Code]....

View 2 Replies

Create A Control Class Rather Than Use A Module For MVC?

Mar 20, 2012

I'm trying to use it in writing VB.NET Windows Form code.So I'm thinking, instead of using a VB.NET module, or having code embedded in the forms, I should create my own "Control" Class, to handle all operations and "application" level variables.Is this the right approach?Ex:

Private Sub frmLogin_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
goControl = New MyControlClass()
goControl.sUserID = txtUser.text[code]....

View 1 Replies

Make Constructor Public And Allow Anybody To Create An Instance Of Class?

Apr 6, 2009

I have a class inside a class.I need to expose the properties of the 2nd class to other classes, therefore it is public.However, I do not wish other classes to be able to create instances of this 2nd class, it should only be instantitated from its parent class.I thought I could resolve this issue by making the constructor of the 2nd class private, but this even prevents the parent class from instantiating its child class! How can I work around this, do I have to make the constructor public and allow anybody to create an instance of the class?

View 3 Replies

Create A Class Or Module To Easily Connect To One Of Many Databases?

Jun 11, 2012

Basically, we have three databases to grab data from. One is a SQL Server database, one is an Access database (which is particularly annoying to connect to because we have to map a network drive and such), and the final one will be an Oracle database when IT finally gives us rights.I'm thinking about creating a helper function that makes querying any one of these databases as easy as possible. I want to create a two-dimensional array

Dim myEasyResultArray(10,10) as String
myEasyResultArray = DatabaseHelper("Access", "SELECT * FROM Employee")

Is this a good design decision? Also, how can I have the array be the right size? Can I just do this?

Dim myEasyResultArray = DatabaseHelper("Access", "SELECT * FROM Employee")

Should this be a module or a class? I don't really need to share variables?

View 2 Replies

VS 2005 Create Dataset In A Module And Call It In A Class?

Aug 7, 2009

This is my vb6 programme for creating recordset in a module. and call it in class
and form

[Code]...

View 4 Replies

VS 2008 Dynamic Array - Create A Public Class For Insert And Delete Data To Database

Feb 3, 2010

I am new in this forum, also new in VB.Net I need to create a public class for insert and delete data to database Public Class My_DBFunctions

[Code]...

View 1 Replies

Declare A Public Param For Public Class Form1?

Apr 7, 2011

Imports System
Imports System.Threading
Imports System.ComponentModel[code]....

how to declare "smsport" on class smscomms as public so that it can be access in class form1 or button1_click event.

View 5 Replies

Way To Have Person Using Class Specify Something

Mar 14, 2012

I am working on a class and I need to make a way to have the person using the class specify something..I think the best way would be to put an example. [code]

View 4 Replies

.net - C# Equivalent Of VB Public Module?

Aug 5, 2010

I'm converting a VB.net library to C# and having trouble finding the C# equivalent to a VB.Net Public Module.

In the same VB class is a With block. Any idea what the equivalent might be for that as well.

View 2 Replies

Public Variables Not Available In Module

Jan 17, 2011

I have a variable declared at Public on a form. But when I try to access it in a module I get an error that its not declared.

[code]...

View 15 Replies

Update Function Of Each Module To Be Public

Nov 2, 2009

I have a situation where I have several VB.NET Modules in the same Logical-Module of a large application. I would like the update function of each module to be public, but I would like users to be forced to qualify the function call with the module name.

ModuleName.Update()
instead of
Update()
Is this possible?

View 2 Replies

Working With Form1 From A Public Module?

Jan 19, 2011

I have a public module from which I want to use Form1 components. How do I do that? For example:

Module Print_to_textbox1()

what goes here for me to display a message into a textbox1 on Form1?

End Module

View 2 Replies

.net - Show Display A Person's Age Automatically In Textbox Whenever A Person's Name In Selected In List View?

Jan 2, 2012

My program has a textbox and a listview. In the list view i have added three person's name, John, Kat, Adel.

How do I make it such that when John's name is selected in list view, John's age is automatically displayed in the text box?

And when Kat's name is selected in list view, Kat's age is automatically displayed in the text box?

View 3 Replies

Call Public Function In Module From WebPage?

Jul 20, 2009

Im new in this forum. I just recently upgraded my Visual Studio 2003 to Visual Studio 2008.I have a web project which is working very well in Visual Studio 2003. But when Im trying to run the same project in Visual Studio 2008, Im getting a runtime error message.The error message is about a public function which is defined in a public module. When Im trying to call that function from different web pages of my project, the web pages are not recognising the public functions and asking me to

View 3 Replies

Public Module Updating Form Object?

Dec 1, 2009

I'm working on a project for my VB class at school. I am creating a form with several inputs and it calculates the total amount owed for a car sale. I have a text box for input of the TRADE IN VALUE of a car. the program is looking for a numeric input. If there is no trade in, how can i get this box to default to 0.00 so it doesnt error the program?

View 2 Replies

VS 2008 Using Public Readonly Variable In A Module

Nov 29, 2009

I have a public readonly variable in a module, but when I try to set it in my form load event for the first time I get 'ReadOnly' variable cannot be the target of an assignment. It is my understanding that a ReadOnly variable can only be set once and after that you would get an error when setting it.

View 2 Replies

Write A Public Module For Display Record SQL?

Apr 16, 2012

I wrote a public modules for Insert, Update, Delete for SQL but I want to write public module for show any record on For example

"Listview or ComboBox or DataGrideView" by one module I mean When I create a new Form in vb I don't want to write All Command for each form to show record

Public Sub ShowRecord(ByVal TabelName As String, ?)
If SqlCon.State = ConnectionState.Open Then SqlCon.Close()
Try

[code]....

How to Fill this Space marked by question Mark?

View 1 Replies

Error : Value Of Type 'Person' Cannot Be Converted To '1-dimensional Array Of Person'

Jan 30, 2012

I have a Person class, which contains two public properties. I am trying to add items to it as follows.

Code:

Class frMain
Dim persons As New List(Of Person())
Private Sub frmMain_Loaded(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded
GetInfo()

[code]....

When I try to use the Object Initializer, I get an error Error"Value of type 'Person' cannot be converted to '1-dimensional array of Person'.

View 1 Replies

VS 2008 Make A Third Person View Program In First Person Game?

May 5, 2009

I wanted to know how to make a Third FOV program in a First Person shooter game.

View 16 Replies

Add BindingNavigator At Run Time To Which Made A Public Method In Module.vb?

Mar 27, 2010

i want to add BindingNavigator at run time to which i made a public method in module.vb, and want to run buttons withEvnets on it

View 1 Replies

IDE :: How To Calling Form Object Public Function From A Module

Apr 5, 2010

I am using VB2008 In the Form1, i have coded

Public Function getText(ByRef ctlName As String) As String

getText = Mfg.get_TextMatrix(Mfg.Row,Mfg.Col

[Code]...

View 5 Replies

Public Properties Within VB Module - Cross-client Behavior

Oct 15, 2010

Can one client call a public property within a VB.NET module and see the value of that public property changed by another client accessing it at the same time?

[Code].....

I'm running into random instances where it looks like another client might be modifying (by setting) the value of GetSetDateTime DURING the first client's run through of WhateverMethod(). This is alarming to me and I've been trying to figure out if that's a possibility.

View 2 Replies

Public Sub Label Changes On A Form Don't Work When Called From A Module?

Dec 15, 2009

I am writing a control application for an inteface card. The complicated work of initialising communication with the card is written and working fine. However, my problem is to update the text in a dialog label on the communication interface form from a module that contains all the coding for accessing the inteface card. From the module, the interface dll returns data that describes some typical connection errors and the module then calls on Public Subs in the form to display error messages; for example:This is the Public Sub in the Module that initiates communication with the interface card:

Public Sub OpenDeviceInterface()
DeviceID = 1 - My.Resources.DeviceID
h = OpenDevice(DeviceID)
Select Case h
Case 0, 1, 2, 3

[code]....

What happens when these Public subs are called from the module is that the MSgBoxes I made to test the routine show up but the label text doesn't appear.I've tried; Refresh, on the label and the form without success...

View 4 Replies

Make A Application That Allows The Person To Script Config Files?

Jan 15, 2010

I'm trying to make a application that allows the person to script config files for an open game server project so they don't have to do it manually... I'm starting with 3 groups. Those groups are "NPC NAMES", "MONSTER NAMES", and "MONSTER WALK POSITIONS"... I want the user to be able to add as many items to the group as they want... Right now I'm using a listbox, but its very messy... I want the user to be able to add items to these groups, and then add the items of each group to a .txt file.

View 5 Replies

Incorporate INI Files For Profiles In Order To Quickly Pull Up Data From One Person To The Next?

Nov 1, 2011

I am attempting to create a basic program and I need to know how to incorporate INI files for profiles in order to quickly pull up data from one person to the next.

Public Class IniFile
' API functions
Private Declare Ansi Function GetPrivateProfileString _
Lib "kernel32.dll" Alias "GetPrivateProfileStringA" _

[code]....

And placed it into a module, which I then wen't to my main program and attempted to place this:

Dim ini As New IniFile(Profiles.ini)
Dim value As String = ini.GetString("Names", "1", "Default Value")

To attempt to retrieve the data, but I get no error or information from it. The ini file is inside the folder of the project and I set the SectionName and KeyValue to the corresponding names. I think I am having trouble with syntax? Not 100% sure. This is the code that I got from the same source as the module for using the module.

Dim ini As New IniFile(FileName)
Dim value As String = ini.GetString("SectionName", "KeyName", "Default Value")

And I adjusted to what I believed would be the proper format.

View 7 Replies

Unable To Use An Instance Of The Nested Class Through A Public Variable Of The Parent Class?

Jun 7, 2012

I want to created a nested class that can only be visible to and instantiated from the parent class.But I also want to be able to use an instance of the nested class through a public variable of the parent class.I tried making the nested class private, or making the nested class' constructor private, but it won't compile.Is it possible to do this in .NET?

[Code]...

View 3 Replies

Changing Users - Create A Feature While The Person Is Logged In

Apr 26, 2009

Well ive created a web browser programme and created a user login form for the users to login and that works fine. Now i want to create a feature while the person is logged in, he can change users, so loging as another user whilst already logged in, for example, Admin user might be logged in and now he wants to change user to a normal user without turning the programme on and off to do so.

View 2 Replies

Can't Make Difference Between Public Class And Private Class And Friend And Protected Friend Class

May 15, 2009

I can't make difference between public class and private class and friend and protected friend class.

View 1 Replies







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