'owner' Of The Name Of The Stand Alone PC?

Feb 20, 2012

Currently use word automation to mail merge some documents and print etc. A stand alone PC manage this, which means that when the document gets sent to the print queue it always has an 'owner' of the name of the stand alone PC.

View 3 Replies


ADVERTISEMENT

Component Not Visible - 'owner' Conflicts With Property 'owner' In The Base Class 'Form' And Should Be Declared 'Shadows'

Oct 27, 2009

I placed this checkbox named owner on my form. When i build the project i got the error as
Quote: 'owner' conflicts with property 'owner' in the base class 'Form' and should be declared 'Shadows'

[Code]...

View 10 Replies

What Does The 'e' Stand For

May 19, 2009

While bored I started extracting all the methods and functions in my program and moving them to a module...just trying to practice the encapsulation I've been hearing so much about. While trying to move my print functions it raised a couple questions. The issue was the 'e' in e.marginbounds and e.Graphics not being recognized. I caught 'e not declared' errors as if the system was just interpreting it as some kind of new variable. I tried moving the 'e' to several places just to experiment and the only place it seems that the intellisense would pop up with anything worth displaying was in the printDocument_printPage event itself.

what the 'e' stands for in these functions anyhow? Is it similar to the 'Me' in a Me.Close() being that it's just meant to address what's immediately at hand? Is there a way around this localization of the printing code, maybe an import of something that would make the 'e' accessible again. Such as the 'Imports System.IO' for the streamreader and writer functions.

View 7 Replies

Change It Over Into A Stand Alone App?

Mar 11, 2011

I have a 'project' that I'm currently using in excel. I would like to change it over into a stand alone app. I however am not a coder and have taken very limited coding classes. I know HTML, CSS, VB and some VB.net. My question is will it be easier to convert it to a web app or simply a desktop app? Why would one work better than another?

Here's some constraints.Not every intended user will have excel (thus my want/need to convert to stand alone). The data involved will come from 3 seperate databases/locations and will require archiving once a year. The data would be 'wrote' to the app upon opening - SQL queries.

The app would simply manipulate this data and provide reports. Nothing fancy except access to certain reports would be limited based on username. The 'interface' needs to look pretty. <Not my constraint but the PTB>.

They do not want/need a report generator <already tried to get them to go for crystal reports>, no funds available and users do not want to have to learn how to write good queries. <Yes, I have tried to get them to understand but they like what I currently have in excel>

View 1 Replies

How To Stand By Computer

Jan 18, 2010

how to stand by and wake up computer, i found this code but it does not work for me

View 6 Replies

What Does E In E.Cancel Stand For

May 4, 2009

I have been working/coding with e.Cancel, e.EventArgs, etc without knowing what the "e" stands for. Can I have a simple explanation of what e means and possibly similar concepts in VB.Only performance counts!

View 3 Replies

How To Get A File's Owner

May 20, 2009

In explorer if you right click a file and select Security->Advanced it tells you the owner (the person who wrote the file or took ownership of it). How do I get this info from code?

View 1 Replies

How To Set Dialogform Owner

Oct 19, 2011

I am trying to open a form by using "form3.ShowDialog(Me)". Here "Me" refer a child form of Project's MdiForm. When i try to get form3's owner it returning the Mdiform name. My code is as follow:

''' Code in my MdiFrom to open the first child form
Dim ObjForm1 as Form1
ObjForm1.MdiParent = MdiParentForm

[Code].....

View 7 Replies

Code For Stand Along Color App?

Dec 4, 2010

I am looking for a tut or code to make a stand alone app for a color palette for vb10

View 1 Replies

Convert VBA App To Stand Alone Application

Jun 23, 2011

I have the following code that i need to convert from a MS Office- Visual Basic App into a stand-alone application. I have debugged most of it to run in visual studio 2008, however it has a problem with the message box stuff. If i cant have a message box with the information in it then I want to put the output in a label but im not sure how to convert it to display in a label. [Code]

View 9 Replies

Converting Stand Alone EXE File?

May 5, 2009

i have wrote small program in VS 2005 , i used the back end Access 2003 now i have been trying to convert as Stand alone file. when i install created installation file it indicate the error which is

"""
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

[code]....

View 1 Replies

Deployment :: How To Use Stand Alone System In MAC

Dec 2, 2009

As i understand. mac pc dun support exe files. If i have complied my system as exe how to allow it to run in MAC?? or is there any other format that i could convert to so that i can run my program in MAC?

View 2 Replies

Making A Stand-Alone EXE File?

Feb 11, 2012

I'm currently using Visual Studio 2010 to make a Visual Basic project. I'm trying to make a standard .EXE file for distribution but everytime I go to publish, I keep seeing it make a Click Once application.Is there a way to complete and build a project in VStudio 2010 without making it as a Click-Once application?

View 1 Replies

Stand Alone Exe + ClickOnce Cache?

Nov 17, 2009

Two separate but related questions about deploying a Visual Basic 2008 .net application:1. Click One installs in a cache under local data. The EXE launches from the cache even if not on-line. I don't want my users to have a runnable EXE left over in their cache after exiting the program. Is there a way to delete or disable the cache contents on close of app or equivalent?

2. My EXE uses an interop DLL. I want my EXE to be a single stand-alone file so that I don't have to copy both the EXE and the DLL to the user. Is there a compile setting to incorporate everything, includng the DLL, into the EXE.First question relates to Click Once Web deployment. Second question refers ONLY to ordinary COMPILE, not click-once.

View 5 Replies

.net - Getting The Highest Owner Of A ToolStripDropDownItem?

Jun 11, 2010

I'm currently working on a project in which at one point, the user may right click a button which brings up a contextMenuStrip. I am already able to find the owner accurately from that strip, and manipulate the button clicked as follows:

Dim myItem As ToolStripMenuItem = CType(sender, ToolStripMenuItem)
Dim cms As ContextMenuStrip = CType(myItem.Owner, ContextMenuStrip)
Dim buttonPressed As DataButton = DirectCast(cms.SourceControl, DataButton)

But now for the tricky part. Within this contextmenuStrip, I have a DropDown menu with multiple items in there. I would assume you would be able to work your way up the ladder doing casts like above in the manner of

ToolStripDrowpDownItem > ToolStripDropDownMenu > ToolStripMenuItem > ContextMenuStrip

Unfortunately, when I try to get the sourcecontrol from this menuStrip, it return Nothing. Any ideas on how I can get the button that was pressed from this toolStripMenuItem? My current code is as follows (in which the sourceControl is Nothing)

Dim myItem As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)
Dim dropDown As ToolStripDropDownMenu = CType(myItem.Owner, ToolStripDropDownMenu)
Dim menuItem As ToolStripMenuItem = CType(dropDown.OwnerItem, ToolStripMenuItem)
Dim cms As ContextMenuStrip = CType(menuItem.Owner, ContextMenuStrip)
Dim buttonPressed As DataButton = DirectCast(cms.SourceControl, DataButton)

how to go about doing what I did in that first method, but just working my way up from further down the ladder?

View 1 Replies

Get The User/owner Name Of A Process?

Oct 7, 2005

How to get the user/owner name of a process in vb.net?The reason I need it is because I developed an application,which I will put on the winnt enviroment, I want to allow multiple instance.but only allow one single instance per user.I am using Application.Run(MyMainForm) to start my application

View 8 Replies

Auto-update Stand Alone Application

Jun 3, 2011

I have a stand alone application "test.exe" on a Windows 7 operating system.I have an application "test.exe" made in Visual basic 8.0.I have an "Auto Update" function . Call this function from "test.exe". In the first line in "test.exe".This function does the following:

1. This checks whether the current version is older than the version on specific site, if so:
1a. Removed all *. old
1b. Rename test.exe to test.old
1c. dowload new test.exe

I'm afraid I get an error when I rename "test.exe" to "test.old" because "test.exe" is now active.How can I prevent this or what else should I do?

View 2 Replies

Create A Stand Alone Program With VB2010?

Sep 12, 2011

Is it possible to create a stand alone program with VB2010?

I mean, without any presence of an OS, the program will still work...

View 13 Replies

IDE :: Stand Alone EXE That Runs On Any Operating System

Feb 2, 2010

I did Build a program and copied only the EXE file to USB drive. Tried to run it on different computers. XP computers had no problem running it. The ME and Win98 could not run the program since the MSCOREE.DLL was missing. I need to install something on those computers to enable them but there are security issues and patches. Is there anyway to make my program standalone?

View 5 Replies

Make My Application A Stand-alone Exe (with Out Set Up Or Publish )?

Oct 29, 2011

I'm tired of how to make my application stand-alone exe. I have created a small application console using C# in visual studio 2010, and I want to make it run on other computers with out having to install .net on that machines. and also make it just like notepad.exe with just click and it will run. I've read a lot of articles talking about netz or ILmerge.exe or mono which is so difficult to me to understand. and another question is how to know how many .net files or dll s that my application needs?

View 5 Replies

Blank Out Owner Property In File?

Mar 2, 2010

(VS 2008, VB, 3.5 framework) Files have my name in the Owner property of the file, I want the owner value to be blank. I want to create a VB app that will loop through each file and clear out the owner property value. About 40 folders with about 20,000 files. What is the best way to loop through folders, and update files? Can the owner property value be set to blank?

View 4 Replies

Get Owner Of A Context Menu Strip?

Apr 17, 2007

I have a ContextMenuStrip and a ListBox. I have the context menu connected to the listbox. The menu has two items, Select All and Deselect All. I want to select/deselect all the items in the listbox when a button is clicked. I have done this before for a CheckedListBox but cannot remember how.

View 7 Replies

How To Return Values To Owner Forum

Aug 28, 2010

ok here is the thing, in my application there is 2 forms, in the main one (not an MDI)it has some textboxes and a picture box, the other small form contains only a ser enters his search criteria in the textboxes in the main formand presses a button to show the results,t opens the second form and displays the results inthe listview(results are names of pictures).

View 2 Replies

VS 2010 Change The Owner Of Folder?

Sep 6, 2011

how can i change the owner of folder

this will Explain

i got code that change the access to the folder and it's work but not with all folders

View 1 Replies

Apply A Security Template To Stand Alone XP Workstation Using VBS?

Aug 26, 2009

Apply a security template to stand alone XP workstation using VBS?

View 4 Replies

DB/Reporting :: Stand Alone Application Data Access?

Dec 22, 2008

I am new convert from VB6 and needs some help developing a stand alone application in VB 2008 that needs access to stored data values.All applications I have developed so far have been for computers that have either SQL Express or Access installed locally on the computer. This has made development really easy since I could use ADO to access and query the data.

The application I am now developing will be installed on a computer that does not have any of the MS office applications and I do not want to install SQL Express on the computer. But I still would like to use an 'ADO type' functionality to access, query and modify the data stored in the system.I started looking into using XML, but I was unable to find much information on querying and modifying individual elements.

View 12 Replies

Inventory Control Software- Stand-alone Or Webapplication?

Nov 1, 2009

I am newbie programmer and I have one query for inventory control system. Initially I was planning to develop a stand-alone application, but then client added one more requirement. He wants his application should run on server, so that he can access it from anywhere in the world. Thus, I am unable to decide whether to go for stand-alone application or web application. How should I do it? How others do it?

View 2 Replies

Make The Active MDI Child Form Stand Out More?

Jul 8, 2009

When I have two MDI Child forms opened, it is difficult to visually see the active form versus the non-active form.I would like to have the Active Form stand out more, say a yellow border.

View 3 Replies

Packaging .net Program And Resources Together To Make It Stand-alone Exe?

Jul 21, 2011

I'm developing a very simple program in VB2010 Express that will create folders based on entries in a remote database. I am fully aware that the minimum requirement to run the exe is the latest .net framework, however I have a few added resources to the file, and when I try to run the executable on another computer, it fails to run stating that the resources are missing.

How do i compile my VB code AND the resources together into a stand-alone executable that only requires the .net framework to be installed?I have already tried to google this issue, however every answer I find has nothing to do with my initial question..

View 1 Replies

Programmable Stand Alone Button (hardware+software)?

Oct 1, 2009

I need to have a physical button that when pressed will be noticed by my program.There are many types of usb-buttons that are preprogrammed to open a website, shutdown the computer and so on. And I have seen some projects using buttons and serial port.But none of them "have it all", an easy description of how to put togheter the hardware, and an easy description of the code.

I really only need a button connected to the serial port that send some signal that the button has been pressed.I know this question is a crossover between software and hardware, but when I googled this I have seen plenty more people asking this question, all of them left without answers.Maybe this question fits stackoverflow?

EDIT: My solution

My application in this case was a que system and I wanted a button for people to print a que ticket.I just took apart an old ps2-mouse and bought me a button (4$) and solded two wires from the circuit board to the button. Each mouse button has to dots on the back of the circuit board that we can connect an external button to.Then in my program I just hooked the mousebutton-event systemwide to get when the button is pressed, in my case this computer is dedicated to this program so its not a problem.

View 3 Replies







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