Forms :: How To Return Selected Values To Custom Control

Feb 17, 2011

I'm learning .NET and I've got a question about user controls. I'm using VS 2010.. I've created an user control, which contains a textbox (code), a button and a label. When you fill in the textbox, the system searches of the codes exists, if so, the description is showed in the label, else it's cleared. When you click the button, a form opens with a datagrid where you can select a code. When you select a code in the datagrid, the code textbox should be filled in with the selected code. How do you return the selected value to the custom control? I've created a public property in the custom control, but i can't access it.

View 1 Replies


ADVERTISEMENT

VS 2010 : Establish An OLEDB Connection And Return The Values From The Selected Table To A DataGridView?

Apr 16, 2010

I am unable to load the dat into the data Grid. Here is where I keep getting stuck.

dgvOleDb1 = table.Select
dgvOleDb1.DataSource = DataGridViewEditMode.EditProgrammatically
dgvOleDb1.DataSource = ds.Tables(0)

I am confused; I am using VB2010, IBM.iSeries.DB2 on an as400 V5R4. I am trying to establish an OLEDB connection, and return the values from the selected table to a DataGridView. I had one of the admin's make me file named GARBAGE, in the Rprtaccess catalog. In the past, I have been able to connect via access and an ODBC connection. My project is too big for access, and the SQL middleware we have is clunky and not user friendly. This is a program that will generate the SQL statements, specifically the WHERE: clause and populate the datagrid with the selected criteria. In essence I am making a user friendly striped down program, that has variables that are manipulated by the end user, and the rest, referenced tables and libraries are coded.

Imports System.Data.OleDb
Imports System.Exception
Public Class Form11

[code]....

View 1 Replies

Custom Control Property With DropDown Values

Jun 21, 2010

I have a custom control. I need to add a property, say, Comparison, to the control. The property should be set at design time using a dropdown. The Dropdown will have String values like '=','>','<' etc.
I tried using Enum values and working perfectly but I need to do some extra coding to convert the Enum values to the string I required. It would be great if I can get the values from the dropdown so that I can directly use the selcted value.

View 2 Replies

Create A Dropdown List Of Valid Property Values For A Custom Control

Jan 8, 2010

I've created a custom user control that has several properties. One specifies which database I want the control to access. I want to be able to present the user of the control a drop down from which he can select which database the control will interact with. How do I get the dropdown to work? I can get default values, but have yet to figure out how to get the selectable list.

View 4 Replies

Custom Grid Control Using GDI + For Windows Forms?

Nov 4, 2009

I have to design a custom "log grid" control to use in another of my projects.Up front, I am new to vb.net 2008. I have used VB6 for years and I am trying to learn how to resove the differences as I go. But I need help.

This log grid contains 96 columns and 4 rows.I tried using the TableLayoutPanel and a Panel per cell but found the control to slow to paint. That's 384 discreet controls.I am now trying a usercontrol with a panel and GDI+ to create the grid. I've created a collection for the columns and a collection for the rows. So far so good. My mouse clicks raise the correct events per cell.

I now need to indicate which column the mouse is over. This is the problem. The column must be highlighted by a vertical bar from the top of the column to the bottom. It must also be transparent. I need to see the gridlines under the highlight. I've tried using region using the following code. (myRegion is declared Private MyRegion as Region at module level for persistance)

[Code]...

View 4 Replies

Forms :: Custom Explorer With Webbrowser Control?

Dec 29, 2010

I am writing a program that will search the hard drive for particular files. Once it's done, I'd like the results to display like a folder. For example: If I looked for log files in c: and c:Windows, I would want to put those files in a 'virtual directory' and be able to manipulate them -- as you would in Windows Explorer.

The only thing I can think of that is similar is the search companion, but this software must be compatible with Windows 7.

I know it is possible to display a real folder (i.e. c:windows) in the webbrowser control, but can you have your own virtual directory and only view files that you want in it?

View 1 Replies

Create Custom Control Such As A Menu For Windows Forms Application Using Program?

Nov 14, 2011

I've search the net in order to create a custom control but nothing I find is worth looking at, The main thing I want to do is create a skinengin via DLL and import it in my vb 2010 then using or creating some sort of skin builder where I can create a full setting file which contains all the details of the customization regarding the Form(Look, Feel and the controls such as a menu), I have used Iriskin and multiple apps doing this for me and when a user installs my application they still recieve a message about buying the registered DLL file, I would like to create it completely from scratch.

View 2 Replies

Using Multiple Forms In A User Control And Passing Values Between Them?

Feb 6, 2012

I need a nudge in the right direction. I have a user control that has the main form and it calls a secondary form to gather some additional information in some cases. I need to pass the information back from the secondary form to the primary user control form so I can validate the data and save. In the secondary form, I have the following code:

Dim myFrm as new frmOperationComments
myFrm.OperationComments = [comments from form]
myFrm.OperationDate=[Date from form]

I have tried creating two public properties on the user control and setting them, I have created two properties in the user control form called OperationComments and OperationDate. I can set both of them, but when I close or hide the form and go back to the main user control form, the values for these properties or variables are not set. How do you set the values on the main form from a calling form within a user control?

View 2 Replies

Specify A Custom Icon For Display In The Toolbox Window When Create Own Custom Control?

Dec 29, 2011

how to specify a custom icon for display in the toolbox window when you create your own custom control? Something other than the dreaded "gearbox" icon.

View 2 Replies

Combobox Selected Value Return DataRowView?

Apr 8, 2011

I set combobox.datasource to a dataview item (so that it binds to a table), When I get return value from combobox.selectedvalue. Error was returned bcos it is of type"system.data.datarowview" I don't know why commonly its return value as text

The code :
If ldstList.Tables(0).Rows.Count <> 0 Then
With CbStatus

[code].....

View 5 Replies

Return Value If Radiobutton Is Selected In Detailview

Jul 17, 2011

I have a detailview, inside the detailview there are four radio button and I want to return a value when the radio button is selected. Do my code have any problem?

For Each dtv As DetailsViewRow In questionDetails.Rows
If (CType(dtv.FindControl("Option1"), RadioButton)).Checked = True Then
Label1.Text = "1"

[Code].....

View 7 Replies

Return A Value From A Custom DevExpress ButtonEdit?

Dec 27, 2011

I have a custom EditButton that shows a dialog for the user to select a value.This is used by an xtra grid as an editor for a cell.The user can click the cell editor, the dialog shows and they can select the item they want.

View 1 Replies

Return The Value Of A Property In A Custom Class?

Jun 8, 2011

I have a custom class named Location with multiple properties.

[Code]....

How can I get the value of each p.Name and return "Main St", "AnyTown" o "USA"

View 1 Replies

Return Type Of Custom MsgBox?

Oct 21, 2010

I am building my own Message Box, I have overloaded the ShowDialog function and i wish to Change the Return Type from DialogResult to my own.

View 3 Replies

VS 2005 Custom Return Value From Dialog Box?

Apr 7, 2009

i am creating my own message box. My msgbox contains 4 button , so i want to return an integer value as the button no. that was selected (i.e return 1 for button 1, 2 for btn 2...)i tried me.dialogresult=1 , but its not working

View 4 Replies

Make A Function That Will Return The Name Of Selected Report?

Mar 22, 2010

I need to make a list box with 2 reports in it. Then i need to make a function that wil return the name of selected report, or if no report is selected then return "no report selected".After i made the list box i tried to make the function in the code builder: insert procedure -> function. I tried using an IF statement to make it that when a report is selected the report shows as in a msg... but it keeps saying something is wrong with my code.

View 4 Replies

Run Through Selected Path And Return Results To Array

Nov 20, 2009

So basically, I am running through my selected path recursively and returning the results to an array.. I think.
vb.net
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim path As New FolderBrowserDialog
If path.ShowDialog = Windows.Forms.DialogResult.OK Then
Me.TextBox1.Text = path.SelectedPath
[Code] .....

I was told that to return the search to an array, I add the return toarray() at the end.
Now obviously Im not getting errors, but I am also not polling the results that are in fileslist.toarray(). I've looked at arrays quite a bit, I see their functionality if they are defined like myarray(4) with 5 declared array values... its an array with 5 value places. And to read from any one of the 5, you'd say something like msgbox(myarray(3)) to call the 3rd place in the array.

Well, as you can tell from the code, I am putting a variable amount of information into the array, How can I call that information? If I scanned a folder with 300 files, how can I call the results of that array and put them in a text file, or console, or messagebox through them? And assume I am doing it through a button click event. So, button click to read all input in the array to console or something like that.

View 5 Replies

Custom Class Constructor Needs To Be Able To Return Error

Mar 12, 2010

I'm making a class that reads a file and processes data in it, but I need some error handling. I'm giving it a constructor that takes a file location and processes that file. How can I make it so the constructor tells the program whether it found the file or not? Optimistically the program that calls this class would check for that first, but since I'm not going to be the only one that uses this class I'd like to know how to secure such a thing. It's probably bad practice to do this within the class, but I'd like to be sure it's as portable as possible.

View 6 Replies

Powershell - Return Custom Object To C# Host?

Apr 26, 2011

I have the following powershell script which loads a custom .NET DLL this contains the ScriptResult class, it is intern executed from a VB.NET app.

Add-Type -Path $myLibPath
$result = New-Object TheLibrary.ScriptResult

[code].....

View 2 Replies

VS 2005 Return Type Of Custom MsgBox?

Apr 29, 2010

I am building my own Message Box, I have overloaded the ShowDialog function and i wish to Change the Return Type from DialogResult to my own.To do so , shall i declare an Public Enum within the form and set it as the Return Type, or is there any other proper way?

View 2 Replies

Xml - Use A Custom Class To Return Data From A Web Service?

Feb 11, 2011

So I have an application that uses a webservice, On the UI side the user picks a table which sends a request across the web to my webservice to return the fields of this table. So after this request is accomplished I have, on the webservice side a series of Name,Type Pairs that I need to serialize and send back to my client. I could use a List(of String()) to send the values back but I want to use a List(of Custom_Class) instead because later I have to do this on a much larger scale and I want to learn on this simpler version.

[Code]...

View 1 Replies

Custom Control With Custom Collection Property?

Jul 11, 2011

I have an ASPX Custom Control which is supposed to load it's properties into an internal collection (defined with PersistenceMode.InnerProperty). Here's the ASPX

<cc:CustomControl runat="server">
<Queries>
<cc:QueryTypeOne ... />

[code]...

View 1 Replies

Code Fails To Return Selected Item In A ListBox?

Jan 14, 2012

In my code I have to create a listbox and a form as its container. After adding a few items through code I am not able to make code return a Selected Item when I select the item manually; it always returns the las item added. However ther is no such problem with returning the Selected Index.

View 8 Replies

DataGrid "return Value Of A Cell On Current Selected Row

Aug 27, 2009

I have a datagrid called InvoiceDataGridView, I am looking to set a variable to the value found on the 3rd textcolum of the currently selected row

View 4 Replies

Changing Text Of Custom Control Based On Text Of Another Custom Control

Jan 11, 2010

I am using custom textboxes and I need to be able to set the Text on txb1 based on the Text of txb2. I have simplied my code to the following:

Public Class customtextbox
Inherits TextBox
Public Event ControlReset()

[Code]....

So, when txb1 looses focus, if its Text is "fried", then it sets off txb2's ProcessAlert function. I had tried to change the value of txb2 Text in ProcessAlert function, but didnt work, so I tried to get it to raise an event instead, which then tries to set the Text property. However I still cant set txb2's Text property. The Text property seems to be set for the duration of the "life" of the Event handler. When I step through the forms controls within the Event handler, the changed Text value is there, but not outside of the Event handler.

View 2 Replies

If The Context Menu Is Open For A Selected Item It Should Return And Not Refresh?

Jul 13, 2010

If cmOptions.Visible Then
Return
End If

I have a refreshing process that updates a listview every ten seconds. If the context menu is open for a selected item it should return and not refresh?

View 1 Replies

ListView.SelectedItems Doesnt Return The Actual Selected Items?

Dec 10, 2010

As the title describes I tried to get the selected items and it returned an emtpy collection. The property only works once after that something goes wrong and it returns an emtpy collection. Does anyone know why? Or knows what I'm doing wrong?

View 6 Replies

Custom Function Return Type + Input As Variable Datatype?

Dec 1, 2010

I'm wondering whether its possible to have a function's return type and input arguments as a variable.

For example this function:Private Function MyFunction(ByVal argument1 As VariableType) As VariableType

[Code]...

View 6 Replies

How To Get 2 Return Values In One Function

Mar 26, 2012

i want to get two output values in one Function is't possible ?i am just using String data type and split the values.but have any other easy way to get two output values actually i want to checking a folder how many jpg files are Horizontal and vertical [code]finally i split the values with "|" character.have any other options to get two values as separate in one functions.i have no moew idea about Dictionary,

View 2 Replies

NPV In Excel And VB Return Different Values?

Nov 30, 2010

If a use the NPV() function in Excel (2010) with a discount rate of 5% and 10 cells that each contain 505,000 the resulting NPV function call "=NPV(5%,C2:C11)" returns the value of 3,899,496.

If I use the Financial.NPV() method in the Microsoft.VisualBasic namespace (in my C# application) and pass in a discount rate of 5% (as a double) and an array of 10 doubles with a value of 505,000 each, the VB function returns the much lower value of 100,999.99 (plus a few more decimals).

View 9 Replies







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