Forms :: Find The Position Of Form1?

Jun 11, 2009

I'm literally just started learning VB today and need to find the location of Form1 on the screen.

View 1 Replies


ADVERTISEMENT

VS 2008 Open Additional Forms In Center Of Form1 Position?

Jun 10, 2009

I would like all additional forms opened by some command the user performs on the Form1 to open in the center of Form1, no matter where the user has physically moved Form1 on their desktop screen. The application itself (Form1) is a small box with dimensions of 442x306 that will open even smaller forms on top of itself. Right now, I have everything positioned to open in the center of the screen so, in theory, everything works/looks fine as long as the user doesn't move Form1 anywhere.

View 15 Replies

Forms :: Form Variable Value Blank / Null When Move From Form1 To Form2 And Back To Form1

Oct 27, 2009

In my window application, Form1 variable eg. Public str as string. value blank/null when move to Form2 and Back to Form1. How to maintain Form1 varable's value when back to Form1 In vb.net if any one know, reply me soon

View 2 Replies

Forms :: Navigate From Form1 To Form2. And Then Close Form1?

Feb 16, 2009

I have got 2 forms ----- form1 and form2

i wanted to navigate from form1 to form2. and then close form1

i did the following code.

-sub form1 _ page load
dim form as new form2
form.show()
me.close
-end sub

i also tried -- form1.close() and form1.dispose() but all in vain

Problem is that my form1 is not getting closed

View 7 Replies

Display The Objects And Position Them But They Arent Showing On The Form1?

Feb 7, 2011

i have this portion of code to display the objects and position them but they arent showing on the form1 load how do i fix this?

View 2 Replies

[2005] Position Form2 Directly Under A Control On Form1?

Jan 23, 2009

What I'd like to do is position Form2 underneath the Label on Form1 when the "down arrow" button is clicked. (Basically Form2 should have the same "Left" as the Label on Form1, and its "Top" should be the Top of Label1 plus the Height of Label1.) Please see attached images for further clarification. (I did something like this in VB6 with the SetCursorPos API and the Screen.TwipsPerPixelX and Screen.TwipsPerPixelY properties, but I'm sure there is a better way to do this in .NET.)

View 7 Replies

Forms :: Exception On Calling Form1 From LoginForm And LoginForm From Form1

Mar 11, 2010

I have login form as start up form and i call Form1 after successful validation and in Form1, i have close button on click of Close i would like to reset username and password fields on loginform to null. If i add code in form1 below i get exception Dim fmLogin As New LogInForm

An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll

Make sure you do not have an infinite loop or infinite recursion

I get above on LoginForm below statement Dim fmMain As New Form1

View 1 Replies

VS 2008 Multi Forms - Form1 Not Reloading?

Apr 27, 2009

I am using two forms.

Form 1 organizes student information from a textfile

Form 2 appends a new student

I load the second form with:

Dim secondForm As New Form2
secondForm.ShowDialog()

It loads, cool..When I close form 2 with me.close, form 1 does not have the updated information. (Most things load with the form_load event)This is form my intro to VB course.

View 6 Replies

Display Same Button(button1) In Two Different Forms(form1 And Form2)?

Dec 22, 2011

Suppose, i have a button(button1)in form1.

Now i have opened a new form.

I want to display the same button(button1) from form1 to form2.

View 2 Replies

Forms - Reffer To An Object In Form1 With Code In Form2

Mar 5, 2009

If I create a new form, say Form2, in order to use it in a program I must create an instance of it: Dim frmTwo and new Form2, If Form2 has a text box on it I can put this code in Form1: [Code] But what happens if I want to refer to an object (a text box)in Form1 with code in frmTwo? This doesn't work: [Code] How is the instance of Form1 created? And How do I refer to it?

View 3 Replies

Find The X And Y Position Of A Datagrid Cell?

Apr 24, 2010

How can I find the X and Y position of a datagrid cell? I can provide the row and cell number if needed.

View 6 Replies

Asp.net - Find Out Gridview's Selected Row Position?

Nov 22, 2011

I have a text box and button inside a panel , and I want to show this panel right next to gridview selected row , gridview is also inside another panel , is there anyway to find out selected rows position ? This is a asp. Net page and I am using vb.net . Panel can be replaced by div

View 2 Replies

Find A Character At A Current Position?

Oct 31, 2011

I am trying to develop a HANGMAN game and i need to implement a button where the user can click on it to "buy" letters. So, i designated 2 text boxes (one visible containing stars and another one not visible containing the word that should be guessed), and i wrote the following piece of code so that once the user presses the button any of the stars will turn to the correct letter. My question is, i found the index of "*" and removed it, and now i want to insert the corresponding char with this index (WordInLetters). How can i find what char is at index "index" in vb.net?

Private Sub picBuyLetters_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles picBuyLetters.Click
Dim index As Integer = txtWordinStars.Text.IndexOf("*")

[Code].....

View 3 Replies

Creating Forms And Objects Through Code In The The Load Event Of Form1?

May 22, 2011

I've been working on creating forms and objects through code in the the load event of Form1, truthfully theres a few questions I have under this one category but to start I want to create a button click event that will check what button was pressed then set that button to a variable. I want the event to treat the button that was clicked like it was that buttons click event.Here's a shortened version of my code (Lol if you can call this short):

[code]...

View 3 Replies

Display Date And Time On Top Of The Form Where Normally Written Form1 Forms Name?

Jun 6, 2011

I want to display date and time on top of the form where normally written form1 forms name. i want to display date in formate of for example 23 August 2010 and time in this formate 12:33:20AM

View 7 Replies

Forms :: Form1 Load Event - Drawings Appear For An Instant And Then Dissappear?

Mar 3, 2010

I am trying to develope a small graphics application in VB.NET. My startup form has a picture box with a background image loaded from a file. The user can click spots on the picture box and this draws some circles on it. On exit the coordinates for these spots are saved to a file.In my form load procedure I load the background image, the coordinates for the graphics(saved from the last time the program was run), and then call the drawing procedure.

The drawings appear for an instant and then dissappear. If you click the picture box the graphics re-appear.The form works fine once you do this.I guess the picture box is refreshed by the form load event and this is causing the drawings to be wiped.(I stalled the call to the drawing procedure by using a timer and this works but I am sure there is a proper way of fixing this)Is there a way of ensuring a form is fully loaded or making sure the drawing procedure occurs only when the form is fully loaded?

HERES THE
Private Sub Form2_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
Me.WindowState = FormWindowState.Maximized[code].....

View 8 Replies

Forms :: Pass The Task_ID Of Selected Item From Form1 To Form2?

May 20, 2009

I had two forms, first forms shows all the task details in a list and user select any task and the second form shows the details of that task in edit mode so user can edit the record, now i don't know how to pass the Task_ID of selected item from form1 to form2.

View 1 Replies

Forms :: Stop The Sound In Form1 From Playing When Form2 Open?

May 30, 2009

im trying to open another form2/app that have music but i wanna stop the sound in form1 from playing when form2 open?

View 1 Replies

C# - Find The Position Or Location Of String In Given Document?

Feb 26, 2010

How to find the position or location of string in given document.I have one word document and i want to store all its words and word positions in database so thats why i need to find the position of the words.

how can i find position or location of word or string in given document.

i intend to use vb.net or c# for and .doc documents

View 1 Replies

Find Cell Position In Grid Control?

Jun 23, 2010

I wanted to create a module / tool similar to MS word where user should be able to add controls, resize controls, drag and drop controls.Anyway, I have got lot of references on how to resize control, drag and drop add control etc...my main requirement is i need a way to add grid and should be able to add cells to it. When i resize the grid control, the cell height & width should get extended and compressed accordingly. Also i need to save position of the controls to a text file.Saving positon of other controls is easy but most importantly i need to save each cell position of the grid.

View 2 Replies

Find Position Of First Occurrence Of A Substring In A String?

May 31, 2009

I wan't a method with which to find a string within another string. It should return the position of the first occurrence of the substring. (In VB 2008 !)

View 2 Replies

Find The First Occurrence Of A Certain Word's Position In A Textbo?

Nov 15, 2011

I need to find the first occurrence of a certain word's position in a textbox, on how to do this? Once I find out how I can get the position of the word i am searching for I can then pull the data I need from the textbox. I am using visual studio 2010 / visual basic.Since I have no clue where to start on this code, I will post what code i will be using to get rid of the data i don't need from the textbox.

Dim s As String = TextBox1.Text TextBox1.Text = (TextBox1.Text.Remove(450))i figure I can do this in a few steps to bring the searched info out of the textbox. I am open to other ideas on how to gather my data from the file or textbox. Here is what I have to do: Pull all of the players names from a replay file and put them in separate text boxes or even a listbox.

[Code]...

View 3 Replies

VS 2008 Find Window Handle By Its Position?

Sep 6, 2009

How to find window handle by its position?

View 13 Replies

Find The Original Position In A DataTable From A Filtered DataView?

Aug 5, 2011

I want to find a particular ID in a DataTable, I am using a DataView to filter the results, but how do I know which row in the original table the filter view corresponds to? Any ideas? In know I could use LINQ but I don't think this would help either?

[Code]...

View 1 Replies

Xml - Find The String Position (index) From A XPath Statement?

May 7, 2009

I'm looking for the actual index position in a given source string.I have the following string

"<a>
<b>zyx</b>
<b>wvu</b>

[code]....

I'm loading that string into a .NET XmlDocument object. Carriage Returns and Line Fees may be a factor here.

Dim xmlSearchText As New XmlDocument()
xmlSearchText.LoadXml(SearchTextBox.Text)
Dim selectedNode As XmlNode = xmlSearchText.SelectSingleNode(txtSearch.Text)

The following XPath Statement could be used to find the 3rd node:

a/b[.='tsr']

However, I need it to return a string index of 23 rather than the ordinal position of 3.

View 2 Replies

VB2008: Form1.BackgroundWorker WONT Stop Form1.Timer From Form3 Click

Sep 9, 2011

Using VB 2008:Situation: A Form1.BackgroundWorker calls a Form1.subroutine. That sub starts a Form1.Timer with Me.tmrOK_BlinkForm.Enabled = True...fires Timer code in event: Public Shared Sub tmrOK_BlinkForm_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrOK_BlinkForm.Tick

Form3.Visible = True
Form3.Label1.Text = gNowButtonDispText
Form3.BackColor = Color.White
Form3.Refresh()

[Code]...

There must be a way to do this, I just need the correct BackgroundWorker Syntax send Stop commad to Form1.Timer from Form3.Click_event...all inside a Form1.BackgroundWorker thread started in Form1.

View 4 Replies

Cannot Seem To Find A Caret Position Changed Event On The Normal Richtextbox Control?

Oct 19, 2009

even Word Pad, when you scroll your Caret (the I-beam for browsing through text) through the text, in the font combobox, the font of the text you are browsing through will be displayed, and when you scroll your caret through a different font, the font will be changed. If you're confused, look at attatched picture.

I cannot seem to find a caret position changed event on the normal richtextbox control - and if anyone can show me a custom component with this it would help me a huge amount.So my basic question is how can i replicate the formentioned function in my own VB.NET program.No code is necessary just constructive suggestions, or links to other projects would be welcome. You don't need to quote the forum rules

View 1 Replies

When Background Worker Opens Form1 / Form1 Is Not Responding

Jun 12, 2010

I have an aboutbox1 and form1..I also have a button. When I click the button it runs the backgroundworker. My background worker then opens form1.My backgroundworker doesnt just open it, it does alot of other stuff so don't ask why im doing it like that.My problem:When the background worker opens form1, form1 is not responding.

View 3 Replies

Set Forms Z Position On Screen?

Jan 28, 2010

Is there a way to set the forms Z position on the screen?

View 3 Replies

Difference Between Form1.Close & Form1.Dispose?

Oct 21, 2010

Which different abount Form1.Close and Form1.Dispose?

View 1 Replies







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