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
~3K People Reached
About Me

student

PC Specs
HP ZV6100 Athlon 64 3200+ 2GB DDR
Favorite Tags
Member Avatar for doel.jangkrik

I have problem with datatypes. When I use the text datatype on SQL Express, I get "The data types text and nvarchar are incompatible in the equal to operator." error. Wwhen I set my variables to "varchar" or "nvarchar", I don't get an error, but my update command does not …

Member Avatar for dickersonka
0
87
Member Avatar for doel.jangkrik

[code] protected void btnAdd_Click(object sender, EventArgs e) { string connectionString = "Data Source=localhost\\sqlexpress;Initial Catalog=JobApplication; Trusted_Connection=True; Integrated Security=True"; SqlConnection mySqlconn = new SqlConnection(connectionString); mySqlconn.Open(); string query = "INSERT into JobVacancy(JobName, BriefDesc, FullDesc, ClosingDate) VALUES (@jobtitle, @briefdesc, @fulldesc, @closedate)"; SqlCommand mySqlcmd = new SqlCommand(query, mySqlconn); mySqlcmd.Parameters.AddWithValue("@jobtitle",jobtitle.Text); mySqlcmd.Parameters.AddWithValue("@briefdesc", briefdesc.Text); mySqlcmd.Parameters.AddWithValue("@fulldesc", fulldesc.Text); mySqlcmd.Parameters.AddWithValue("@closedate", closingdate.Text); …

Member Avatar for ravindransrm
0
112
Member Avatar for doel.jangkrik

I am not sure if I am in the right forum. If not, I apologize. ------------------------------- I've been working on an assignment in school using Visual Studio. I want to continue at home so I downloaded Visual Studio Express, but I don't know how to transfer the files! In Eclipse, …

Member Avatar for LizR
0
3K
Member Avatar for doel.jangkrik

I am trying to make a login page using php. index.php contain form for "login" and "password" which will be check by "process.php" My intention is: if the login or password is incorrect, an alert box will pop up telling the user the case, and redirect back to index.php Here …

Member Avatar for doel.jangkrik
0
99
Member Avatar for doel.jangkrik

Anybody knows where I can find tutorial on "map zooming animation"? I plan to do a website on Bali. I would like to add an opening animation showing a world map, and then zooming in to the island of Bali. Thanks!

Member Avatar for HI2Japan
0
33
Member Avatar for doel.jangkrik

Hi, I don't know if I am in the right board or not cause I don't know if my question deals with html, css, or javascript. When I surf, sometimes I see a small "printer" icon with word "print" beside it, usually it is placed at the bottom of the …

Member Avatar for MattEvans
0
67
Member Avatar for doel.jangkrik

I am trying to make text based blackjack game. I already made : - Card class which create new card based on integer - Deck class which consists of Deck LinkedList populated by Card. I also made 2 new LinkedLists for gambler and dealer. I already managed to remove elements …

Member Avatar for Ezzaral
0
170