Make Form Title Like Name Of Program
Aug 17, 2009
i would like to be able to make my form title to be something like (document title) - (name of program). The document title is the title of rtb document. how would i do this? i sorta have start.
Me.Text = String.Format("iPad - {0}", rtbeditor.Name.ToString)
View 12 Replies
ADVERTISEMENT
Jul 29, 2009
here's how to make a moveable form in case you let off the title bar
(formborderstyle = none ) Dim down, init, curpt As Point
[Code]...
View 2 Replies
Mar 11, 2011
is there any way to make the form title(form1.text) moving?like marquee in HTML?
View 2 Replies
Nov 3, 2009
I have a class that contains one function: "ShowDialog()" It creates a new openfiledialog and sets its title, but when it is run, the title of the openfiledialog is set to the current directory that is shown in the dialog. I would not like this behavior. Here is the code:
Public Class LoadSet
Public Shared Function ShowDialog() As System.Windows.Forms.DialogResult
Dim Dialog As New System.Windows.Forms.OpenFileDialog
Dialog.DefaultExt = ".bsfci"
[code]....
View 4 Replies
Nov 9, 2011
I have made form with no border,removed default title bar And placed a picture box,have set the image too, So,now I want to make it moveable, i tried each moveable title bar code,but it gives many error, What would be the code to make that title bar picture box movable??
View 4 Replies
Feb 26, 2010
can i get another program's text at the title bar i guess you will understand me I know the process name also
View 10 Replies
Jun 28, 2010
I am looking to go from the process name to the windows title.[code]...
View 1 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser
Code:
For Each a As Process In Process.GetProcesses
Dim x As String = a.MainWindowTitle
x = x.ToLower
[code]....
but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !
so how can i fix it ? and how can I make the program gives me the URL if specified word in title is found in IE and Firefox?
View 3 Replies
Nov 12, 2011
How to convert this to read from other file .exe application his title name For example:I had 1 button that select .exe file application And i want to put in the textbox2 his title name.Here is my code for geting my program title, how to make it to read the title of the program that i had selected with the button..[code]
View 6 Replies
Apr 3, 2009
when the message box appears after enter is seleted, is there a way to:
- put a title on the message box?
- make the font size larger?
- change the background color?
- make the box itself larger than the longest text imput?
- have the ability to copy to clipboard what is in the message box so it can be pasted somewhere else?
View 3 Replies
Jan 19, 2010
I am trying to display a child form in a Mdi Form without the child Form's title bar showing. The title bar is showing with the default Icon, not even the icon of the child form. When the icon on this second title bar is clicked the popup menu (Restore/Move/etc.) shows.
[Code]...
View 4 Replies
Sep 22, 2010
I update a Form's Title from within the form, but it doesn't update. Any idea how to "Refresh" it so that the update displays?
View 5 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser For Each a As Process In Process.GetProcesses
Dim x As String = a.MainWindowTitle
x = x.ToLower
If x.Contains("microsoft") Then
MsgBox("microsoft website is opened")
[code]....
but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !
View 7 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser [code]but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !so how can i fix it ? and how can I make the program gives me the URL if specified word in title is found in IE and Firefox?
View 3 Replies
Dec 19, 2010
Im am trying to get whats inside the <title>My Data</title> tags, however the results i pull back are not whats in the title tags..
Dim myMatch As Match = System.Text.RegularExpressions.Regex.Match(My_Text, "<(?<title>w*)>(?<text>.*)</k<title>>")
If myMatch.Success Then
[Code]....
View 3 Replies
Apr 2, 2011
On my program I am trying to make a form that would activate the program.I have the activation codes but when the user enters the activation code in a text box, is it possible that it would erase that activation code or wont accept that activation code again after being used once. Then if the program accepts the activation code can it open the main form (form1) and if the user closes the program and the re-opens the program, is it possible that the activation form doesn't open again and instead, going to the main form. I have this password code:
Private Sub textbox4_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MaskedTextBox1.KeyDown
Static WrongCount As Integer = 0[code].....
Then can there be slashes every 4 characters in the text box?
View 1 Replies
Jun 12, 2009
How do you make a glass form in VB.NET? Like the vista/win7 effect, but extended into the form. I saw a tutorial for C#, but can't find one for VB.NET
View 6 Replies
May 18, 2012
I was able to make a program that can draw on a form but if I draw very fast, the lines are cut. Check image below :
Another is I want to make my form be able to load a power point presentation. Is it possible? Also, I was wondering if it is possible to save the form as image file like what we do in screenshot?
View 3 Replies
Jun 22, 2010
Im trying to make a program that has a main form(menu form) and when i click on the buttons another separate form will appear.
View 1 Replies
Oct 13, 2009
I have a vb.net form which has a button in it. The button will call A.exe (it's a vb.net exe) using the command Shell("A.exe ", AppWinStyle.NormalFocus).
How can I make sure that everytime I press on the button, A.exe will only open once, and does not open a new form each time?
View 4 Replies
Nov 30, 2009
Im making an application that is keeping an eye on an external application that does not have an API. I'm interested in getting notified when the external application changes its main window title. My idea is to somehow register a hook that will notify my application.
View 2 Replies
Apr 17, 2009
I have a web browser with tabs, and I wanted to know the following:
1. When yougo to a webpage the Tab name will be the websites title, if the title is over
2 5 characters, then it ends with a "..."
2. how do I make the adress bar URL change when switching tabs?
View 10 Replies
Aug 25, 2009
I have a table inside my database, and i wish to insert/update/delete entries in a FormView Manner (I mean no datagrid) but a set of textbox/combobox/listbox/checkbox for one record. Before modifying/adding data i have to perform some extra checks to enter correct values to my database. How will i be best off doing it? I am currently using a datatableadapter to perform datatableadpter.insert, and also datatableadpater.update. How can i make use of datasets here and what is the best way for it?
View 2 Replies
Jun 26, 2010
I have a form in vb.net with a checkbox and I want it to stay in top of other windows if the user checks the checkbox and not to stay in top of other windows when the checkbox is not checked
View 2 Replies
Feb 11, 2010
How can make my form look like microsoft's series of program like word
View 34 Replies
Apr 8, 2010
What I can't figure out is how to change the title of a form. Meaning when it opens, at the top (title bar) it will say Form1 for example, how can that be changed?
View 2 Replies
May 21, 2009
I found this link. [URL]. I copied the code to my app and tried it. It didn't work for me. I think in may not have worked because I have a panel control with the dock property set to fill and Label inside the Panel with the Labels Dock property set to Fill. So I changed the mouse event names from Form to Label1, that didn't work for me either. One other thing you should probably know is that I have a timer control running as well (don't know if that makes a difference).
View 16 Replies
Sep 15, 2011
how i can put a control (like a checkbox) or a simple button in a form's title bar using VB 2010 and Windows 7? i already studied
[URL] but code samples here just work with WinXP (samples designed in VS2003 & VS2005), no vista nor Win7.
View 11 Replies
Sep 22, 2010
I update a Form's Title from within the form, but it doesn't update. Any idea how to "Refresh" it so that the update displays?
View 2 Replies
Jul 24, 2011
I am just wondering on how can i make a list of recent file opened on my program in vb.net. The recent files filenames must be in a linklabel in a form and in the menustrip.
View 5 Replies