Segibambo's Posts
Nairaland Forum › Segibambo's Profile › Segibambo's Posts
Sehindemi:I'd continue for sure, my next posting would be soon but if you have other contacts you can talk to me anytime. i'd be glad to help |
Murach c#.net 2012 Purdum c# Head First C# |
The image attached shows the Video table. Please go ahead with setting the attributes and save the table
|
The image attached shows the customer table. Please go ahead with setting the attributes and save the table
|
1. Right click on table 2. Click New table 3. Follow the screen shots to set the properties for the tables |
1. Open sql server management studio 2 connect to server 3. right click on Databases 4. Create new database 5.Enter database name 6.Click Ok |
The diagram shows the end product (the database diagram)
|
Please follow this tutorial The first we need to do is to create a database using the Microsoft sqlserver Below is the finished database diagram we intend building from the scratch |
Okay today am going to post a simple walkthrough by 3pm on how to create the video club manager database......stay tuned |
Ok now i think i have a stable internet plan...Our tutorial here would need 2 tools, visual studio and sql server as we would be developing an application that communicates with a database.....first i'd post on the server side development i.e building a simple database with stored procedures and the likes of them. I need about 5 people to notify their readiness bed=fore i begin this tutorial.... |
Am thinking about posting one of my database project on video club manager but i honestly do not promise a walkthrough but am going to drop all the source files as i might not have the time to so please bare with me |
But honestly i really want to implement a project on barcode scanners but am having a lot of troubles |
Okay this are code fragments i have written over the semester , well below depicts an iterative formular implementation in c# using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Iterative_Method { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { double[] eqn = new double[100]; // eqn[0] = 1.5; eqn[0] = 1.0; try { for (int k = 0; k <= 90; k++) { eqn[k + 1] = (eqn[k] + 1) / (Math.Pow(eqn[k], 2.0 - eqn[k])); if (Math.Abs(eqn[k + 1] - eqn[k]) < 0.000006) { break; } listBox1.Items.Add(eqn[k]); } } catch(IndexOutOfRangeException ex) { MessageBox.Show(ex.Message); } catch (InsufficientMemoryException ex) { MessageBox.Show(ex.Message); } } } } |
For the maths guys, check out this little c# code for generating a newton raphson equation ![]() using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace newton_raphson_method { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { double [] eqn = new double[15]; eqn[0] = 1.5; try { for (int i = 0; i <= 10; i++) { eqn[i + 1] = eqn[i] - (Math.Cos(eqn[i]) - eqn[i] * Math.Exp(eqn[i])) / (-Math.Sin(eqn[i]) - (eqn[i] * Math.Exp(eqn[i]) + Math.Exp(eqn[i]))); listBox1.Items.Add( eqn[i]); } } catch(IndexOutOfRangeException ex) { MessageBox.Show(ex.GetType().ToString(), ex.Message); } } } } |
So now i am officially on break and i'd like to start posting source codes for the mini projects i have worked on over the semester but before i proceed, i would to advertise myself If you're a computer science student and you need someone to help complete your project for an amount, you can send me a personal message for me to drop my number or just reply and i'd get back to you well recently,i decided to look into the qr barcodes (generating it and reading it) .So what do you guys know about qr codes |
Please confirm your news source before pasting rubbish, the said lady was shot outside the school by robbers who trailed her from the bank where she went to withdraw a large amount of money,she was robbed and then shot on her stomach by the robbers. Lasu student. |
Thanks for the advise, I have new plans.. Already. Working on a few things offline, would upload some nextweek |
One thing that tries hard to kill my passion and stops this thread is internet.... Only if I can get stable internet!!! Can someone help with that! Let's learn this c# together... |
sleeknick:Thank you,hope she is based in Lagos. |
Am a computer science student of lagos state university 300 level. I need help in securing a software firm where I can carry out my 3 month siwes I.t training. I can write c#.net and also sql to be specific, microsoft sql server. I am also fast learner and also good in the analytical aspects of software development. |
Please how can i swap my compaq presario cq57 with maybe a dell with an icore 5 or 7 |
unyours: Segibambo, when i said positioning myself, i mean position my mind to receive what others are receiving. So did you feel a wind blowing you down or what?When you meant your mind? May I ask you something first before we proceed |
From your perception, if I was quick to judge..I would classify you as an ordinary church goer. From personal experience,I used to wonder about it too. I was not the kind of person that gets on the floor when anointing moves until the day I had an encounter and found myself on the floor..its not about positioning your self physically..God looks at heart..He likes to dwell in people who have opened up to him,whose hearts have been set to receive. |
I also had this sometime back when I was in secondary school. it's called ACNE[very painful]..it's more like an advance occurrence of pimples,from my own experience, the more you continually apply various forms of chemical embodied in creams, the more you would worsen the situation.Also you would need to see a doctor and their are certain types of food you need to abstain from eg milk, fried foods and food rich in fat..Stop popping the pimples too..u are obviously having a lot of black heads due to ur constant popping and rubbing of your hands on your face.please stop all those ...do see a specialist eg dermatologist or a clinical doctor soon in order to get proper treatment |
pc guru: Windows Servicetaken the test? |
Its been a while i posted here Hope you guys are not annoyed, i have been quite busy doing some learning myself and also because i format my system and didn't copy a database i created, i'v been busy creating it from scratch with all the stored procedures and ish so getting off from where we stopped on creating a simple calculator, i would like to give an outline of four topics we would follow for the next two weeks, i would be using visual studio 2010 this time, please stay tuned and remember, never stop learning and relearning. |
Tobi you need tutoring from me |
pc guru: Funny thing is am supposed to recover C# and the Whole .NET for a First Bank Test ? been a while i touched .NETwhat are the probable contents of the test? |
I am open to questions If you have any problems, do ask On Tuesday next-week we would treat validation of input entry for this simple calculator project |