Deployment :: Allow Dot Net Program To Run From Network Without Strong Key?
Nov 1, 2009
how to allow dot net program to run from network without strong key ? since i have program put on network, ussually i put strong key on that assembly, and it can work and run from network this program.. but there is some component com object that make me to cannot compile if i put my stong key, so i compile it without stong key, but it came i cannot run this program from my network..
View 5 Replies
ADVERTISEMENT
Oct 16, 2009
My Vb Dot Net Program Can Not Run From Network. When i try to register my program to GAC,it said my assembly dont have strong key,
i cannot put strong key, because i put component vb6 to my program..
View 2 Replies
Sep 17, 2009
how to Using Com on Dot Net Program that have strong key ?i get a com dll that need to used to control finger scan hardware.and i already added it in my vb dot net program. it completely work fine.but after i added my strong key to my vb dot net program, i can not compile my program. it seem because of com dll doesnt have strong key.
View 6 Replies
Sep 17, 2009
I heard somewhere that I need to strong name my binaries before I distribute them.
View 4 Replies
Aug 18, 2009
Here is my idea so far: I have a bunch of computers connected in a local network. One of them is a MySQL server, one will have a vb.NET program wich will act as a "second server" and the rest will be different clients. What I want to do is that the "second server" will send out some kind of message or network package to some of the clients in the network, and they will execute a code based on what message it is, or what kind of package it is. I'll give you a simple example:
[Code]...
View 6 Replies
Sep 27, 2011
I want to distribute a fairly simple program developed on Visual Studio 2008. I have tried to use the publish features in the IDE. It creates a folder with various information and stores it on my fileserver.When I try to install the program on another computer I get a lengthy message about the need to install Powerpack 9. 0.0.0 So I go back to my dev computer and edit the publish information. On prerequisites I do not find Powerpack 9 but Powerpack 3. I put that in and redo the publishing. The installation now install that package but then it says it requires powerpack 9.0.0.0 and ends?
View 5 Replies
May 2, 2009
I have a project ready to be deployed via ClickOnce and it uses free graphing software. Is there a way to either include this software so that it will be installed with my project or have the install from the graphing software run when my program is installed from the site?
View 2 Replies
Apr 27, 2009
After a program is deployed and distributed to users, what is the best way to have an update? New distribution or a patch? How to make a patch that only modifies some methods in a large poroject?
View 8 Replies
Sep 12, 2009
because when i make a program and try it under windows xp it give me error that it is need .net framework 3.5 so how to make the .net framework install when i install the program i tried to use setup wizard in vb 2008 and put in it the framework but it didn't work
View 2 Replies
Mar 31, 2010
ok i am making a "game" in visual basic 2008 and I have come across a problem...
I need it to be able to play a sound without saying that the sound is stored at "c: estsound.wav"
I have it working and playing the sound when i want but it only works on my computer
How can i save it into the resources just like you save a picture into resources?
Btw if it helps i am playing the sound using the axwindowsmediaplayer thing and it just plays the sound when the program loads...
so form1load then it plays the sound.
how i can make it play the sound on other computers?
View 1 Replies
Mar 5, 2010
Setup and deployment project template is missing in my installation
View 2 Replies
Mar 5, 2009
when publishing a program is it possible to get it to include or copy over a mdb file and can the setup be made into 1 setup file instead of the "Application Files Folder" and "Program name.application"
View 2 Replies
Apr 14, 2009
Is there a way to set the installation path of my program to c:Foldername.
question number 2 is that I have 2 database files which is located in m� program, is there a way to copy these to a spesific location during the installation of the program?
View 1 Replies
Jan 16, 2009
For our VB.NET websites we use SVN for Source Control and CruiseControl.NET for continuous integration.
To use the SVN build number in the compilation by CruiseControl.NET we need to use Web Deployment Projects. We then replace in the configuration file the Version field with this variable from SVN Labeller[code]...
View 2 Replies
Jan 25, 2010
ive created a program in VB 2008 and i cant remember how to publish it in such a way that it includes the database that the program uses. At the moment when i publish it, it only works on my system because i have the database on my PC, if i delete the database from my pc the program messes up because it doesnt have a copy of the database in its program resources etc.how do i publish the program so that it includes a copy of the database that it needs to function?
View 6 Replies
Jun 30, 2009
What must I add to the deployment project so that when the user clicks Start>All Programs>My icon, my program runs. Now the explorer comes up pointing to the application directory.
View 10 Replies
Apr 26, 2012
I have developed some programs for processing and issue-coding electronic documents. I am teaching myself how to work with SQL Server because I want these programs to work with electronic documents imported into SQL Server as opposed to messing around in a folder stuck on the desktop, for example. From there I want to expand on the program so that it is a network enabled program.
[Code]...
View 1 Replies
Dec 8, 2009
I would like that my dlls created in vb.net will not used by others, is the strong name will do it? How to use strong name?
View 12 Replies
Apr 9, 2010
I have my program that runs from a workstation and the SQL DB is on the SERVER.I am having a lot of problem with it as the VB.NET program wont refresh the dataset.I would like to test the same by putting the SQL DB on a network drive, and run the program from another workstation.Just to narrow down the problem.My Question is this. I install the SQL DB on machine A and then install my program on Machine B?
What should I do to get Machine B to access the SQL DB on Machine A.Will sharing the SQL FOLDER be good enough for my program to access the DB of course, I have to modify the connection string on my program, but other that is there anything more to be done.
View 2 Replies
Jun 10, 2009
The default installation of my setup project is as follows:
[ProgramFilesFolder][Manufacturer][ProductName]
The problem is PC in Europe don't have a "Program Files" folder, it's in a different language.When I remove [ProgramFilesFolder] from the setup program, the installation doesn't work. I would like to install the application in C:AppFolder,
View 1 Replies
Sep 8, 2009
I have written small a software. I want to install it on a server and and make it accessible for all the other users on network.
How can I retrieve the server name (the computer program installed) with .NET?
Also, sharing the "Program Files" folder doesn't look like a smart idea for making the program accessible from the other computers.
View 2 Replies
Dec 31, 2009
Say I have a class with one property
[Code]....
I have to pass the name of the property to a function call. (Please don't ask why it should be done this way, its a third party framework). For example SomeFunc("MyItem") But what I would like to do is, change the string into a strongly typed parameter. Meaning, if the property name is renamed or changed, it should be reflected here too. So something of this type :
[Code]....
View 4 Replies
Jan 27, 2012
I'm converting a VB6 dll to VB.Net using Visual Studio 2008 Express. I want to use the same .dll to integrate with Excel via Excel-DNA, but also to be available via COM (I need to be able to call it from VBScript and VBA).
If I leave the assembly unsigned, I have access to all of the ExcelDNA functionality but no COM access.
If I sign the assembly with a strong name, then when I try to build the .dll I get the following error:
Unable to emit assembly: Referenced assembly 'ExcelDna.Integration' does not have a strong name.What are my options?
View 2 Replies
Jun 12, 2010
I'm trying to change the "load path" of all DLL-files that i have refereed to with this code
Function MyResolveEventHandler(ByVal sender As Object, _
ByVal args As ResolveEventArgs) As [Assembly]
'This handler is called only when the common language runtime tries to bind to the assembly
[code]......
View 3 Replies
Dec 7, 2010
I Finish my program but my interface is not good (its just a picture & its almost 0) but a good program like vb 2010, bitdefender & ... have very beauty a and strong interface how i can make a good interface
View 1 Replies
Feb 7, 2010
I make my Program to Connect via Network to Database..[code]
View 5 Replies
Sep 29, 2009
How to handle the Network failure error message,and how to simulate it?
View 3 Replies
Jul 12, 2011
How can i do about disabling a network adapter using VB.NET.
View 1 Replies
Aug 26, 2011
I need a program that can send and receive msgs to everyone that's on that program and on that network, then is there a way to add chat rooms to the program 2. I looked all around the Internet and MSDN and found a lot of results but non worked property.
View 6 Replies
Jun 6, 2010
I'm sorry if this is in the wrong section but I don't know where else to post.I am new to vb.net and would like to tackle it head on.I would like to know how to make a network moitoring tool thatwould check who is on the network. I cant find any tutorials.
View 2 Replies