-
Began Watching php send payment to another user
Hello guys. i am trying to create a php + ajax form that enables the user to make a transfer from their account to another. is this correct what i … -
Replied To a Post in php send payment to another user
Hi snitcher, Have you tried to run your code? Ok, let's talk about javascript portion of your code: // javascript function sendpayment(){ var payment = _("SendPayment").value; var touser =_("ToUser".value; if … -
Replied To a Post in How to get user writing input string in openGl?
Sorry buddy, you lost me here. @.@ You want to display a text and a button and yet you don't want to open a window? How is that possible? You … -
Replied To a Post in Making a file open with my application
Glad that you found it helpfull. One last advice.. **use standards**. Unless standards don't meet your requirements (and I highly doubt that) you SHOULD use it. I recommend you use … -
Replied To a Post in Making a file open with my application
Good news! hmmm, let's see.. how do you open the file in your app? Can you share some code here? An example of reading a file line by line and … -
Began Watching How to get user writing input string in openGl?
I need the way for allow users input text by writing , while users input text they see what's they input when user press enter jump for next line and … -
Replied To a Post in How to get user writing input string in openGl?
Hi, It has been long time since I used OpenGL, but I'll try to help. First, if you know how to intilialize OpenGL properly try the following approach.. otherwise wait … -
Began Watching Making a file open with my application
So I'm making a custom text editor for web development. I am planning to unclude the use of projects to group common files together, however im having a hard time … -
Replied To a Post in Making a file open with my application
Hi, Can you be more specific were exactly you're struggling? I've just looked into TreeViewer and I found it straightforward, here is what I've tried: string[] files = new []{"file … -
Began Watching DataGridViewComboBoxColumn cell value returning null value
I am trying to get a value from a DataGridViewComboBoxColumn cell that is named "Item". When I run the program and make a selection from the combobox, string itemValue always … -
Replied To a Post in DataGridViewComboBoxColumn cell value returning null value
Hi, You need to use **EditedFormattedValue** instead of **FormattedValue**. Private void LastColumnComboSelectionChanged(object sender, EventArgs e) { string itemValue = GridSellProducts.Rows[GridSellProducts.CurrentCell.RowIndex].Cells["Item"].EditedFormattedValue.ToString(); // more code <--- null value shown here always } … -
Began Watching Trouble saving to xml file
I have been working with xml for the first time and have gotten stuck with the saving/ loading aspect of it. I want the information from the text boxes to … -
Replied To a Post in Trouble saving to xml file
Hi, Most likely, the form is not closing when you hit "X" button because you get an exception inside **Form1_FormClosing**. I suggest you call **Form1_FormClosing** method explicitly while the app …
The End.