Help whit this 5 days caledaar

dino

Registered User.
Local time
Today, 13:47
Joined
Dec 13, 2013
Messages
21
Can some wane hep my to make this working so that hy works.
hy works now whit 5 day`s and i like to do this whit 7 day`s
ifyou can help is it posible to tell my what you have do so i can learn .
thanks
 

Attachments

Oh, my, you are dutch and look at your english really?

It is pretty simple, you take the labels and text boxes for Monday and copy them to Sunday and Saturday, then for each label rename them to L1,L8,L15,L22, L29 for the sundays, L7 etc for the saturdays
Take the text boxes and rename them S1, S8 etc for sundays and S7, ets for saturdays and you should be good to go :)

In case your reading english is as bad as your writing here it is in dutch as well.

Het is vrij simpel, gewoon de texten en labels van maandag nemen en kopieren/plakken als Zondag en Zaterdag. Dan alle labels voor de zondag hernoemen naar L1,L8,L15,L22, L29 en de Zaterdagen hernoemen naar L7 etc.
Dan de textboxen hernoemen naar S1, S8 etc voor zondag en S7 etc voor de zaterdag ... Dat zou het moeten zijn.

Sorry for the dutch on here non-dutch-speaking people.
 
I think it's great you were able to answer in Dutch as well! We definitely have an international membership...
 
Oh, my, you are dutch and look at your english really?

It is pretty simple, you take the labels and text boxes for Monday and copy them to Sunday and Saturday, then for each label rename them to L1,L8,L15,L22, L29 for the sundays, L7 etc for the saturdays
Take the text boxes and rename them S1, S8 etc for sundays and S7, ets for saturdays and you should be good to go :)

In case your reading english is as bad as your writing here it is in dutch as well.

Het is vrij simpel, gewoon de texten en labels van maandag nemen en kopieren/plakken als Zondag en Zaterdag. Dan alle labels voor de zondag hernoemen naar L1,L8,L15,L22, L29 en de Zaterdagen hernoemen naar L7 etc.
Dan de textboxen hernoemen naar S1, S8 etc voor zondag en S7 etc voor de zaterdag ... Dat zou het moeten zijn.

Sorry for the dutch on here non-dutch-speaking people.


oke mooi dutch haha sorry voor de engels .
maar als ik dat doe is mooi maar krijg dus niet de goede datum er in bv 7 blijft 1 en als ik de maand verander loopt de nieuw gemaakte niet mee .
en dat is eigenlijk mijn probleem
zou je hiermee kunnen helpen?
 
i like to tell you that writing Engels is small problem but, if i make time for it its going well.
The question is can you help?
The problem I have whit it is, can make al the stuff I need for the day`s no problem but when I change the moth he don’t switch the day`s .
I hoop you know what I mean ore try it you self whit the piece of program I send

 
This part is what makes the form/code skip the saturdays and sundays, make sure to comment them out by adding the ' in front of the lines like I did below

// Dit deel van de code zorgt er voor dat de zaterdagen en zondagen overgeslagen worden, zet voor elk van deze regels een ' zoals ik hieronder gedaan heb
Code:
'        If i Mod 7 = 0 Then
'            i = i + 2
'        ElseIf i Mod 7 = 1 Then
'            i = i + 1
'        End If
Go into the code and place a "stop" at the start, then with F8 try and execute each line and see what it does to your form... Try and figure out from there what minor tweaks you need to do to get it to work...
Keep in mind that there are 35 labels and checkboxes, i in the code is the number of the box that is getting manipulated at the time....

// Ga in de code (met ALT + F11) en type een stop in de SUB, blader dan met de knoppen op de form en executeer de regels 1 voor 1 met F8 and probeer er achter te komen wat elke regel doet door goed op het form te letten terwijl je de regel excuteerd met F8. Er zijn 35 boxen en labels met de variable i wordt bestuurd welke van die labels en textboxen worden aangepast....

Success
 

Users who are viewing this thread

Back
Top Bottom