473,568 Members | 2,964 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.NET to C# (CurrencyManage r related) ???

Greetings,
I have a VB.NET program that I am trying to convert to C# (my office
decided that we are going to use C# from now on).

I've only been working with C# for about a month now, so this has been
quite the learning experience for me.

The following code is from my VB.NET program and it selects the Call Number
from my datagrid and then uses that information to populate another form.

I cannot seem to find the appropriate adjustment for the CurrencyManager
to reproduce the effect in C#.

Could someone please help me?

Thanks,
Kris
Private Sub btnSelect_Click (ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnSelect.Click
Dim cm As CurrencyManager = CType(Me.Bindin gContext
(dgdContactInfo .DataSource, dgdContactInfo. DataMember), CurrencyManager )

' Retrieve the default DataView of the DataGrid
Dim dv As DataView = CType(cm.List, DataView)

Dim dr As DataRow
dr = dv.Item(cm.Posi tion).Row
strCallNumber = dr("Call Number")
myForm.CallNumb er = strCallNumber
myForm.Show()
Me.Hide()
End Sub

--
Message posted via http://www.dotnetmonster.com
Nov 16 '05 #1
4 2801
Well "Me" in VB = "this" in C#, both are implied by context and so including
them is a matter of preference or clarity.

CType() in VB doesn't have an exact equivalent in C#, however, you could
have as easily used DirectCast() which is somewhat faster than CType()
anyway and that is exactly equivalent to C# casts:

Dim cm As Currency Manager =
DirectCast(Bind ingContext(dgdC ontactInfo.Data Source,dgdConta ctInfo.DataMemb er),CurrencyMan ager)

Converting this to C# you would get:

Currency Manager cm =
(CurrencyManage r)BindingContex t(dgdContactInf o.DataSource,dg dContactInfo.Da taMember)

Later on, you can substitute the indexer for the Item property:

dr = dv[cm.Position].Row;

Hope this helps.

--Bob

"Kris Bethea via DotNetMonster.c om" <fo***@DotNetMo nster.com> wrote in
message news:66******** *************** *******@DotNetM onster.com...
Greetings,
I have a VB.NET program that I am trying to convert to C# (my office
decided that we are going to use C# from now on).

I've only been working with C# for about a month now, so this has been
quite the learning experience for me.

The following code is from my VB.NET program and it selects the Call
Number
from my datagrid and then uses that information to populate another form.

I cannot seem to find the appropriate adjustment for the CurrencyManager
to reproduce the effect in C#.

Could someone please help me?

Thanks,
Kris
Private Sub btnSelect_Click (ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnSelect.Click
Dim cm As CurrencyManager = CType(Me.Bindin gContext
(dgdContactInfo .DataSource, dgdContactInfo. DataMember), CurrencyManager )

' Retrieve the default DataView of the DataGrid
Dim dv As DataView = CType(cm.List, DataView)

Dim dr As DataRow
dr = dv.Item(cm.Posi tion).Row
strCallNumber = dr("Call Number")
myForm.CallNumb er = strCallNumber
myForm.Show()
Me.Hide()
End Sub

--
Message posted via http://www.dotnetmonster.com

Nov 16 '05 #2
The following was obtained with our Instant C# VB.NET to C# converter.
Our Demo Edition is available at www.instantcsharp.com and is fully supported.

//TODO: INSTANT C# TODO TASK: Insert the following converted event handlers
at the end of the 'InitializeComp onent' method for forms or into a
constructor for other classes:
btnSelect.Click += new System.EventHan dler(btnSelect_ Click);

private void btnSelect_Click (object sender, System.EventArg s e)
{
CurrencyManager cm =
(CurrencyManage r)(this.Binding Context[dgdContactInfo. DataSource,
dgdContactInfo. DataMember]);

// Retrieve the default DataView of the DataGrid
DataView dv = (DataView)(cm.L ist);

DataRow dr = null;
dr = dv[cm.Position].Row;
strCallNumber = dr["Call Number"];
myForm.CallNumb er = strCallNumber;
myForm.Show();
this.Hide();
}
Regards,
David Anton
www.tangiblesoftwaresolutions.com
Home of the Instant C# VB.NET to C# converter and the Instant VB C# to
VB.NET converter

"Kris Bethea via DotNetMonster.c om" wrote:
Greetings,
I have a VB.NET program that I am trying to convert to C# (my office
decided that we are going to use C# from now on).

I've only been working with C# for about a month now, so this has been
quite the learning experience for me.

The following code is from my VB.NET program and it selects the Call Number
from my datagrid and then uses that information to populate another form.

I cannot seem to find the appropriate adjustment for the CurrencyManager
to reproduce the effect in C#.

Could someone please help me?

Thanks,
Kris
Private Sub btnSelect_Click (ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnSelect.Click
Dim cm As CurrencyManager = CType(Me.Bindin gContext
(dgdContactInfo .DataSource, dgdContactInfo. DataMember), CurrencyManager )

' Retrieve the default DataView of the DataGrid
Dim dv As DataView = CType(cm.List, DataView)

Dim dr As DataRow
dr = dv.Item(cm.Posi tion).Row
strCallNumber = dr("Call Number")
myForm.CallNumb er = strCallNumber
myForm.Show()
Me.Hide()
End Sub

--
Message posted via http://www.dotnetmonster.com

Nov 16 '05 #3
Thanks! That was a great help!

Kris

--
Message posted via http://www.dotnetmonster.com
Nov 16 '05 #4
That's an awesome resource!
Thanks for your help! :)

Kris

--
Message posted via http://www.dotnetmonster.com
Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2047
by: Pete Davis | last post by:
I have written a custom databound grid control that we've been using successfully for months, but one of our developers has just run into a problem that I can't figure out. The code for setting it up is as follows: DataSet dataSet = new DataSet( "TestSet" ); DataTable tableParent = dataSet.Tables.Add( "TableParent" );...
2
7797
by: web1110 | last post by:
I created a class derived from a DataGridTextBoxColumn. I have it working through looking at various examples on the net. To update the underlying DataGrid, I had to overload the Edit method which provided the CurrencyManager and row number required for SetColumnAtRow method. My question is, exactly is the CurrencyManager? I've used...
1
2531
by: Christopher Weaver | last post by:
When I add a row to my DataTable my CurrencyManager doesn't know it's there. I have a ComboBox and a CurrencyManager bound to a DataTable such that a selection within the ComboBox causes all controls bound to that DataTable to display the appropriate row. Fine. But when I do this: dsTaskActivities.Tables.Rows.Add(NewTaskRow); the...
10
1868
by: D | last post by:
hi I have a form with 2 datagrids showing related table data in a master / child or order / order details type relationship. I would like to auto select the row in the order details table which contains the highest priced item. My thoughts were to get the currency manager from the orderdetails table and iterate thru each row and keep track...
4
4116
by: Jeremy | last post by:
I have a dataset containing 2 tables. A is the master table, B is a lookup table. There is a combobox bound to B, which updates a value in a FK field in A. my currencymanager is created thus: cmB= CType(frm.BindingContext(DsClient1.Tables("B")), CurrencyManager) The cbx has these settings: cbx.valuemember=b.primarykey...
2
3248
by: Rich | last post by:
Hello, I have a datagrid (dgr1) on a form and I'm trying to bind a currencyManager Object (cma) to it and print the current row position. But all I get for cma.Position is 0, 0, 0 for any row in dgr1. dgr1 populates correctly and when I first set cma - it shows the correct number of rows in the table (tbl1). In my case there are 14 rows...
3
4393
by: Brian Richardson | last post by:
Hi, Please can anyone kindly offer some suggestions as to why the CurrencyManager might not refresh. I am using the CurrencyManager to navigate through a DataView. I am aware that there is an issue when adding a new record with using bound CheckBoxes ('http://support.microsoft.com/default.aspx?scid=kb;en-us;326440'). Due to this...
2
11460
by: Rich | last post by:
Hello, Following an example at http://www.vb-tips.com/dbpages.aspx?IA=DG (by Cor Lightert and Ken Tucker) on binding a dataRelation to a Datagridview for sqlClient, I was able to view rows in datagridview2 that corresponded to a selected row in datagridview1. Great article/example.
0
3839
by: polocar | last post by:
Hi, I have noticed a strange behaviour of CurrencyManager objects in C# (I use Visual Studio 2005 Professional Edition). Suppose that you have a SQL Server database with 2 tables called "Cities" and "Persons", and that: "Cities" has 2 fields called "IDCity" and "NameCity" "Persons" has 3 fields called "IDPerson", "NamePerson" and...
0
7693
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7604
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7916
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8117
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7660
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7962
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6275
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
1207
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
932
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.