Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,749 members, 7,817,068 topics. Date: Saturday, 04 May 2024 at 02:49 AM

Beginning Microsoft C#.net - Programming (2) - Nairaland

Nairaland Forum / Science/Technology / Programming / Beginning Microsoft C#.net (3480 Views)

How Do I Get A Value From Another Form Using C#.NET 2008 / C#.net Vs Vb.net Vs F# / Post Your C#.net Questions Here (2) (3) (4)

(1) (2) (Reply) (Go Down)

Re: Beginning Microsoft C#.net by Nobody: 12:43pm On Jan 01, 2014
Learning wpf was hard because am used to code behind, but met an emulator author online who posted an MVVM tutorial for C# ,things have changed since I used c#, so many classes and even lambda functions. First bank hasn't called but just doing it because PHP no longer gets me to certain companies that pay well.
Re: Beginning Microsoft C#.net by Segibambo(m): 6:34pm On Oct 07, 2014
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...
Re: Beginning Microsoft C#.net by Nobody: 12:45am On Oct 08, 2014
Try Mtn night plan

Segibambo:
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...
Re: Beginning Microsoft C#.net by Segibambo(m): 4:53pm On Oct 10, 2014
Thanks for the advise, I have new plans.. Already. Working on a few things offline, would upload some nextweek
Re: Beginning Microsoft C#.net by Raypawer(m): 10:24am On Oct 13, 2014
Segibambo:
Thanks for the advise, I have new plans.. Already. Working on a few things offline, would upload some nextweek

bro what ever it is try to complete this tuto.. let c# no end like other languages! thumbs up!

1 Like

Re: Beginning Microsoft C#.net by Segibambo(m): 10:35am On Jan 15, 2015
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
Re: Beginning Microsoft C#.net by Segibambo(m): 2:12pm On Jan 17, 2015
For the maths guys, check out this little c# code for generating a newton raphson equation grin grin grin grin grin




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);
}

}
}
}
Re: Beginning Microsoft C#.net by Segibambo(m): 2:15pm On Jan 17, 2015
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);
}



}




}
}
Re: Beginning Microsoft C#.net by Segibambo(m): 2:20pm On Jan 17, 2015
But honestly i really want to implement a project on barcode scanners but am having a lot of troubles
Re: Beginning Microsoft C#.net by Segibambo(m): 2:26pm On Jan 17, 2015
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
Re: Beginning Microsoft C#.net by Segibambo(m): 2:45pm On Jan 19, 2015
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....
Re: Beginning Microsoft C#.net by Segibambo(m): 8:57am On Jan 20, 2015
Okay today am going to post a simple walkthrough by 3pm on how to create the video club manager database......stay tuned
Re: Beginning Microsoft C#.net by Segibambo(m): 9:34am On Jan 21, 2015
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
Re: Beginning Microsoft C#.net by Segibambo(m): 9:41am On Jan 21, 2015
The diagram shows the end product (the database diagram)

Re: Beginning Microsoft C#.net by Segibambo(m): 9:42am On Jan 21, 2015
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
Re: Beginning Microsoft C#.net by Segibambo(m): 9:43am On Jan 21, 2015
1. Right click on table
2. Click New table
3. Follow the screen shots to set the properties for the tables
Re: Beginning Microsoft C#.net by Segibambo(m): 9:45am On Jan 21, 2015
The image attached shows the customer table.
Please go ahead with setting the attributes and save the table

Re: Beginning Microsoft C#.net by Segibambo(m): 9:49am On Jan 21, 2015
The image attached shows the Video table.
Please go ahead with setting the attributes and save the table

Re: Beginning Microsoft C#.net by papydan(m): 5:12pm On Jan 21, 2015
Segibambo:
The image attached shows the Video table.
Please go ahead with setting the attributes and save the table

please can u recommend a good material u are using for .net for me.thanks in advance
Re: Beginning Microsoft C#.net by Segibambo(m): 12:03pm On Jan 22, 2015
Murach c#.net 2012
Purdum c#
Head First C#
Re: Beginning Microsoft C#.net by Sehindemi(f): 9:34am On Jan 23, 2015
Like seriously,I'm glad to av stumbled on dis thread (wish it'z b4 now tho!)..
C# has been givin me difficult times...

@Segibambo,I know it'z been a while buh I just wish U cud stil continue...
Re: Beginning Microsoft C#.net by Segibambo(m): 9:40am On Jan 24, 2015
Sehindemi:
Like seriously,I'm glad to av stumbled on dis thread (wish it'z b4 now tho!)..
C# has been givin me difficult times...

@Segibambo,I know it'z been a while 8 buh I just wish U cud stil continue...

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
Re: Beginning Microsoft C#.net by efeano: 10:59am On Jan 26, 2015
Segibambo:
Murach c#.net 2012
Purdum c#
Head First C#

Murach is nice, but for beginners, I would suggest that you start with Wrox or Apress series. They make the learning curve much easier to accomplish than the voluminous texts of the likes of Murach and Deitel.
Trust me, for a beginner, stay clear away from Murach and Deitel.
Re: Beginning Microsoft C#.net by Sehindemi(f): 10:43pm On Jan 26, 2015
Segibambo:


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
Waoh!
Really glad...

Which of d platforms are U on plz??

(1) (2) (Reply)

Creating Scratch Card Application / How Do I Pay For Apps On Google Play Store / Windows 8.1 Product Key

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 28
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.