Prevent A User From Opening More Than One Form At A Time?
Mar 15, 2012
I have developed an application in VB.NET. It has 20 forms. All 20 can be opened from a menu strip control. The user should be able to open only one form at a time. How might
View 3 Replies
ADVERTISEMENT
Dec 15, 2011
i want to create an exe in vb.net by packaging few perl files along with it. when i am packaging those files i am able to hide those files by making the hide option true. but if the 'show hidden files' is selected those files will be visible. I want to lock/prevent the user from opening the perl file/code. want to know if there is any way to do it.
View 1 Replies
Mar 22, 2009
How do I prevent the user from resizing my program during run-time? I know how to disable the max and min buttons at the top, but I can still click the edge and drag it to resize my program. I want to be able to disable this feature so my program stays the same size the whole time.
View 2 Replies
Jul 13, 2009
i have a form that needs to be maximized in vb.net. i dont want the user to be able to change its size or move it around.
View 5 Replies
Jan 7, 2009
I have the following settings:
ControlBox : False
WindowState: Maximized
Because I want the user to have a full screen application that they cannot close without using my Exit menu. The problem is, they can simply grab the title bar of the form and drag it, exposing the desktop!
View 3 Replies
May 5, 2012
I did a MDI Winforms application and noticed behaviour that I have a question for. If one of the forms is opened with a Maximized Window State and another form is opened with a Normal Window State, the form Window State that used to be Maximized is changed to Normal. Can several windows be open in a MDI form with different window states at the same?
View 1 Replies
Aug 23, 2009
In VB6 i use "Form.Show VbModal" to prevent user to interact with other window than current one.I wanna know how to do this in VB.Net?
View 2 Replies
Jul 18, 2011
I have a VB.NET 2010 Forms Application which includes a form with a textbox, and two buttons which I call from the main form using .ShowDialog
I've messed with something such that I can no longer prevent the dialog from closing when the user clicks the Ok button but has entered invalid information.
Here is the handler for the OK button's click event:
Private Sub cmdOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdOK.Click
If SomethingIsWrongWithWhatTheUserEntered Then
[Code]......
View 6 Replies
Oct 23, 2010
I am making a windows application that should validate user input before opening up the next form page. I can get the error messages to show, but after correcting the error, they won't disappear and open up the form.
[Code]...
View 4 Replies
Apr 15, 2009
I'm using Visual Basic 2008 Express Edition. When I have my personal program open, I don't want another instance of it to open. I would like it to detect if the program is already open and if it is, it won't open another.
View 4 Replies
Aug 18, 2009
What's the best way to prevent opening of two instances (or more) of the application?
View 6 Replies
May 19, 2010
I am making a webbrowser,how to prevent my browser from opening new IE windows. Because what happens is, there are some links that will open new windows and therefore IE comes in place because it is set as default windows browser which I really don't want because my browser looks really bad if it opens links in another webbrowser.I want it to be just a basic browser, it has only one window, and it should navigate within that window. This is because the browser is integrated in a bigger application only for some website applications that are related to this main application.I am using VB.net 2008 Express Edition?
View 9 Replies
Jun 26, 2009
I've been trying to open a program called 'DET 3' which is designed by the Honduran government and helps us pay taxes for the government. I've been getting this error message when I try to open the program "Component 'Mscomctl.ocx' or one of its dependencies not correctly registered: a file is missing or invalid" I need this program to work so I can pay my taxes before July 10th.
View 8 Replies
Jan 21, 2012
I want to prevent file opening (temporarily) on certain files. I've tried encryption, which is fine, but a bit slow for my purpose. The actual end product doesn't have to keep some computer hacker type from getting in, just the lay user. I was wondering if it was possible to encrypt only part of a file and reverse this after or what options I had.
View 1 Replies
Jul 1, 2010
I have a program that allows a user to select a program to run at a certain time for a specific amount of time all choosen by the user. Everything works with the exception of if my program has launched the other program, my program become non-responsive. Meaning I am not able to look at that window again. Not that one really needs too, because when time is up my program closes the program it opened, then closes itself. I just want to be able to see my program when the other program is running. how to do this and perhaps drop me some links, that would be wonderful. This is what I have coded, but like I stated there are no code errors.
[Code]...
View 5 Replies
Apr 10, 2011
How do i make a form show when a user uses my application for the first time and only shows that time.
View 4 Replies
Oct 10, 2011
I need some help working out the logic when retrieving specific times from a userform I have created. In my userform, users are required to input a start and a end time in 24 hour time format. I am struggling to work out how best to analyze the selected times in order to multiply them by a set of rates, the rates are quite simple:
DayHours rate (day time is between 07:00 - 22:59)
NightHours rate (night time is between 23:00 - 06:59)
I cannot workout the logic to ascertain how many hours have been selected for which rate in an elegant manner, my best attempts so far are clunky and not quite there.
View 6 Replies
Sep 6, 2009
I have an ASP.NET application with a SQL Server back end. I am storing all my dates in UTC format and doing the appropriate conversions to the local time zone of the browser viewing it. One of the pages asks for a start date and end date (no times).
I am taking the start date and setting the time to 00:00:00 hours (midnight) and I'm taking the End time and adding a time of 23:59:59, so that the date range covers the whole day. Now what I'm trying to do is do a SQL query to do a search for records in this date range. The problem is, the data in SQL is in UTC time and the user is typing their dates and times in their local date and times. My quickest solution was to convert the date and time to UTC, then search the records. However, by doing this, I am to believe ASP.NET converts the given time and date to UTC based on the server time zone. How can I convert a date and time to UTC time based on the time zone of the user?
View 5 Replies
Feb 1, 2010
I've got a VB.Net form application that dynamically loads user controls based on which navigation link the user clicks on. I'd like to make it easier to use at Design time by putting a link of some sort to open the User Control at design time. The link would go onto the form in the space where the User Control will be going. This just saves a little time from having to browse through the files to open the correct file.
View 2 Replies
Apr 17, 2009
[Code]....
I add a button to a form each time the user clicks a menu option as:
[Code]....
This draws a small blue line at the bottom of the button to show it is highlighted. Just like the mouseoverbackcolor property on a button except this will draw the line. It works fine until you slide the mouse very fast between the buttons. It is as if the mouseleave event doesnt always fire.
View 2 Replies
May 28, 2011
I have a TreeView object on my form, with check boxes. By the way, I'm working with vb.NET. I want it to perform a few different things with the aftercheck event:
If you check a node, check all its children
If you uncheck a node, uncheck the parent node
If you uncheck a node, uncheck all its children
The problem is when you uncheck a node, it unchecks its parent node, which triggers the event again and unchecks all its children.
Would there be a way to prevent the event from triggering a second time? Or will I have to give up on one of those two points?
Here's the code, if it helps any:
If e.Node.Level > 0 Then
If e.Node.Checked = False Then
If e.Node.Parent.Checked = True Then
[code]....
While I'm at it, is there a way to check if a folder is accessible? I've toyed with FileAttributes, but can't seem to find out how to make it work...
View 2 Replies
Feb 12, 2010
How i can prevent the operation of more than one copy of the program at the same time.
View 9 Replies
Sep 26, 2011
How can i do this ... by the propper way i mean so that the grippers don't even display - like they do with an auto-sized label, or a non-multiline textbox.
View 4 Replies
Jun 6, 2011
i have two tabs one is expiry date and block. my problem is, when i click block tab for 1st time it will correctly populate the datagridview. but when i click expiry date tab then block tab again, i got this error 'Provided column already belongs to the DataGridView control.'
[Code]...
View 3 Replies
Dec 29, 2009
I know something like this exists, I juts don't know the right word to search about it, so basically I have a cosole application and if it runs twice it crashes. I wanna dispay a message: Sorry app alerady running.I can look at processes and see if my exe is there already running but that's much harder.
View 2 Replies
Jul 15, 2011
I have written a program in VB 2010 that dumps documentation info into an Excel file. Basically, the Excel file is a log file that keeps track of revisions for design drawings at an engineering firm.
There are approximately 20 people that have access to this program. However, I've run into issues where multiple users may be using the program and trying to send info to the Excel file at the same time. The Excel file is set to read only. My program opens the file with write access, and dumps the info into the appropriate cells, then closes the file. If one person is in the process of using the program, it causes an error with another persons system if they try to use it at the same time.
In some cases, it causes my program to crash, and it leaves the Excel file open on someones system.
Typically, my program would only have the Excel file open for a couple seconds. So, the issues mentioned above are rare, but they do happen.
I'm looking for ideas to prevent this issue from occuring.
View 7 Replies
Nov 12, 2011
I'm writing a program on CD Collection. My problem is write a code that prevents a user to enter a CD collection name that is already stored in the filename.txt.
The rest of my program is okay, but the only problem is something do with btnAdd control.
Here's my whole program:
Option Explicit On
Option Strict On
Option Infer Off
[Code].....
View 14 Replies
Oct 29, 2011
I am writing an application that needs to be running all the time and I don't want the user to be able to close it. I don't want to hide the process from Task Manager. All I need is that when the user tries to terminate the process, he has to enter a password.
View 9 Replies
Apr 29, 2010
I have a Textbox in which the user types in a name for a folder to be created. However, Windows does not allow the followin chars:
[Code]...
View 12 Replies
May 27, 2009
i want prevent user order column.i have a datagridview , it has allowuserordercolumns properties and it is set to false. But i didnt see so. i still order column.how can i prevent user ordering column.
View 6 Replies