This is for my friend. He is a HRM student and was assigned to demo on how to operate a Simple Hotel front-desk system.
I've searched on the net to help him, but all of those freeware softwares are difficult to handle and manipulate.....
My last option is to create a program for him.
Easy to deploy and no hustle to maintain version.
First version is to implement it through "Pure file handling"
Second is to use a database.
(Adding to my experience while learning java)
Im now starting @ first version
Im now designing this program which i call it Simple Hotel Front-Desk System.
There are 17 values that should be handled in every guest's data
eg. complete guest's name, contact numbers etc.....
What came first on my mind is to implement them with few arrays
The purpose is to manipulate them carefully ( an experiment )
I doubt about the other options to reimplement it in a safer handling.
Can you advice me experts? about how to implement it more safer?
Maybe arraylist, but for me it is more heavy to implement when it comes to updating those values inside of it if the primary value ( primary key in database ) will be changed in position
This is for the first version, "pure file handling"
Im waiting for your replies,
sukatoa
41 3118
Never, ever go the route of those silly arrays: -
String[] firstName;
-
String[] lastName;
-
Java compilers should forbid such code and wipe your harddisk for it. Better think
of your data model a bit more, especially when you want to take the route of a
RDBMS for storage purposes. What comes to mind is: -
interface PK extends Comparable<PK> { .. }
-
...
-
interface Record {
-
PK getPrimaryKey();
-
}
-
...
-
class Table extends HashMap<PK, Record> { ... }
-
but never go for that silly arrays route.
kind regards,
Jos
Never, ever go the route of those silly arrays: -
String[] firstName;
-
String[] lastName;
-
Java compilers should forbid such code and wipe your harddisk for it. Better think
of your data model a bit more, especially when you want to take the route of a
RDBMS for storage purposes. What comes to mind is: -
interface PK extends Comparable<PK> { .. }
-
...
-
interface Record {
-
PK getPrimaryKey();
-
}
-
...
-
class Table extends HashMap<PK, Record> { ... }
-
but never go for that silly arrays route.
kind regards,
Jos
Ok, im on my way to hashmap..... Thank you....
This program's max data set input is limited to 100.
It is ok if i implement a class that uses Collator setting it into PRIMARY strength to compare all of those datas?
(For Black List Search Feature purposes)
Im afraid im starting again a bad idea... hope not.....
Thanks for your reply Jos,
It really helps
Ok, im on my way to hashmap..... Thank you....
This program's max data set input is limited to 100.
It is ok if i implement a class that uses Collator setting it into PRIMARY strength to compare all of those datas?
(For Black List Search Feature purposes)
Im afraid im starting again a bad idea... hope not.....
Thanks for your reply Jos,
It really helps
There's a small hotel just a few blocks away from me; it has 120 rooms so I can't
sell them your software then? How silly ...
Most of the time ideas aren't bad, it's the implementations that are extremely bad.
Better think about the requirements a bit more and think about your object model
first before you start thinking about nifty data structures.
kind regards,
Jos
There's a small hotel just a few blocks away from me; it has 120 rooms so I can't
sell them your software then? How silly ...
Most of the time ideas aren't bad, it's the implementations that are extremely bad.
Better think about the requirements a bit more and think about your object model
first before you start thinking about nifty data structures.
kind regards,
Jos
Yah, i got it, thanks again...
Here is what i've done so far on the experiment - import java.util.HashMap;
-
import java.util.Iterator;
-
import java.util.ArrayList;
-
import java.util.Scanner;
-
import java.util.Random;
-
-
public class HashMapTest{
-
-
HashMap<String,ArrayList> table = new HashMap<String,ArrayList>();
-
ArrayList<String> list;
-
Scanner scan = new Scanner(System.in);
-
int key = 0; //UniqueKey
-
Random r = new Random();
-
-
public static void main(String sukatoa[]){
-
new HashMapTest();
-
}
-
-
public HashMapTest(){
-
while(true){
-
try{
-
System.out.print("[1]Add\n[2]Show\n\n[3]Exit ");
-
int t = Integer.valueOf(scan.next());
-
switch(t){
-
case 1:add();break;
-
case 2:show();break;
-
case 3:scan.close();System.gc();System.exit(0);
-
default: continue;
-
}
-
}catch(Exception e){
-
System.out.println("\nWrong input\n\n\n");
-
}System.gc();
-
}
-
}
-
-
void add(){
-
list = new ArrayList<String>();
-
list.add("Surname: ".concat(getRandomValue()));
-
list.add("Firstname: ".concat(getRandomValue()));
-
list.add("MiddleName: ".concat(getRandomValue()));
-
list.add("Address: ".concat(getRandomValue()));
-
list.add("CompanyAddress: ".concat(getRandomValue()));
-
list.add("Landline: ".concat(getRandomValue()));
-
list.add("Mobile: ".concat(getRandomValue()));
-
list.add("Fax: ".concat(getRandomValue()));
-
list.add("Email: ".concat(getRandomValue()));
-
list.add("Room Type: ".concat(getRandomValue()));
-
list.add("Room Number: ".concat(getRandomValue()));
-
list.add("Additional Guests: ".concat(getRandomValue()));
-
list.add("Their Names: ".concat(getRandomValue()));
-
list.add("Payment Type: ".concat(getRandomValue()));
-
list.add("Arrival & Departure: ".concat(getRandomValue()));
-
list.add("Billing Arrangement: ".concat(getRandomValue()));
-
list.add("Desk Clerk: ".concat(getRandomValue()));
-
table.put(getUniqueKey(),list);
-
key++;
-
}
-
-
void show(){
-
Iterator i = table.keySet().iterator();
-
while(i.hasNext()){
-
String t = (String)i.next();
-
System.out.println("\n\n"+t);
-
for(Object entry : table.get(t)){
-
System.out.println("\t-"+entry);
-
}
-
}
-
}
-
-
String getUniqueKey(){
-
return String.valueOf(key);
-
}
-
-
String getRandomValue(){
-
return String.valueOf(r.nextInt(500));
-
}
-
}
-
}
since the returned elements are not in particular order. (iterator)
I have no idea how to implement like
(unless this set is an instance of some class that provides a guarantee). this comes from the API iterator method on Set
Can you advice me how to deal about it?
it should be 0 1 2 3 4 5 6 7 8 etc....
Is there a safer way to sort this first after showing the output?
May idea is,
to get all of those key, store in an array... sort,
and iterate to get the list by using
table.get(key) where key is from an sorted array.....
waiting for you replies,
sukatoa
Have a look at TreeSet.
Also read the initializers article for where to put all those add calls.
Have a look at TreeSet.
Also read the initializers article for where to put all those add calls.
Copy that,
Thanks for the reply.
sukatoa
I still think this is a silly array solution in disguise. Those data members (first name,
last name, payment etc.) belong in another class object, say, Reservation.
Such a Reservation object should be able to cough up a unique primary key
and it should override equals, hashCode and be Comparable at least; oh,
before I forget make the Reservation class implement the Serializable object.
Also don't, I repeat don't stick all that input jam in the Reservation class and
especially not in its constructor. This is intended as positive criticism but don't
mix all that I/O stuff in your classes. Separate that stuff into a ReservationFactory
class and the Reservation class itself.
As I wrote: ideas are not that bad; implementations are bad and yours' is going
to be one if you don't take care.
kind regards,
Jos
Such a Reservation object should be able to cough up a unique primary key
and it should override equals,
I have doubt about this. Can you explain it further Jos?
Separate that stuff into a ReservationFactory
class and the Reservation class itself.
That was one of my plan.... now confirmed... :)
As I wrote: ideas are not that bad; implementations are bad and yours' is going
to be one if you don't take care.
I should care of it.
Thanks for the reply. :)
sukatoa
I have doubt about this. Can you explain it further Jos?
Given those records you showed us; think of questions you want to be able to
answer:
- is room X taken? if so, show the inhabitants' details.
- family Y leaves; what do they have to pay?
- family Z wants three rooms; are they available?
- etc.
for each of those questions you want to iterate over certain rooms, associated
with certain primary keys to do it fast.
kind regards,
Jos
Given those records you showed us; think of questions you want to be able to
answer:
- is room X taken? if so, show the inhabitants' details.
- family Y leaves; what do they have to pay?
- family Z wants three rooms; are they available?
- etc.
for each of those questions you want to iterate over certain rooms, associated
with certain primary keys to do it fast.
kind regards,
Jos
Ok, i got it. I doubt about what kind of primary key should i use. It should be one of the records.
My choice is the room number, since room number never be duplicated....
What's the advantage when it choose this to be the prime key?
What can you suggest?
About comparing Strings.
Which is a little bit faster when comparing? - Collator.compare(st 1,st 2)
that was set to PRIMARY strength
or - String.compareToIgnoreCase(another string)
Waiting for your replies,
Sukatoa
Ok, i got it. I doubt about what kind of primary key should i use. It should be one of the records.
My choice is the room number, since room number never be duplicated....
What's the advantage when it choose this to be the prime key?
What can you suggest?
About comparing Strings.
Which is a little bit faster when comparing? - Collator.compare(st 1,st 2)
that was set to PRIMARY strength
or - String.compareToIgnoreCase(another string)
Waiting for your replies,
Sukatoa
Primary key : Room number is OK if you don't have duplicates for them (you could if you have many floors and reset the count on each floor).
Comparing Strings? Just use the equals or equalsIgnoreCase method.
Primary key : Room number is OK if you don't have duplicates for them (you could if you have many floors and reset the count on each floor).
Comparing Strings? Just use the equals or equalsIgnoreCase method.
Thanks, im on my way.....
Thanks again....
Just a quick,
What if i will not serialized my classes...
eg. not setting the serialVersionUID....
What will happen to my program?
What will be the disadvantage of doing like this?
waiting for your replies,
sukatoa
Just a quick,
What if i will not serialized my classes...
eg. not setting the serialVersionUID....
What will happen to my program?
What will be the disadvantage of doing like this?
waiting for your replies,
sukatoa
Nothing much will happen, you just can't serialize instances of your classes then.
It depends on what you want to do with those instances.
kind regards,
Jos
Nothing much will happen, you just can't serialize instances of your classes then.
It depends on what you want to do with those instances.
kind regards,
Jos
Thanks for the reply Jos.
I don't no what should be the most important about it. Other says, they will be useful if i will implement it through a module type updating of a software.
As an exception occurs when the serialVersionUID of the software is not exactly/logically equal to the module to be used for updating the said software..
It is true?
By the way, i will not delete those settings, maybe this might be useful soon...
(Obviously im not aware of it)....
Here we go,
About for each statement,
which is faster, - for(Object store:ROOMS.getUniqueKeys(true).toArray()){
-
dlm.addElement(store);
-
}
or - Object[] t = ROOMS.getUniqueKeys(true).toArray();
-
for(Object store:t){
-
dlm.addElement(store);
-
}
I doubt about the REAL algorithm of for:each statement....
Can you discuss me here Jos? and somebody here in java forum who knows the real algo of for:each statement(they way it performs).....
Or the best URL you know that explains it well?
Waiting for your replies,
sukatoa <----- stucked.
What is the return type of getUniqueKeys()? If it is a collection you don't have
to turn it into an array first to use the new for-each loop.
kind regards,
Jos
What is the return type of getUniqueKeys()? If it is a collection you don't have
to turn it into an array first to use the new for-each loop.
kind regards,
Jos
Thanks for the reply,
An ArrayList that contents all the keys to be shown on the JList....
dlm is an object of DefaultListModel.
Thanks for the reply,
An ArrayList that contents all the keys to be shown on the JList....
dlm is an object of DefaultListModel.
If that is so you can do a simple: -
for (Room room : getUniqueKeys(true))
-
dlm.addElement(room);
-
The getUniqueKeys() method returns a Collection (an ArrayList) which can be
used directly in that for-each loop.
kind regards,
Jos
If that is so you can do a simple: -
for (Room room : getUniqueKeys(true))
-
dlm.addElement(room);
-
The getUniqueKeys() method returns a Collection (an ArrayList) which can be
used directly in that for-each loop.
kind regards,
Jos
Ooppss!!! Let me correct my phrase...
An ArrayList that contains all the keys to be shown on the JList....
Im sorry, i forgot to say Jos.....
ROOM is an object created from my DataSetHandler class...
( a public class that implements Serializable and takes care of data sets ).
Ooppss!!! Let me correct my phrase...
An ArrayList that contains all the keys to be shown on the JList....
Im sorry, i forgot to say Jos.....
ROOM is an object created from my DataSetHandler class...
( a public class that implements Serializable and takes care of data sets ).
It still doesn't matter: if that method returns a List of some sort you can still use
that for-each loop on it; no need to build an array out of it first and use that loop
on the array.
kind regards,
Jos
It still doesn't matter: if that method returns a List of some sort you can still use
that for-each loop on it; no need to build an array out of it first and use that loop
on the array.
kind regards,
Jos
That example you've posted is really new to me...
I'll try and update the results...
That example you've posted is really new to me...
I'll try and update the results...
Read this.
kind regards,
Jos
That example you've posted is really new to me...
I'll try and update the results...
Ok, That scenario happens on my main class named Hotel....
Can't find Symbol..... I doubt...
parameter of addElement is Object type....
maybe i can just invoke the getUniqueKeys if my DataSetHandler was extends on my Main class.....
But it was already extends on JFrame...
Please correct me if i forgot something to adjust.....
Ahhh, ok... i got an idea....
Here is the current method that implements the for each.... - private void UpdateRoomList(){
-
if(RetrieveRoomList()){
-
dlm.removeAllElements();
-
Object[] t = ROOMS.getUniqueKeys(true).toArray();
-
for(Object o:t)
-
dlm.addElement(o);
-
}else{
-
shw.showMessageDialog(null,
-
"An error occured while updating the list on room preference",
-
"Report to the Developer ASAP..",1);
-
}
-
}
Maybe your example is not applicable on the method's design....
But im impress the way how it simplified... base on the URL you've post....
I should change this...
Thanks Jos,
sukatoa
Ahhh, ok... i got an idea....
Here is the current method that implements the for each.... - private void UpdateRoomList(){
-
if(RetrieveRoomList()){
-
dlm.removeAllElements();
-
Object[] t = ROOMS.getUniqueKeys(true).toArray();
-
for(Object o:t)
-
dlm.addElement(o);
-
}else{
-
shw.showMessageDialog(null,
-
"An error occured while updating the list on room preference",
-
"Report to the Developer ASAP..",1);
-
}
-
}
Maybe your example is not applicable on the method's design....
But im impress the way how it simplified... base on the URL you've post....
I should change this...
Thanks Jos,
sukatoa
No need to do it that way if the getUniqueKeys() method returns a List of some sort: -
for(Object o: ROOMS.getUniqueKeys(true))
-
dlm.addElement(o);
-
kind regards,
Jos
No need to do it that way if the getUniqueKeys() method returns a List of some sort: -
for(Object o: ROOMS.getUniqueKeys(true))
-
dlm.addElement(o);
-
kind regards,
Jos
Wow, i thought that was not possible to implement....
Thinking that all values of the list are Objects.... :) I amazed...
Thanks Jos,
When we compare the code - ArrayList al = ROOMS.getUniqueKeys(true);
-
for(Object o: al)
-
dlm.addElement(o);
to your example,
Does it make any sense? Which should be the better/faster one?
Wow, i thought that was not possible to implement....
Thinking that all values of the list are Objects.... :) I amazed...
Thanks Jos,
When we compare the code - ArrayList al = ROOMS.getUniqueKeys(true);
-
for(Object o: al)
-
dlm.addElement(o);
to your example,
Does it make any sense? Which should be the better/faster one?
That makes sense and it doesn't differ much from my example, you are just using
a needles local variable. Your previous versions however created an explicit array
and you looped over the array.
Your next step should be to use generics for type safety, i.e. that list of yours
doesn't contain just Objects, it contains something more specific.
kind regards,
Jos
That makes sense and it doesn't differ much from my example, you are just using
a needles local variable. Your previous versions however created an explicit array
and you looped over the array.
Your next step should be to use generics for type safety, i.e. that list of yours
doesn't contain just Objects, it contains something more specific.
kind regards,
Jos
Ok....
Thank you very much....
After few weeks of developing.... ( slow development ) :(
Im now facing a problem that i've never encountered before...
And that problem is in my DataSetHandler....
I've initialized ROOMS, CURRENTGUESTS and RESERVEDGUESTS (DataSetHandler objects) as members of the main class.
@ RESERVEDGUESTS
I've made a button(EDIT) to be able to update the data that was stored on RESERVEDGUESTS.... - if(!jList2.isSelectionEmpty()){
-
Object ob = RESERVEDKEYS.get(jList2.getSelectedIndex());
-
ArrayList<Object> al = new ArrayList<Object>();
-
al.add(RESERVEDGUESTS.getNthElement(ob,0));
-
al.add(RESERVEDGUESTS.getNthElement(ob,15));
-
al.add(RESERVEDGUESTS.getNthElement(ob,16));
-
DataSetHandler dsh = RESERVEDGUESTS; //<<<<<<SUSPECTED
-
dsh.removeDataSet(ob);
-
new RegisterFilter(this,true,CURRENTGUESTS,dsh,al).setVisible(true);
-
if(new File("schedule.temp").exists()){
-
-
}
-
}
The code above is where i get stucked....
On that implementation,
I was just initializing dsh from DataSetHandler object RESERVEDGUESTS.
my purpose is to remove the specific key and its member and pass to the Dialog that manipulates the rescheduling, guest's prefered rooms etc....
RESERVEDGUESTS should not be touched... so i've created another one....
If the editing is successful(updated), then no problem because the RSVN(Reservation) number was removed and replaced by a new one or the updated one....
But if the editing was canceled, so the current values will just be refreshed...
But, after refreshing the lists,
I now can't find the key and its member.... ( nullpointerexception occured )...
I get stucked for a half an hour, tracing that F* bug.
and now it was proven 100% that the responsible for removing that key(supposed to be removed to use as a reference on editing) is the - DataSetHandler dsh = RESERVEDGUESTS; //<<<<<<SUSPECTED
-
dsh.removeDataSet(ob);
Base on my observation, the dsh and the RESERVEDGUESTS are one,
I can't imagine, because on my other implementation, there was no problem...
(That is exactly the same on this, the only difference is more keys was also removed)
Base on the snippet above(that 2 lines), What's wrong?
whatever i will do to dsh, RESERVEDGUESTS should not be changed right?
But, the RESERVEDGUESTS is affected, whatever i did to dsh, it reflects to RESERVEDGUESTS.... Please correct me( i might forgot something here)
As i've remove the key ob in dsh, the RESERVEDGUESTS also affected,
I expect that ob is still in RESERVEDGUESTS after the snippet above(2 lines)...
I tried to use clone method, that returns an object, but i get an error that says,
clone method is protected in Object class at java.lang....
If this can be the other alternative, can you show me a sample code that implements a copying of object through clone? or just a URL?
I tried this, - DataSetHandler dsh = (DataSetHandler)RESERVEDGUESTS.clone();
The compiler says that CloneNotSupportedException must be handled(or put a try/catch block)
Now, if that exception occurs, How can i reimplement my DataSetHandler to be able to support cloning of that object?
I don't know what you're talking about (it doesn't make sense to me) but if you
want your class to be cloneable it must implement the Cloneable interface and
possibly make the clone() method public. Read the API documentation.
kind regards,
Jos
I don't know what you're talking about (it doesn't make sense to me) but if you
want your class to be cloneable it must implement the Cloneable interface and
possibly make the clone() method public. Read the API documentation.
kind regards,
Jos
Ok, here is an example, ( I forcely assume that String is similar to DataSetHandler ) -
String RESERVEDGUESTS = new String("I_am_who_am");
-
String dsh = RESERVEDGUESTS;
-
-
String[] st=dsh.split("_");
-
dsh = "";
-
for(String s:st){
-
System.out.print(s+" ");
-
dsh = dsh.concat(s+" ");
-
}
The code above is just to represent my problem....
Suppose dsh was initialized by RESERVEDGUESTS,
After the code
the RESERVEDGUESTS also equal to dsh, expected to be unchanged (obviously)... But as dsh is changing, the RESERVEDGUESTS also changing....
Now, i guess when you try to print the content of the object RESERVEDGUESTS, it should still be "I_am_who_am" right?
But, it's not... just like i said, RESERVEDGUESTS is proportional to dsh...
Now, when we try to print RESERVEDGUESTS, it will show "I am who am "
I am just representing my problem on my own class, these should not, and must not happen to String....
That's my problem yesterday.....
Now, i have the solution, but needs to reconstruct a new DataSetHandler...
Here is my solution, - DataSetHandler dsh = new DataSetHandler(22);
-
for(Object key : RESERVEDGUESTS.getUniqueKeys()){
-
dsh.addDataSet(key, RESERVEDGUESTS.getMembers(key));
-
}
But, it consumes 4 lines of code......
So, for implementing Cloneable interface, i will try it at this moment Jos...
Thanks for your reply....
I wonder why static boolean variable in a Dialog doesn't reset's its value in the next invocation....
at first invoke, - static boolean val=false;
val is false,
after some calculations, assigning val to true then dispose,
and then invoke that dialog again,
val now sets to true, the initialization at member's field have now no effect at all...
Other datatypes that are static members are resets except val....(or all static booleans)
Why is it happening?
Whenever i call System.gc() and System.runFinalization() method
still no effect... it sets on the previous value after some processes....
initializing it with just private(declaring it with non static), no problem....
Am i forgot something here?
Am i forgot something here?
Normally, i.e. when you don't take special precautions, after a class is loaded
by a ClassLoader it will never be released from memory by a garbage collector
anymore. A static variable is a member of the class so it will never be released
nor re-initialized anymore.
kind regards,
Jos
Thanks for you reply Jos....
Now, i have doubt what should i choose to be the primary info on a black-listed guests....
Honestly, i never tried to live on a hotel before... even just a day....
I know the other fields to be added, but, to be sure....
Here are the infos from the current guests
*Room Number
*Complete Name
*Additional Guests
*Address
*Company Address
*Contacts: landline,mobile,fax and email
*Passport Info ( Passport number and Place of issue )
*Guest's remarks
Method of Payment:
Cash,Cheque(From company/walk-in guest),Credit Card
If Credit Card --> Credit Card Number and Expiry Date...
Credit Card Info can be modified only by the admin...
(For security reasons and to protect the guests from hacking their CC)
*Arrival and Departure Time
Deposit, Discount and total Charges....
*Registered by: On duty clerk...
*Modified by: On duty clerk...
There is a button (Add to black List) that will transfer/copy the whole data from current/reserved guests to black listed guests... but, i like to remove those unnecessary data... (if any)
ergo, transfering those data that are necessary for investigations/future preferences etc....
And to save allocated values on registers and memory...( Just practicing )
Im not sure the other infos that i've choose to be added on black list....
For those info that i've choosen to be added( * ), what should be removed? what should be added?
I've searched through the web, but all i got is black listed IP addresses, and blogs, discussion... most of them sucks....
Can you help me on this? ( Im very sorry for asking this kind of questions, well!!!obviously not related to programming )
What should setFocusable(boolean literal) do on JButton?
I was trying to do such that, the button can't be clicked, or any event that can fire that component yet still on its current GUI state(Enabled),
But i still can clicked,tabbed, etc....
I don't like the button to be disabled(My eyes can't accept) :)
How can i reproduce that?
What should setFocusable(boolean literal) do on JButton?
I was trying to do such that, the button can't be clicked, or any event that can fire that component yet still on its current GUI state(Enabled),
But i still can clicked,tabbed, etc....
I don't like the button to be disabled(My eyes can't accept) :)
How can i reproduce that?
Users find it very annoying when they click on a button and nothing happens;
especially when they don't see that the button *can't* be clicked. That's what
the disabled state is for. When users tab around and the button is focusable
they can tab to it and press 'space' to click it. That's what the focusable state
is for. Some text components also have an editable state; that doesn't apply
to a button though. Pick your choice.
kind regards,
Jos
Users find it very annoying when they click on a button and nothing happens;
especially when they don't see that the button *can't* be clicked. That's what
the disabled state is for. When users tab around and the button is focusable
they can tab to it and press 'space' to click it. That's what the focusable state
is for. Some text components also have an editable state; that doesn't apply
to a button though. Pick your choice.
kind regards,
Jos
Thank you very much for the information Jos, it did help me decide. :)
Thanks again...
Project DONE....
I would like to thank JoshAH and r035198x for helping on my simple project.....
I learned something new from you guys.... :)
CHEERS,
Red Horse
Project DONE....
I would like to thank JoshAH and r035198x for helping on my simple project.....
I learned something new from you guys.... :)
CHEERS,
Red Horse
Good; congrats. Did you deploy it already and did your friend like it?
kind regards,
Jos
Good; congrats. Did you deploy it already and did your friend like it?
kind regards,
Jos
Yah, i already send him the installer.... we we're communicating on YM last 7 or 8 hours as im still guiding him for the installation( i forgot to create a documentation about the installation guidelines)......
Successful..... and he like it... :)
Sad to think that, im developing that program over a month, and then he will just use that program for 3 days demo or a week(i think) in this semester.... hahahahhh :(
Most of the time ideas aren't bad, it's the implementations that are extremely bad.
That phrases are really inspiring(for me)....
Thanks again,
Cheers
Sign in to post your reply or Sign up for a free account.
Similar topics
by: Bengt Richter |
last post by:
====< abspell.py >=======================================
# abspell.py v.10 20030806 17:20:23 Bengt Richter bokr@oz.net
# Use freely, so long as you accept that there is NO WARRANTY OF ANY KIND....
|
by: Dan |
last post by:
Using XML::Simple in perl is
extreemly slow to parse big
XML files (can be up to 250M,
taking ~1h).
How can I increase my performance /
reduce my memory usage?
Is SAX the way forward?
|
by: Chris |
last post by:
I'm wondering what is the "best" way to structure a set of info about
an item, like a book or a hotel.
Eg, let's say you had this info to present for each book in a
collection:
Title
Author...
|
by: Jim M |
last post by:
I've been distributing a fairly mature, very specific MS Access
application to end users in small offices of colleges for several years
now. This is a part-time venture and low volume operation-...
|
by: melledge |
last post by:
IDEAlliance and the XML 2006 Planning Committee have just added an
informative and fast-paced Vendor PechaKucha Night to the conference
agenda. The session takes place Tuesday evening, December 5...
|
by: kamazoo |
last post by:
I have no programming experience whatsoever, but nevertheless am I currently responsible for an update of a website, where a few hotels can be booked using an orderform.
The website is built with...
|
by: GesterX |
last post by:
First of all I'm new to this site but it certainly looks like a place that i will be visiting more often!
Onto my problem.
I am creating a Hotel Bussiness project in java using BlueJ
The...
|
by: David Goodger |
last post by:
If you haven't registered for PyCon yet, now is the time! The
early-bird registration deadline is February 20, one week away. After
that, the price for registration will be going up.
...
|
by: Dellboymash |
last post by:
Apologies, I have posted this question before, but am still looking for an answer, and have therefore rephrased the question.
Users enter data into the database using a windows form. I am happy I...
|
by: rubyhuang |
last post by:
Hi, experts:
I've got a question that I want to find all the rooms in a given hotel which is unoccupied and I write the query like that, but it cannot work. can anyone help me to figure out? thank...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
| |