Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for DioRani

Hi guys, i want to call a data from a database.. here is my code [CODE] string selectuser = "Dior"; string dbconnection = Application.StartupPath + "\\Database1.mdf"; SqlConnection conn = new SqlConnection(dbconnection); conn.Open(); SqlCommand command = new SqlCommand("select username, nick from [user] where username=@user", conn); command.Parameters.AddWithValue("username", selectuser); SqlDataReader reader = command.ExecuteReader();[/CODE] …

Member Avatar for crishjeny
0
121
Member Avatar for DioRani

Hey guys, I want to ask whether in C# I can take a values from a textbox words like in C++ console.readline.. Example : user : What is Apple application will take the last word of it which is apple. and will reply apps: Apple is a fruit is it …

Member Avatar for Mitja Bonca
0
156
Member Avatar for DioRani

Hey guys.. is it possible if i wanna save a textbox value in a variable using timer? for example string text when timer interval is 10s { textbox1.text = text textbox1.text = newline } when timer2 interval is 15s { textbox1.text = "" } or something like that.. its like …

0
44
Member Avatar for DioRani

Hi everyone, i have some question regarding my project.. I am currently work on a MP3 player project.. And i came out with a problem.. Here is my code [code] private void mediaPlayer_PlayStateChange_1(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e) { if (e.newState == 3) { double dur = mediaPlayer.currentMedia.duration; currentSongProgress.Maximum = (int)dur; } …

Member Avatar for Ketsuekiame
0
1K
Member Avatar for DioRani

Okay.. Currently i already had this code for my registration form [CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.Sql; using System.Data.SqlClient; namespace Thesis { public partial class Registration : Form { Form formParent = null; public Registration(Form par) { …

Member Avatar for muzikhera
0
159
Member Avatar for DioRani

i am currently work on mp3 player application, but every time the song ended, this error always pops out.. Value of '282' is not valid for 'Value'. 'Value' should be between 'Minimum' and 'Maximum'. Parameter name: Value here's my code: [CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using …

Member Avatar for Momerath
0
578
Member Avatar for DioRani

I am currently working a registration project and here is my code.. [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.Sql; using System.Data.SqlClient; namespace Thesis { public partial class Registration : Form { Form formParent = null; public Registration(Form par) { …

Member Avatar for DioRani
0
116