Search found 1510 matches

by BruceSteers
Thursday 28th March 2024 5:52pm
Forum: Project showcase
Topic: Blockski+ , like Klotski but with a board editor.
Replies: 43
Views: 6884

Re: Blockski+ , like Klotski but with a board editor.

Since the last update i have been trying to iron out some of the bugs, 1 of which I introduced by changing from single selection to multiple selection. Mostly the problems were caused by 2 things i think... 1. The BlockOverlap(hBlock, X, Y) method was returning the hBlock where it should have only r...
by BruceSteers
Wednesday 27th March 2024 9:17pm
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: [Solved - sort of] Get the Previous Sunday from a Date

thatbruce wrote: Wednesday 27th March 2024 11:22am No more clues from me. If you want us to writ your damn pos system, send money. :x
Haha :D

Yep, give a man a fish and he eats for a day. And all that 😉
by BruceSteers
Wednesday 27th March 2024 9:36am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: [Solved] Get the Previous Sunday from a Date

Okay so i had a real proper read of your first post to see what the initial goal was again. You want to get from Sunday to Monday of a previous week from a given date. So get the previous Sunday , then the Monday before that... So you want something like this... Public Sub Button1_Click() Dim d As D...
by BruceSteers
Wednesday 27th March 2024 8:45am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: [Solved] Get the Previous Sunday from a Date

Sigh

Not sure what you could not get your head around or why after asking 3 different questions that all got answered you did something completely different? i guess that's your prerogative.
by BruceSteers
Wednesday 27th March 2024 3:55am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: Get the Previous Sunday from a Date

I'm not sure what you mean by Hover over them?
Gambas will just display the date object as it is.

If they are using Date objects not Strings then just use Format where you need it formatted

sDisplayString = Format(dtStartDate,"dddd dd/mm/yyyy")
by BruceSteers
Wednesday 27th March 2024 2:11am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: Get the Previous Sunday from a Date

That cannot be true you make D a string object not a Date object. Then you make the string and return it... D = "01/" & Format(MonthName, "00") & "/" & Year Return D D will begin with 01/ . just like you made it Unless somewhere else along the line you are u...
by BruceSteers
Tuesday 26th March 2024 1:17am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: Get the Previous Sunday from a Date

So i spent a whole minute writing this. (thanks to the clues given by the other Bruce :) ) Public Sub Button1_Click() Debug GetLastMonthDay(Now) Debug Format(GetLastMonthDay(Now), "dddd dd mmm") End Public Sub GetLastMonthDay(hDate As Date) As Date Dim d As Date d = DateAdd(hDate, gb.Day, ...
by BruceSteers
Monday 25th March 2024 2:52am
Forum: General
Topic: [Solved - sort of] Get the Previous Sunday from a Date
Replies: 16
Views: 346

Re: Get the Previous Sunday from a Date

You cannot use a Date object like that by just adding/subtracting integers from it. You must use DateAdd() https://gambaswiki.org/wiki/lang/dateadd DateAdd() minus 1 week EDIT: sorry i had the gb.Week/gb.Day and the values round the wrong way. Private Function GetPreviousWeekDayDate(inputDate As Dat...
by BruceSteers
Monday 25th March 2024 2:48am
Forum: General
Topic: Control + Shift + F
Replies: 1
Views: 89

Re: Control + Shift + F

It's now Ctrl+Shift+T