pseudo-code

still_rookie

Registered User.
Local time
Today, 05:00
Joined
Apr 17, 2005
Messages
122
hey there..

how do i write , or atlease start writing a "pseudo-code" for this database ???

i have no freaking idea how to write it... but im writing it cuz of my "school project"

im sorry i posted this here.. but i ddnt know which other forum here would be suitable

thanks for your time guys..
 

Attachments

Last edited:
see SJ .. this is what i mean... even after all the friendly language... you dont even bother to post even after view it...
 
probably the most impatient "poster" on these boards. I'll be surprised if you get help...
 
scottfarcus said:
probably the most impatient "poster" on these boards. I'll be surprised if you get help...
Rudest and laziest also.
 
Still Rookie,

You ask how to write pseudo code for a database. This confuses me as to why you would write pseudo code for a database. I would design a database and then implement my design once I was happy with it.

If I identify things that I need to to within the database that will require using VBA then I will plan out the code, thinking about the problem, identifying my input(s), my output(s), my process, and the purpose of the code. Then I'll write a top-level description of it, working down step by step on this description, expanding as I go. Once I'm happy I've detailed all the parts of the code procedure then that's pretty much my pseudo code. I then code.

Also, for pseudo code. There's an excellent resource here.

Also, what does it matter that I've viewed your thread? I have no requirement or need to answer it. I actually downloaded your database to have a look at it but, once again, you've shot yourself in the foot. It's now joining the crap in my Recycle Bin.
 
Rudest and laziest also.
haha look who decided to talk !

anyway

tthanks for the already SEARCHED google with pseudocode searched... but .. that was the 1st thing any1 would do in todays date...

and im not writing the code because i WANT TO .. im writing it cuz i HAVE TO..
 
1. In case you hadn't noticed, it's Sunday and in the US, it is Mother's day.
2. Even during busier times people don't sit around waiting for students to ask others to do their homework.
3. Your question is far too broad to get any real help.
4. Very few student databases require any code at all let alone sufficiently complicated processes that require psuedo code. Are you confusing psuedo code with a database design document?
 
still_rookie said:
how do i write , or atlease start writing a "pseudo-code" for this databaseQUOTE]

Hi ya Rookie!

Well see in as u won't take the hint and right u questions in prop UK I thought I would give you a taste of your own medicine! This mght elp you see how diff it is for other ppl to read your posts!

B4 you + any code to your db i recommended u make a few alterations. I have looked at your db and made the following obs.


tblLogTimes >>>> Good!

Car_Details >>>> Bad!

Fuel_Details >>> Bad!

has flds named "Date" & "Time" VERY VERY BAD..................

so do Service

tbl nmaes shd start "tbl" the Xtra mean -, word "details"


qrys are nicly named

frms nms ok expt 4 the Xtra mean -, word "details"

mods
have
Option Compare Database
Option Explicit

which is Xilent


Vgood most ppl miss this an leav out the DAO
Dim db As DAO.Database

IsLoaded this is an old way of doin it theres a new way, i dunt u sit (new way) me self though cause i see it somewhere an 4got to save lnk

tbl accidents as a fld names like "Police Report" spaces are not good practice

maybe use 1 fld for both date an time?

car details tbl has fld Reg no 50 chr lng really? that would be a BIG CAR

no relationships setup?

Employee tbl Date-Of-Birth ge rid of - so DateOfBirth

same again fld names wiv spaces not good!

tblLogTimes nice!

frmCar_Details
form mod only have Option Compare need Option Explicit

Database "Not Good"
cmd btn not named Correctly

Command21_Click() shd be named sumut like

cmdSearch
or if you are migrating to VB
btnSearch

recordsouce 4 frm "frmEmployee_Details" is incorrect

recordsouce 4 frm "frmFuel_Details" is incorrect

no recs in db so tis ard to see whats hapnin man! (You ready bin told this!) I'm avin to rept others elp not Gd.....

And if you can read that load of crap you are a better man than me! So do I take it that you will take the hint? Or will you still insist on doing things your own way?
 
Last edited:
could u plz de-code that... i only understood 30% of that ... but if you look at the thread,, i have posted in FULL english... so that an improvement for you

As for Pat,

this is not my homework.. this is serious stuff... it's a project which i have to hand in by tommorow for my course work ... and im not forcing you guys to answer.. so please dont write stuff like :

Even during busier times people don't sit around waiting for students to ask others to do their homework.


Very few student databases require any code at all let alone sufficiently complicated processes that require psuedo code. Are you confusing psuedo code with a database design document?

No im not, you can check the Edexcel AS-level specifications. So, i mean, im asking you guys for a favour, not forcing you or anything...

and if you can help... it will really be appriciated..
 
>>>> could u plz de-code that...<<<< No, sorry can't, going to watch 24 now my Fav Prog.....

>>>>i only understood 30% of that ... <<<< Good! now u no ow it feels!
 

Users who are viewing this thread

Back
Top Bottom