TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Steven
NA
3
0
calling getpaymentamount into my gui.
Feb 22 2008 12:13 AM
Well it is apparent i am new to c# cause i am having a problem calling a GetPaymentAmount into my GUI.
This is my interface:
namespace Invoice
{
public interface IPaytable
{
decimal GetPaymentAmount();
}
}
This is my method
public decimal GetPaymentAmount()
{
return priceper * quantity;
}
and i am completely lost as how to make it to where i can display the information from the getpaymentamount into my Results textbox as such:
restxtbx.Text += "Total for this transaction is :$" +
WHAT GOES HERE?
;
Reply
Answers (
2
)
Question about Inheritence in C#
Edit the values of DataGrid Cell