Class Library (dll) Single Instance To Pass Data Between Processes Or Exe's DESIRED BADLY

Oct 20, 2010

The "named pipe" seems rediculous to pass data between processes (exe's). Is it possible to run a single instance of a VB.NET Class Libary (dll) such that two programs can access the same memory resident dll, thereby passing data via functions and or subs?When I try to make the class library as single instance, the "Enable Application Framework" is greyed out, and thus the option to "Make Application Single Instance" is also greyed out.When I try to call the dll from two processes, I simply just create two instances, so storing data in a module doesn't work

View 2 Replies


ADVERTISEMENT

Creating An Instance Of A Class From A Class Library?

May 18, 2010

I've createda vb.net class library where I've defined a number of small classes... nothing complicated, just working with strings, sending emails, etc.In another project, I reference the class library and I'm seemingly able to create an instance ofone of tclasses - intellisense shows me all of the plic properties, methods, etc... all looks perfect. No compile errors at all, nothing b gumdropsand lollipops.When I run the app I'm working on that references the class library, it fails at the point where I'm creating an instance of the class and gives me a vague exception, "System.TypeLoadException".

View 2 Replies

Define A Class Such That There Can Be Only A Single Instance Of That Class?

Jan 20, 2012

Is there a way to define a class such that there can be only a single instance of that class?

View 5 Replies

Create A New Instance Of The Moblist Class Each Pass?

Jan 13, 2011

I have an application that reads another processes memory.I initially had multiple scanning threads for the various areas I needed to read.This was processor intensive so I decided to go with the observer pattern.All was well except that I am having a weird behavior.Here is what is happening.I have 2 radars (overlay and mapped)Both have a watcher class that attaches to the memory scanner and is notified on a new list of mobs.so I open radar 1 (mapped) it attaches it's watcher to the scanner and waits for mob list update notifications

Open radar 2 (overlay). same thing happens and another watcher is attached.all is well and good so far.Now there are properies on the mobs in the list, one of which is IsFilteredOut.This property is set in the radar code after it receives the list. Now the weird behavior is that no matter what I do, the second radar to be opened changes all the properties of the mobs in the list of both radars.It is as if I am passing the list by ref, but I am not.I actually create a new instance of the moblist class every time I pass the list.Here is the notify code. As you can see I create a new instance of the moblist class each pass.

Private Sub NotifyMobListUpdated(ByVal Mobs As List(Of MobData))
If Mobs IsNot Nothing Then
For Each w As Watcher In _watchers[code].....

View 1 Replies

VS 2008 Class Library - Declare New Instance Of MainClass() Before Using Subs/Functions In Class2 Or Class3?

Feb 3, 2011

Namespace MyClassLib
Public Class MainClass
Public Sub New()

[CODE]...

Is it possible to make it so that the user using the Class Library has to declare a new Instance of MainClass() before using Subs/Functions in Class2 or Class3?

View 2 Replies

Initialize A New Instance Of A Class, But Pass It To Other Forms Too For A Wizard Based App?

Dec 20, 2011

As an ameture developer, I've never really used classes. However, I've been reading about using classes and automatic properties. I have therefore created a class which looks similar to this:

Public Class Quote
Property QuoteNum as integer
Property AccNum as String
Property Price as Decimal
End Class

The stumbling part for me comes in the way of letting form2 know which class form1 has initialized. There are in this example 3 forms to this wizard. If someone starts another wizard whilst half way through the first wizard we need to keep the variables seperate hence using the class. I think I'm along the right track, but maybe confusing myself a little.

[Code]...

View 12 Replies

Pass Data Between BLL And UI In 3-layer (single Tier) Application?

Dec 4, 2009

I am a fairly rookie programmer who is trying to learn the basics of n-layered architecture (DAL, BLL, UI). The application I am programming is a single tier, 3-layer application written in VB.NET (.Net 3.5). Layers as follows:

DAL
BLL
UI
COMMON - contains DTO's right now.

I am having trouble determining what to pass between my BLL and UI. My instinct tells me that I should only pass data to the UI, and not the full business object from the BLL. Consider two scenarios:

1) Pass the BO directly from BLL to UI. This exposes BO methods and allows the UI direct access to the BO, which seems bad.

2) Pass only the pertinent data from the BO to the UI. For instance, a customer has a Name and Address. This data is really what we want to show/edit in the UI, so we would only return that data to the UI instead of the full BO. The UI would then call to the BLL to update a specific BO.

I am inclined to use #2, but I don't know the best way to implement it. The way I have it programmed now, if I only return data from the BLL, all references to my BO's will be lost and the GC will claim them. Based on this, I have some questions:

1) Should I keep business objects alive between calls to the BLL? The alternative is to re-create them every time I pass data through the BLL, which seems wrong.

2) What is the best way to keep a BO alive in a single tier architecture (how to hold a reference if we dont pass it to the UI?)

3) How do n-tier applications do this? Do they keep the BO's alive in the BLL and wait for an update from the UI? Doesn't this require a lot of "book keeping" in the BLL to make sure BO's are released when they are no longer needed?

View 2 Replies

Make A Single Instance App And Showing The MainWindow When Another Instance Is Launched In .NET With WPF?

Aug 30, 2011

I am looking for a way to make my app running in a single instance mode and showing the MainWindow of the first instance when another instance is launched.I do a quick search on the internet but I did'nt find anything to open the MainWindow of the first instance or it was for Windows Form not for WPF.

View 1 Replies

Transfer Control To The New Instance In A Single Instance Application?

Jul 15, 2011

I have a single instance VB 2010 application I know how to communicate with the next instances run through the StartupNextInstance application event. The usual way of working with this is parsing command line arguments of the new instance and continue execution of the old instance. What I would like to do is replace the running instance with the new one. Is there any way to do this other than disabling the single instance property ?

View 1 Replies

Storing Static Data In Class Library?

Jun 21, 2011

I want to store a fairly large amount of static data in a class library.I have used a library before that does this, containing info for thousands of items. The person who made the library got that info from a database and somehow stored it in the library such that you could access it in a variety of ways using different methods. (ID, Name, etc)

View 5 Replies

Add Instance Of Class That Contain Data

Jul 16, 2009

I have been asked by a code snippet to add the instance of class that contains data i want to add to an XML file, the only trouble is i am not sure what an instance of class is. Is it something that looks like this: [Code]

View 2 Replies

Pass Data From Other Class?

Apr 7, 2011

I'm still trying to develop p2p chat application from this thread. I have 2 applications, server and client. A client has: Form1.vb, BB_Client.vb, and RTS_SocketClient.vb. Dataflow is Form1 creates new object of BB_Client, BB_Client calls RTS_SocketClient.[code]...

View 7 Replies

VB2010 Class Library: Create A Static Library Instead Of DLL?

Jun 21, 2011

I have a Visual Basic Class Library project. It generates a DLL. Is there a method to generate a static .LIB to which I can do a static link?Alternatively, can I do a static link against a DLL?

View 6 Replies

C# - .NET Generic Class Instance - Passing A Variable Data Type

Jun 2, 2010

I'm tyring to pass a variable data type to a template class. Something like this:

frmExample = New LookupForm(Of Models.MyClass) 'Works fine

Dim SelectedType As Type = InstanceOfMyClass.GetType() 'Works fine
frmExample = New LookupForm(Of SelectedType) 'Ba-bow!
frmExample = New LookupForm(Of InstanceOfMyClass.GetType()) 'Ba-bow!

[Code].....

I'm assuming it's something to do with the template being processed at compile time but even if I'm off the mark there, it wouldn't solve my problem anyway. I can't find any relevant information on using Reflection to instance template classes either.

(How) can I create an instance of a dynamically typed repository at runtime?

View 4 Replies

Make A Application That Will Bind User Desired Keys To User Desired Text

Dec 9, 2011

I am trying to make a application that will bind User Desired Keys to User Desired Text. This is what I have done so far, it is not very much but it keeps crashing and visual basic is not telling me anything is wrong with it. I basically just want the user to be able to select a hotkey from a combobox. [code]

View 3 Replies

How To Pass Form Object To Data Class For Update

Mar 11, 2009

I am converting some VB6 code which passed an unknown form object to a class, which then used the passed form object to reference the calling form and direct the data from the class as follows:
The Called Class in the class clsGetRecord
Public Function Execute(ByRef FRMForm as form) as booleanFRMForm.List1.Additem(SomeData)....Execute = SomeBool End Function
The clsGetRecord is used by many different forms which receive data all have objects called List1 as: The Calling Form for the form
frmThisFormPrivate function() as booleanDim objRecord as new clsGetRecordbRet = objRecord.Execute(frmThisForm)
The passed form object which will receive dataEnd function. Is there any simple way to do this since the calling form object is unknown at design time?

View 2 Replies

Creating Single Instance Form In MDI Application - Check Whether Form's Instance Created Or Not?

Feb 8, 2012

creating single instance form in MDI Application. How to check whether form's instance created or not?

View 6 Replies

VS 2008 Bind A Single DGV Cell To A Single Class Property?

May 7, 2010

I am trying to use the DGV to view various properties from a variety of different class instances. Is it possible to bind each cell individually?

View 9 Replies

Mike's Instance In Code Library?

May 24, 2011

I've been reading on XML Serialization and wanted to take a break for a bit and was cruising the code library and started playing with Mike Rosenblum's code in this thread post#2[URL].. When I loaded the code into a test project, I received this error before it was run. Function 'IsAlreadyRunning' doesn't return a value on all code paths. Are you missing a 'Return' statement?

View 1 Replies

Adding A Windows Service Class To A Class Library

Feb 14, 2012

I have a class library in VB.NET that does a NET-envelope for an USB device driver.There is only one function of that driver that I could not envelope in a traditional class, but I had to put it in a Windows Service as described here:Sharing a class property (field) between applications.The Windows Service works fine, but I have now two projects for my NET-envelope: the one with the class library, the second with the windows service and I do not like the idea to maintain two distinct projects for the same driver.Is it a good practice (or even if possible) to add a windows service class to a normal class library (without creating its own project as described in the vb tutorial)?I know, in any case I should create a separate setup only for the windows service, but in this way I could have together all the classes that envelope my usb device driver in only one project.

View 1 Replies

Have Single Instance Of Form?

Mar 15, 2007

I have windows application and a form. If I open a form named "DetailForm" from main form named "Main1" by clicking the button, it should open only once. The problem I am having is, it is opening many instance of the form every time you click the button.

View 8 Replies

Have Single Instance Of The Form?

Jan 19, 2011

I then have an iteration (For Each loop) which lists all of the OUs on our site (set by the filter property). The issue here is within my treeview it lists everything without mimicing the AD structure we have.When searching on this it seems i have to change the search path to be one below the current OU and add it to my child node. I believe the search path is held in my RootDSE??, but when i look for the distinguishedName and try to pass that in i receive an

View 1 Replies

VS 2008 Object Data - Create A Class And Create A Instance Of CarData?

Nov 28, 2010

I want to create a class is it where I can do...

[code]...

How do I do this? Do i create a class and create a instance of CarData? but how do I add Color and Year etc to it?

View 3 Replies

.net - Single Instance Check Using Mutex?

Oct 26, 2011

I'm trying to implement single instance application using mutex.the application can run only one instance from a given directory.i tried to implement it in Applicationsevents class but it's not working.I replicated it with a test harness with a single form.my ApplicationEvents.vb code:

Private Sub SingleInstanceCheck(ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs) Handles Me.Startup
Dim strLoc As String = Assembly.GetExecutingAssembly().Location

[code]....

it runs multiple instances.Things I am not able change:

1.project setting has "Enable Application framework" ticked

2. ApplicationEvents.vb handles UnhandleException which means i cant have a module as startup.

View 1 Replies

Getting An ExitCode From StartupNextInstance In Single Instance App?

Jan 7, 2011

I'm using the VB.NET WindowsFormsApplicationBase to create a single instance app.he first instance (of course) starts the app, while I use StartupNextInstance to handle commands passed to the application from the command lineAlmost all ofthe commands perform an action with no return value required.However, there are a few where I'd like to get a true/false return value.'m having a hard time getting the next instance to exit with a non-zero return code.I've tried setting the Environment.ExitCode inside the StartupNextInstance handler and also tried calling Environment.Exit(-1) but that just kills the first instance.ll the documentation I've read says after your code is executed in the StartupNextInstance handler, it just exits but it doesn't tell me how I can change the ExitCode of the 2nd instance that will be closed.

View 4 Replies

Make An Single Instance Form?

Aug 4, 2010

I have a mdicontainer form that summons forms. My problem is when the a user clicks again the menu for that form, it also make another instance of it.

What I did is declare a public class with a public variable on it ex: Boolean isFormOneOpen = false. Then every time formOne opens, it checks first the global variable I declared a while ago if it's false, if it is, instantiate an object of a formOne and then show it. Otherwise, do nothing. Very static, imagine if I have many forms, I have to declare a variable for each form to check if it's already open. Maybe a method that accepts a Form? Or any more clever way to do this.

View 2 Replies

Make Single Instance Application, What Does This Do

Aug 25, 2009

in vb 2008 express this option is available under application properties. does anyone know what is its function? does it make it so that it's impossible to open two instances at the same time?

View 3 Replies

Restarting A Single Instance Application?

Apr 13, 2009

Is there any way of restarting a single instance application, which is deployed via clickonce?

View 1 Replies

VS 2008 Single Instance And Process Name?

Oct 16, 2010

Is it possible to compile my VB.NET project with a specific process name so that I can code to ensure that user cannot run multiple instance of the program?I have researched on the internet and found out most of them validate by process name. However, I have done a test which simply changing the exeuctable file to another name, the process name changes in the task manager as well. Thus, I don't think validating through process name works unless I can specifically assign a process name in the VB.NET project or validate through other ways?

View 3 Replies

VS 2010 - Single Instance Of Application

Jul 12, 2010

i am using "Animated Window Effects with "Toast" popup demo" code from the code bank created for jmcilhinney. I put a NotifyIcon control on it and check Make single instance application on the project properties windows. the problem is that every time that i launch the app it creates one instance on the system tray of the app. i can not figure out how to over come this attached is a copy of my project.

View 10 Replies







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