Make A Variable Accessible To Any Module?

Dec 30, 2009

I have an issue with an app i am writing, i need to make a variable accessible to any module or class within the project but that cant be accessed outside of the app as it is accessing info the end user shouldn't have access to.

Ok, well a practice i have gotten into in the last few years is to declare a module on the same page as the main form and declare variables either friend or public (global variables). with my app public is not good so i tried Protected Friend but i cant use this within a module.

I tried placing it at the top of the main form but one of my classes can't access it, what would be the right way to do as expected. besides the main form i have 2 classes call them class1 and class2:- main interacts with both classes class1 accesses class2 class2 doesn't access class1

View 7 Replies


ADVERTISEMENT

Make A Variable Accessible To Other Forms?

Oct 21, 2011

How do I make Variable eccessable to other forms in my app?

View 3 Replies

NET - Declare A Module Member Accessible Only To A Namespace?

Nov 2, 2009

I'd like to declare some members of a module accessible to an entire namespace, but have them not be accessible from without. Is this possible?

View 4 Replies

How To Make ListBox Accessible Outside Form

Apr 19, 2010

How do you make listbox accessible outside the form it is situated on?

View 3 Replies

How To Make The Database Accessible By The Other Machines

Jun 8, 2011

i am developing a system for a business and would like the server to be one of the computers of the

organisation. My problem is that i don't know how to make the database accessible by the other

machines.

View 4 Replies

How To Make Command Accessible (Protection Level)

Oct 17, 2011

I'm just taking over an asp.net/vb site, and I'm definitely still learning. I'm receiving the following error:
BC30451: 'ByOwner' is not declared. It may be inaccessible due to its protection level.

I call a datasource with:
<asp:GridView ID="CaseCountByOwner" runat="server" AllowSorting="true" DataSourceID="ByOwner"

And here's what is in the codefile:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
HitMe.AddHit(Request.UserHostAddress, Request.UserAgent, Request.Url.ToString)
Dim user As String = Request.QueryString("user")
If user.Length() = 0 Then
[Code] .....

View 3 Replies

Make An Array Created & Filled In By One Sub Accessible From Another One?

Nov 28, 2009

I have a RadioButtonList control which triggers a Sub LegalGaps on SelectedItemChanged event. This Sub creates and fills in an array the size of which depends on the User's choice of radiobutton options. The second Sub AvailableDays shall be able to read that array and highlight the days in the Calendar control accordingly on DayRender event. May I somehow declare an internally created variable a public one?

View 2 Replies

Make An Instance Of A Form Accessible Throughout The Application?

Feb 10, 2009

assume that i have two forms(form1 and form2)form1 code

Imports System.IO
Public Class Form1
Inherits System.Windows.Forms.Form

[Code]....

View 5 Replies

Make Variables Accessible To The Entire Form?

Feb 10, 2010

So I am making kinda of wizard, with options and a next buttons all in the same form but using hide and show.I have 3 of them. How can I make variables accessible to the entire form?

View 5 Replies

Sql Server - Attached DB Is Not Accessible To Make Connection?

Feb 10, 2012

I created a DB using following code.

Dim conn As New SqlConnection("Server=.SQLExpress;Data Source=;Integrated Security=SSPI")
Dim cmd As New SqlCommand("", conn)
cmd.CommandText = "CREATE DATABASE MyDBTest22 ON ( FILENAME = 'D:dbTestATTTTTTT.mdf' ), ( FILENAME = 'D:dbTestATTTTTTT_log.ldf' ) FOR ATTACH"

[code]....

It ran without any error but when I opened SSMS, I could not see my file attached to the server. Also, I tried to make a connection, but it says file does not exist but when I tried to re-run the above code, it says File already exists.Something wrong with my way of doing it? I want to see it attached with the instance of my SQL Server Express 2005, using SSMS.

View 1 Replies

Way To Make A Value Accessible Only To Parent Of A Nested Class

Jun 24, 2009

In general, according to the OOP paradigm, my understanding of encapsulation basically says:

-If a member is private, it can only be accessed by the class.
-If a member is protected, it can only be accessed by the base class and any derived classes.
-If a member is public, it can be accessed by anyone.

If I have a nested class, can I declare a property to be accessible only to that class and the parent class it's nested within? For example:[code]In the example, I cannot directly access myNestedObject.myInt or myNestedObject.myDbl from an instance of ContainerClass if those members are Private or Protected. But suppose I don't want to make them Public,because then they are TOO exposed: they can be altered from anywhere, not just within a Container Class object. Declaring them Friend would still be too weak as that would allow them to be altered from anywhere within the application.

View 2 Replies

How To Access Variable In A Different Form Using A Module

Dec 15, 2011

I tried to access a variable using a module with this code:

Module DataModule
Public x As Integer = form1.trackbar.value
nd Module

View 11 Replies

Load The Variable And Read It With In The Module?

Jun 11, 2010

I declared the variables with in the first module to be loaded

Module Mod_Global Public DtFRM As String Public DTTo As String I can load the variable and read it with in the module. Ok, good so far. But sending the code to another module results in nothing in the variable.

View 6 Replies

MyApplication_Startup And Module Variable Declarations?

Dec 15, 2009

It is my understanding that all modules are initialized and that all their variables are set up prior to MyApplication_Startup. I have code that has worked well for quite some time (XP and Vista).The Myapplication_Startup code references variables and code located in a Module.However, with Windows 7 this does not work.Anny reference to a module (Data, SUB or FUNCTION) throws a Type Initialization error at runtime. How can I correct this behavior in Windows 7?

View 2 Replies

Passing Variable From Useform To Module

Jul 15, 2010

I have a useform set up to have a user input value, and I would like to pass that value to a module. I have made the variable public along with the subroutine that I am trying to use the variable in. I have a message box display the value of the variable in the subroutine and the value is 0, even though I have inputted a value in the userform.

[YearForm]
Option Explicit
Public Sub UserForm_Click()
Me.intYear.Integer = Year
Module1.OpenFile Year
[Code] .....

View 5 Replies

VS 2008 Declare The Variable Along With All Declarations In A Module?

Feb 4, 2012

I have an issue with variables that are used to name For-Next loops. I have had this problem in a couple programs but not consistently, i.e. some variables work, some throw a warning (not an error).

The situation is this. I declare the variable along with all my declarations in a module-

Module MainModule
Public Counter1 As Integer
end Module 'MainModule

[Code]....

The type for variable 'Counter1' will not be inferred because it is bound to a field in an enclosing scope. Either change the name of 'Counter1', or use the fully qualified name (for example, 'Me.Counter1' or 'MyBase.Counter1'). In the past I've always broken down and changed the names to get rid of all those ugly warnings. Sometimes I have eliminated them from being declared in the module and declared them at call time. This is not how I program and I like to keep consistency throughout.

how I can get rid of this spotty, on-and-off nonsense? There is obviously a lot I don't understand about VS and I would have never taken it up but would have stopped 3 languages ago if I weren't forced into bulkier and bulkier languages (sorry about the rant. I feel OK now).

View 4 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

Declaring Object Variable - Inactive During Initialization Of Module?

Feb 16, 2012

Got a question regarding declaring a variable. Basically I have a module that writes to a text file using textwriter which is declared for the whole module to use at the top of the code. But what I want to do is clear the contents of the text file when the program is executed (using file.writealltext). The problem I have is that the file is obviously already in use as a result of the textwriter and the file cannot be modified because of this.

My question is: is there any way of declaring the textWriter object later on (not during the initial initialization of the module) without passing the object between functions? Setting the variable as inactive or something along those lines during initialization would be ideal.

View 1 Replies

Module Level Variable - Array And Sort List

Mar 13, 2009

I just need to know where my code is jacked -up at, I get an error when I created the module level variable ( class statement must end with a matching end class) problem is that every time I add an end class the next procedure is wrong with the same error, so what can I do to resolve this and why is this error coming up. Ultimate goal of this program is to add the invoice totals to the next element in the array each time the user clicks calculate, which displays in a message when the user clicks the exit button, also this code will sort the invoice totals in the array.

Public Class frmInvoiceTotal
Dim SumInvoice(4) As Decimal 'Delareation of two module- level variables
Dim I As Integer = 0' the index I can use to work with this array
Private Sub btnCalculate_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnCalculate.Click
[Code] .....

View 3 Replies

Access Global Variable Inside Class Contained Within Module?

Nov 25, 2009

I've got a console app with a sub main then i have a seperate class inside the module..i can't seem to update the public global variable from inside the class as i can't declare the variable as shared...

View 6 Replies

Pass A Variable To Another Form Or Else Make The Variable Visible To Both Forms?

Sep 5, 2010

Using Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.

View 4 Replies

Make Dll Module In VB 2010?

Mar 8, 2011

How can i make and use dll module in vb2010

View 5 Replies

C# - Make An Object Accessible To Only One Other Object In The Same Assembly?

Sep 15, 2009

Each business object has a matching object that contains sql calls. I'd like to restrict these sql objects in a way where they can only be used by the matching business object. How can this be achieved?

Update Greg brought up the point about testability. Since the SqlObjects will contain very business-process specific sql I don't want them reused in multiple buiness objects. (Basic CRUD operations are all code-generated) Is there a way to make the SqlObjects accessible to only one business object in the business assembly (like yshuditelu and Greg Beech showed) AND expose the SqlObjects to the unit testing assembly?

View 4 Replies

Deployment :: Make A GUI Exe Run A Module In Command Line?

Oct 20, 2009

I have a GUI VB application, and a seperate command line module. How can i run the command line module through the gui app, without binding / installing?

View 5 Replies

Make A Function In Module And Send Panel?

May 28, 2009

I did following on panel paint and it works great. I want to make a function in module and send panel to it and do the following color stuff on it. how i can do it?

Private Sub Panel1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Panel1.Paint

Dim brush As New System.Drawing.Drawing2D.LinearGradientBrush(e.ClipRectangle, Color.White, SystemColors.Control, Drawing2D.LinearGradientMode.Vertical) '(Me.ClientRectangle, Color.Blue, Color.White, Me.Horizontal)

[Code]...

View 1 Replies

Make Module To Net 2008 And Using Mysql Database?

Jun 22, 2010

How to make module to vb.net 2008 and using mysql database

View 1 Replies

VS 2010 Like To Make A Module For Common Multithreading Functions?

Feb 24, 2012

I've got 4 projects all running very similar multi-threading HTTPListener stuff.I wanted to make these functions common - in some module - but I'm having a hard time getting the AddressOf the "callback" passed in.This was the code in one of the 4 projects

Private Sub StartRequests(ByVal prefixes() As String)
If Not System.Net.HttpListener.IsSupported Then
DisplayInfo( _

[code].....

View 1 Replies

Make A Module To Store All My Sub's For Populating A TreeView On My Main Form?

Jan 24, 2010

I decided to make a module to store all my Sub's for populating a TreeView on my main form. My question is, how do I make the Module.vb where I'm storing these Subs recognize the TreeView on my main form? I'm going to create subs such as this:

Public Sub Populatetest()
Dim _GeneralNode1 As TreeNode = TreeView1.Nodes.Add("Test")
End Sub

View 4 Replies

Forms :: Can Make Variable Actually Seen As A Variable?

Feb 17, 2011

I have a VBA form in Microstation I am using to try and help automate a task. The only problem I am having is I am reading a textbox (Filebox.Text) and setting it as the variable (FN). It works, because I used Msg.Box (FN) to test it. However, in two of the lines of code, I am trying to use (FN) to pass the typed in filename to the command to run in Microstation. Unfortunently, it gets passed on as (FN).dgn instead of the actual filenale typed into the textbox. Is there a way I can make the variable actually seen as a variable? Code on Pastebin: url....Also, not sure if this is the right section, 100% new to VBA, coming from a world Bashed together.

View 3 Replies

Create A (in Excel ) Variable Table (database) Inside A Function Which Could Be Called For Filling And Reading Through "for To Next" Loop Module?

Feb 4, 2012

i just got 1 question how do u create a (in excel ) variable table (database) inside a function which could be called for filling and reading through "for to next" loop module

View 2 Replies







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