Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for iwishimgoodasu

I do not know what seems the problem in my code. I want to add the data to my database (using windows form) but whenever I refresh my database, no updates were observed. Thank you for your help. Here is my code: public void btnSave_Click(object sender, EventArgs e) { string …

Member Avatar for iwishimgoodasu
0
235
Member Avatar for iwishimgoodasu

I created a stored Proc: Create PRocedure InsertTBL_Supplier ( @SupplierNumber nvarchar(50), @SupplierName nvarchar(50), @Address nvarchar(50), @ContactNumber nvarchar(50), @ContactPerson nvarchar(50) ) AS BEGIN INSERT INTO TBL_Supplier (SupplierNumber, SupplierName , Address, ContactNumber , ContactPerson ) VALUES ('10000','JenRoses Shop','Pasig City','09159675567','Dara Lim'), ('20000','Lawren FlowerFave','Makati City','5564818','Aiden Lee'), ('30000','FLowers&Scents','Marikina City','7280823','Dennis Park'), ('40000','Pretty Flower Spot','Pasay City','09276543789','Joshua Tan'), …

Member Avatar for pritaeas
0
119
Member Avatar for iwishimgoodasu

//I have this code //In my Form1 I have textbox and a button namespace Passing { public partial class Form1 : Form { Class1 class1 = new Class1(); public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { class1.Name = textBox1.Text; Form2 form2 = new Form2(); form2.Show(); } …

Member Avatar for nmaillet
0
254
Member Avatar for iwishimgoodasu

My professor asked us to make out own Web site. He said we cn do whatever kind of Web site we want to make. My problem is, with my limited knowledge in Web designing I really don't know what type of Web Site I can make.I'm afraid I can't make …

Member Avatar for dereksy
0
142
Member Avatar for polystudent

Hi All, Need expert to teach me how to solve the below C++ questions. Thanks (a) void Triangle (int, char) The function takes in two arguments, the integer representing the base and height; and the character representing either original or mirror. These values are use to print the triangle. For …

Member Avatar for pseudorandom21
0
117
Member Avatar for iwishimgoodasu

(C++)I need to create a program that would input year and month in number. Display the year and the number of days in that month. The hard part is I need to include the leap year e.g. if the input year is 2000 and the input month is 2 (which …

Member Avatar for iwishimgoodasu
0
164