Taking Information From One Window And Putting Into Another

Mar 31, 2009

I am developing a game and I want an options window to be used so that the user enters data into this and it carries to the main window instead of being lost. I tried it with my recent program , guess the color , but it did not work the way I thought. I thought that I could assign it to a string in a textbox to a variable and it would carry into the main window...

I want this to happen:
The user begins the program by clicking shortcut
User clicks options in the toolbar
A new window comes onto the screen

In this window the user will select a map size then click ok the verify , radiobuttons used in this example...
Back to the main screen after clicking ok
User clicks new on toolbar to begin game
Game is then playing...

Form1 <<< Form 2
game screen 3x3 button
end turn

Form 1
New game is begun
form 2 appears
3x3 button is pressed*
variable is used to change map (there is only one map for now)*
form2 closes and form1 shows
End turn is clicked

View 2 Replies


ADVERTISEMENT

DB/Reporting :: Taking Information Out Of A Database And Putting It A Textbox Or A Label?

Sep 24, 2010

I have an online database, and I have a program to insert information into database and to login using the information in the database, now I am wondering how to take something from a database and display it in a label, lets say if I log in with my username and password I want it to display my e-mail address from the database in a label, this is the code that I have for the register:

Imports MySql.Data.MySqlClient
Imports System.Data.SqlClient
Public Class Form2

[code]....

View 4 Replies

Taking The Dataset And Putting The Results In The Listview?

Mar 24, 2009

I have a form with a Listview. I have not manually added columns through the gui so I need to do this too.I have a stored procedure which returns two sets of data. One is titled url and the other occurrences in he procedure.I have bound the results to a dataset. I am having problems taking that dataset and putting the results in the listview. Here is the code I have:

[code]...

It is not creating the column headers. It is not putting both results in the view. It is only putting the first column "url" It is not putting the next row on the next line, but placing it in the next column where the occurrences should be going. It is also not resizing the columns to match the data , but keeping at the size assigned (I assume) in the columns.add section.

View 1 Replies

VS 2010 : Taking Information From A Webpage?

May 5, 2012

I need to navigate to a webpage and copy a string of information from it within the shortest possible timeframe. The site has the following written on it:This is the string that you need to apply to your algorithm.

Generated String: 61*76*83*47*69*88*

I want to copy the string from the webbrowser control and place it into a string called "GenString"

View 1 Replies

VS 2008 - Taking Information From SQL Two Table Statement

Jun 11, 2009

I got a table related to another table by orderref. I need to know what should be my SQL adapter command if I need to take some information from one table and some from another where orderref = "" or should I be making two separate SQLs?

I used to have this when I had only one table:
myStr = "select * from orders where Orderref='" + txtorderref.Text + "'"
Dim sqldaHistory As New SqlDataAdapter(myStr, nwindconn)
sqldaHistory.Fill(myDataset, "orders")

View 2 Replies

.net - Grabbing Information From Textbox And Putting It In Label?

Nov 19, 2011

I'm trying to grab information entered in textboxes. I'm trying to grab a name, an age, and a movie title from three separate textboxes, and put them into a single label like this:

"Name" is "age," her favourite film is "movie title."

after clicking the "Show" button.

I know it's a click event for the show button, but I can't quite figure out how to make the concatenated message.

View 2 Replies

Putting One .txt File Information Into Multiple Different Arrays

Apr 28, 2011

how to take a text file that was provided for my homework assignment, and put the information within it into 3 different arrays.[code]

View 2 Replies

Putting One .txt File Information Into Multiple Different Arrays?

Jun 10, 2011

i'm having issues where I can't figure out how to take a text file that was provided for my homework assignment, and put the information within it into 3 different arrays.The .txt file looks like so:tc.Amanda/Ashley have to be in the same array as well as 4/2, 166/20.This is what I've come up with for the snippet of code, and so far, it hasn't really been working right.

Dim namearray(MaxItems), rankarray1990(MaxItems), rankarray2009(MaxItems) As String
Dim Numitems As Integer
Dim sr As System.IO.StreamReader

[code].....

View 1 Replies

Taking Specific Data From A Pasted Block Of Information?

Feb 17, 2011

I am wondering how I can select and pull specific bits of data from a block of information a user pastes into a textbox. For example, the information has fixed words and is always in the same format, but the numbers relating to the words may be different. One report might say, for example, Cars: 1.176 and another may say Cars: 863. How do I pull the information about the "cars" from a the block of text with the number value even though it can be different each time?

I must note that there are many many of these scattered throughout the average report and I need to pull the values of each of them in a single click, then paste those values into a different area on the form.

View 6 Replies

VS 2008 Save Putting Information In Form At Run Time?

Jun 30, 2010

How Do i save my informaion i put in form at run time i think i need a data base but im not sure..

View 12 Replies

Show A Window Without Taking Focus?

Oct 22, 2009

to be so simple turns out to have me scratching my head.I have a program that monitors input inside of Quickbooks. When a customer is entered into a sales order my program checks my database for any special information and if it exists, opens a TopMost window to the lower third of the screen with the information showing that is special to that customer. The problem I have is that when the customer is found and the window opens, focus is taken away from Quickbooks and given to my newly opened form. Is there a way to prevent this so that the users input isn't interrupted?

With frmMessage
.Width = Screen.PrimaryScreen.WorkingArea.Width
.TopMost = True

[code]......

View 3 Replies

Putting 2005 Directly Onto Window 7 Vs Virtual XP

Dec 12, 2009

I recently put my Visual Basic 2005 onto Virtual XP ( which is a part of Windows 7). Should I put it directly onto Windows 7?

View 1 Replies

C# - Taking A PNG Screenshot Of A Window, But Keeping The Aero Transparency?

Jan 21, 2012

I stumbled upon an excellent article about taking screenshots of specific windows in .NET, and doing something with black and white color rectangles behind those windows in order to preserve the aero effect when saving a screenshot to a PNG.Well, I can't find that article anymore, mainly because crap sites and other stuff not at all associated with taking screenshots SEO'd their way into Google's results.Does anyone know how I can take a screenshot of a specific window while preserving the aero effect?

View 1 Replies

.net - Taking Photo Of Screen - Take A Picture Of The Entire Screen, Not Just The Focused Window?

Jul 6, 2011

Currently I have the following VB.NET code to make a screenshot of my desktop, but it only takes a picture of the active screen:

Public Function SaveScreen(ByVal theFile As String) As Boolean
Try
SendKeys.Send("%{PRTSC}")[code].....

The following code is how I execute the above function, if it makes any difference, which I don't think it does:

SaveScreen("C:Lexer_tracescreen.png")

Now, I need to be able to take a picture of the entire screen, not just the focused window.

View 4 Replies

Need To Copy And Paste About 50 Pieces Of Information From One Window In To Another

Sep 11, 2009

i am trying to implement a very simple program, that simply copies some text from one window in to an appropriate text box field in the other window. I need to copy and paste about 50 pieces of information from one window in to another.I suppose i can load the entire SOURCE window's text in to a text box control, and then i want to use sendkeys to populate appropriate fields in the other DESTINATION window that i want to populate with this information.My guess is that i will need some kind of windows api (Win XP) to get a handle on the appropriate text boxes in the destination window (or tab through it or something)

View 9 Replies

Popup A Dialog/window To Display All The Information?

Jul 28, 2009

Once I click a link, I want to popup a dialog/window to display all the information of products. The parent page should be disable while the popup is opened. then, I would like to be able to pass information from the popup to the parent page..

View 2 Replies

Application That Reads MDI Applications Child Window And Grabs Information From A Control

Apr 23, 2010

I am developing an application that reads an MDI applications child window and grabs the information from a control such as a textbox or listbox. I have tried to use Findwindow in order to accomplish this. I have gotten all the way to the control, but once I get there it returns blank. Can anyone point me in the right direction to accomplish this.I am able to read the window title and get the control title but when I send a message to the window it returns 0. Now I am just experimenting so I have no concrete code, but here is a snippet. [code]

View 1 Replies

Take Print Preview Of Window Form And After Taking Print Preview?

Mar 11, 2010

i want to take print preview of window form and after taking print preview want to take print of form

View 4 Replies

OLEDB Connection - Pull Information From Three Different Database Tables And Compiling The Information Onto One Screen

Jun 9, 2011

The program is currently trying to pull information from three different database tables and compiling the information onto one screen, to do this i am using three different connections and a function to handle the data at each stage. The issue is as my code hits PageLoadStage of "2" and runs the QueryDatabase() Function i am encountering an error of: "OleDB exception unhandled: No value given for one or more of the required parameters." This occurs on line 15 of the first code snippet. Can anyone explain this and/or identify any code issues if that is the cause.

[Code]...

View 8 Replies

Method Which Check If A Certain DSN Exists Then If It Does Extract Information And Use Information For Connection Purposes

Feb 2, 2011

I was looking for some stuff online, and i was looking through my reference sheets for vb.net, but it seems in the code i have found, there is declare in methods. Below is an example i am talking about. The thing is, that i dont recognize it and believe that it is an earlier version of Visual Basic ( 6 or earlier) which used it. Should i just keep looking for different code?

Public Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal hKey As Long, ByVal _
lpSubKey As String, phkResult As Long) As Long

Goal: Find information on how to implement a method which will check if a certain DSN exists, and then if it does, extract the information and use the information for connection purposes.

View 2 Replies

Able To Stop User From Entering Other Information Until Enter Right Information In The Textbox

May 24, 2012

I have a text box where i am entering numbers of double datatype andon the Keytdown event of the textbox some checks take pace and in certain circumstances I want to be able to stop the user from entering other information until they enter the right information in the textbox (where it says right here) . now when I say exit sub the textbox somehow loses focus . but this is not how I want it to be I want the textbox to remain with the focus so the user can change the information . How can i go about this. And the other thing is why is my txtDestPayRate1.Focus() just befor the exit sub not working?

Private Sub txtDestPayRate1_KeyDown1(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles txtDestPayRate1.KeyDown

If e.KeyCode = Keys.Enter Then

[CODE]...

View 2 Replies

Possble To Get All Printer Information 'with Click Of A Button' To Print All Information

Dec 3, 2009

I am designing a backup/restore utility for work.atm i have been able to populate field for PC name, IP address, MAC address, number of printers installed on the PC but i am wondering is it possble to get all the printer information 'with the click of a button' to print all information like the prnmngr.vbs script down.I am able to run a batch file but i wanna get it to go from that app or even embed to batch file to the app and run it form there .

View 4 Replies

Changes Not Taking Affect

Oct 23, 2008

I'm using visual studio 2008 and creating a Windows For Application.

I'm almost completed my little application and what I've discovered just recently is that any change I made is not taking affect.

What I mean is if I change the display name of a button or insert a msgbox popup, it doesnt make it to the build when I run it. There are no errorswarnings.

View 3 Replies

Taking Apart A String

Dec 6, 2009

I have a long string that I need to take apart two values, and add them into another string.

View 3 Replies

PrintDocument Taking Way Too Long?

Dec 13, 2009

The problem I'm facing is that PrintForm has a shoddy quality while getting the printouts and PrintDocument takes way too long to get on receipt printed (Almost 5-10 Seconds!)I'm either looking for an alternative for PrintDocument or somehow make the PrintDocument run faster

Dim
printFont As
New

[code].....

View 2 Replies

Taking A Name And Separating It In Input Box

Oct 26, 2010

im trying to get a name entry from an input box to show up in two separate places on my project, ie first and last name, but i either get nothing or the same text for both labels.[code]

View 6 Replies

Taking A Picture With A Webcam?

May 15, 2012

I am writing an app to take ID pictures using a webcam, I need a PictureBox to display a live image of the person sitting infront of the webcam in which I then need a captured picture to desplay as soon as a Button is clicked.

I don't even know where to start.

1. How do I get the PictureBox to comunicate with the webcam?

2. I also will need to crop and resize the picture and then print it, but this we can diskus later.

View 1 Replies

Taking A Value Of An Attribute From A Xml Node?

Mar 25, 2010

I have created an xml file and i would like to now extract data from it.

Is there a function within vb.net that reads xml and takes out all the attributes with a certain name? For example to withdraw all the authors names from an xml file about books?

View 4 Replies

Taking Data From Arrays And Using It

Oct 13, 2009

But like always I have a question. I need to take the data that I have stored in arrays and use it. But how do I do that? What I need is to take numbers stored in the arrays and add and subtract them and put them in the appropriate array , like this:

[Code]...

View 1 Replies

VS 2008 ReadAllLines Taking ONLY Chr(13) As EOL?

Sep 11, 2010

Is there a way to use ReadAllLines to read in a text file that contains some Chr(10) (linefeeds) but uses ONLY the Chr(13) (carriage return) as the true end-of-line?What I mean is, DON'T treat a Chr(10) as the EOL. ONLY treat a Chr(13) as the EOL.Obviously I could just read in the whole file as binary and then split it into lines by scanning for Chr(13), but I just wondered whether or not there's a setting in VB.NET to set the EOL character so I didn't have to do that.

View 4 Replies







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