Kategorier: Alle - databases - configuration - inheritance - polymorphism

af Gary Sibbitts 10 år siden

369

IS253 Big Kahuna

Exploring various programming concepts, this text delves into database management with a focus on MySQL, emphasizing CRUD functionality. It also covers essential software development principles, including configuration settings, user-defined classes, and game resource management.

IS253 Big Kahuna

IS253 Big Kahuna

game resources

risks
shift binding from compile-time to run-time
users
state/statistics
contexts
tic-tac-toe
PaperRockScissors
configuration
assets
multimedia

video

pictures

size

resolution

sound

analog

text based

persistence

databases

I will be looking for information on databases
-Clayton Forsman

Clayton Forsman

The two links in my comment are for mysql database usage. The website I worked for used mysql.

http://dev.mysql.com/doc/refman/5.0/en/introduction.html

http://www.codeproject.com/Articles/690207/Csharp-Project-on-Database-for-Beginners

CRUD functionality

Joe Hight,
I will search for information on crud.

Simple crud example

Program Settings

I have added an example that shows how to access project settings. See the RectangleConsole project in the attached zipped solution.

end-user considerations

localization
accessibility
user assistance

Windows Presentation Framework(WPF)

custom controls
CustomPlayerChoiceControl

access resources to represent player choice options

provide user with ability to select pictures by group

RPS as text

RPS as objects

RPS as hands

linked to current game choices

radio buttons
pictureboxes

Custom Picture Box

buttons

create custom controls video

toggleButton

This is code for a simple toggle button, with a class.

Comes from attached Akadia website under "custom controls"

textboxes

Custom Textbox tutorial

Haven't been able to get this to work yet. The .dll compiles but doesn't work in a test project.

labels
graphics

How to put some graphics on WPF.

 

 

Joe Hight

Joe Hight,

I will look into WPF graphics.

There is space for a web link to the right of the note with a active link. The Icon is not showing.

"xaml 3d" Video

reuse

Data by reference -- Sean Dobran

Referencing and Dereferencing usable data across fields.

CS50 lecture notes for pointers and dereferencing in C (A good explanation of what happens when you dereference data):
http://d2o9nyf4hwsci4.cloudfront.net/2013/fall/lectures/4/w/notes4w/notes4w.html

abstract clases
interfaces
examples
generics
Subtopic
collections
inheritance
polymorphism

user-defined classes

extending
extension methods
overloading
constructors
operators

Overloading example

Here's an example of operator overloading

methods

Overloading methods

Here's something on overloading a simple method.

develop/implement
Enum Workaround
design
cohesion
coupling
encapsulation

Kanchan