Originally posted by Rebecca Loos
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
You know when your contract is dull when...
Collapse
X
-
SA says;
Well you looked so stylish I thought you batted for the other camp - thats like the ultimate compliment!
I couldn't imagine you ever having a hair out of place!
n5gooner is awarded +5 Xeno Geek Points.(whatever these are) -
You're right - there is loads more...
1) Collect all the empty loo rolls from the toilet and build a model. Present it to the boss for his desk.
2) Come to work wearing odd coloured socks. The permies will love you for it.
3) Open a book on what the dish of the day in the canteen will be.
Oh I could go on...
Older and ...well, just older!!Comment
-
I can't distribute it here:
You may post new threads
You may post replies
You may not post attachments
You may edit your postsChico, what time is it?Comment
-
-
Penny Counting
Rebecca Loos
Can you email me the Penny Counting App you have? I'm not a sado developer so I can't write my own.Comment
-
I did a similar thing years ago , don't know if I still have it but was done in VB and placed a small odometer like counter just above the task-bar.
Great thing about it though was that you could add in preset hourly rates and give them a name. If you felt bad about what you were earning you could have a quick look at how slow it was for a burger-flipper. If someone told you you were earning too much then you could switch it to the Bill Gates setting to shut them up.Comment
-
you start posting crap to a crap bulletin board and you have to sit opposite from the droopiest t!ts alive and the highlight of the day is seeing of it is cold or not
SA says;
Well you looked so stylish I thought you batted for the other camp - thats like the ultimate compliment!
I couldn't imagine you ever having a hair out of place!
n5gooner is awarded +5 Xeno Geek Points.(whatever these are)Comment
-
Originally posted by Rebecca LoosI can't distribute it here:
You may post new threads
You may post replies
You may not post attachments
You may edit your postsSA says;
Well you looked so stylish I thought you batted for the other camp - thats like the ultimate compliment!
I couldn't imagine you ever having a hair out of place!
n5gooner is awarded +5 Xeno Geek Points.(whatever these are)Comment
-
well it's a big mdb file (MS Access app) but I am sure it is feasible as a VB app - problem is I don't know VB. However I am reliably informed that it is very similar to Access (or rather Access is similar to VB - not sure which came first).
Anyway, create a modal form with a procedure that goes:
Private Sub cmdRefresh_Click()
On Error GoTo Err_cmdRefresh_Click
Rem DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
Dim howmuch As Single
Dim starttime As Date
Dim todaysdate As String
Dim dailyrate As Single
dailyrate = Me!txtDailyRate
Me!txtTime = Now()
Me.Refresh
todaysdate = Format(Now(), "dd/mm/yyyy")
starttime = todaysdate & " 08:30:00"
howmuch = DateDiff("s", starttime, Now())
If Time < "08:30:00" Then
how much = 0
End If
If Time > "12:30:00" Then
howmuch = DateDiff("s", starttime, todaysdate & " 12:30:00")
End If
If Time > "13:30:00" Then
starttime = todaysdate & " 13:30:00"
howmuch = howmuch + DateDiff("s", starttime, Now())
End If
If Time > "17:30:00" Then
howmuch = 8 * 60 * 60
End If
howmuch = (dailyrate / (8 * 60 * 60)) * howmuch
Me!txtMoney = howmuch
Me.Refresh
Exit_cmdRefresh_Click:
Exit Sub
Err_cmdRefresh_Click:
MsgBox Err.Description
Resume Exit_cmdRefresh_Click
End Sub
txtTime is a box on the form, so is txtMoney, and so is txtDailyRate, they are self-explanatory, only txtDailyRate is editable by the user.
Now the form should have a Timer event, make it call the aforementioned function on the onTimer event, make the timer interval 1 seconds (I think it is measured in milliseconds, so make the interval 1000), et voilà as they say as another car is put ablaze in Aulnay-sous-BoisLast edited by Rebecca Loos; 10 November 2005, 09:04.Chico, what time is it?Comment
-
oh I forgot in the app above, the assumption is that you do a 8:30 to 5:30 day with a 1 hour break for lunchChico, what time is it?Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Which IT contractor skills will be top five in 2025? Jan 2 09:08
- Secondary NI threshold sinking to £5,000: a limited company director’s explainer Dec 24 09:51
- Reeves sets Spring Statement 2025 for March 26th Dec 23 09:18
- Spot the hidden contractor Dec 20 10:43
- Accounting for Contractors Dec 19 15:30
- Chartered Accountants with MarchMutual Dec 19 15:05
- Chartered Accountants with March Mutual Dec 19 15:05
- Chartered Accountants Dec 19 15:05
- Unfairly barred from contracting? Petrofac just paid the price Dec 19 09:43
- An IR35 case law look back: contractor must-knows for 2025-26 Dec 18 09:30
Comment