Page Index Toggle Pages: 1 ... 4 5 [6] 7  Send TopicPrint
Very Hot Topic (More than 25 Replies) PocketPlannerDesign for .NET 2.0 (Read 56944 times)
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #75 - Apr 13th, 2006 at 9:36am
Print Post  
so i musn't do enything when i use standard Appointment objects but when i tested i have seen that when you klik in the timetable to add an appointment you have also an

Private Sub _calendar_ItemCreated(ByVal sender As Object, ByVal e As MindFusion.Scheduling.Compact.ItemEventArgs) Handles _calendar.ItemCreated

       e.Item.DescriptionText = "Tekst"

    End Sub

how can i change that so i can type there in what i want and not just that word because you can't klik in it
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #76 - Apr 13th, 2006 at 11:10am
Print Post  
In-place editing is not supported at this time. You can open a form of some kind and let users type the text there.
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #77 - Apr 14th, 2006 at 5:12pm
Print Post  
i have a question about the day range
i have 3 timetables and now also 3 dayrange
but i want also like in the timetables an header
i have seen that in the dayrange you have only a title format and i filed the follow tekst in
_calendar.DayRangeSettings.TitleFormat = "'Stoel1',ddd MMM "

but when i dispaly this there are 5 days visible in a week it is empty because the tekst is to long
but i have seen that in the demo the tekst is spread over two lines do you know how i must set an enter so he does the same as in the demo

this you see in the demo:

sat
15 apr

and i want to change that in:

Stoel1
sat apr
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #78 - Apr 16th, 2006 at 8:08pm
Print Post  
Use the following formatting:

_calendar.DayRangeSettings.TitleFormat = "'Stoel1'\n,ddd MMM"
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #79 - Apr 19th, 2006 at 12:13pm
Print Post  
i have a question about the planner.net programmer's guide
in that guide there are 5 tutorials for changing code
there are also methods for saving and loading
appointment in tutorial4 but i have seen that the
method saveto and loadfrom you can't use for pocket planner
haven't you a tutorial specific for pocket planner
for the saving and loading of appointment
because i still have the problem of saving and loading the appointments into the scheduler.save file Tongue
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #80 - Apr 19th, 2006 at 4:18pm
Print Post  
Would you email me your project so we can see what exactly does not work ?
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #81 - Apr 20th, 2006 at 4:41am
Print Post  
could you give me then an email adres so i can sent you the hole file then you can see the 3 schedule.save files also
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #82 - Apr 20th, 2006 at 11:58am
Print Post  
Hi,

Saving works fine here with your project. However we have found the menu checks are not set correctly, they do not correspond to the active view. So you might have thought there is the current view saved but actually it was one of the inactive ones.

Use this version of menuView_Popup

Private Sub _menuView_Popup(ByVal sender As Object, ByVal e As System.EventArgs) Handles _menuView.Popup

       _menuMonth.Checked = _calendar.Visible And (_calendar.CurrentView = CalendarView.SingleMonth)
       _menuMonthRange.Checked = _calendar.Visible And (_calendar.CurrentView = CalendarView.DayRange)
       _menuWeekRange.Checked = Calendar2.Visible And (Calendar2.CurrentView = CalendarView.DayRange)
       _menuDayRange.Checked = Calendar1.Visible And (Calendar1.CurrentView = CalendarView.DayRange)
       _menuTimetable.Checked = _calendar.Visible And (_calendar.CurrentView = CalendarView.Timetable)
       MenuItem1.Checked = Calendar1.Visible And (Calendar1.CurrentView = CalendarView.Timetable)
       MenuItem2.Checked = Calendar2.Visible And (Calendar2.CurrentView = CalendarView.Timetable)
End Sub

Stoyan
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #83 - Apr 20th, 2006 at 3:34pm
Print Post  
thank you for controling my project
that about the menuView_Popup is very nice done Grin
you said that the saving goes well by yours
but did he save it in the schedule.save files?
by me he save the appointments because i can load them also but i did not see them in the save files  Embarrassed
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #84 - Apr 21st, 2006 at 4:20am
Print Post  
The appointments from each control go to their corresponding save file, i.e. the appointments from the first calendar go to 'schedule.save', the appointments from the second calendar go to 'schedule1.save', etc. Thus if you created an appointment in, say, the second calendar, it will appear only in 'schedule1.save' and not in 'schedule.save' nor in 'schedule2.save'. Are you sure you are looking in the correct save file?

Meppy
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #85 - Apr 21st, 2006 at 4:46am
Print Post  
so when you tested my program he saved it in those files who are by the project i sended to you
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #86 - Apr 21st, 2006 at 5:14am
Print Post  
Yep, your program is working correctly. The appointments are saved in their corresponding files.

Note: If you are running your program on a device (or an emulator) the save files would be created on the device (most likely in the executable's directory) and not on your PC. Make sure you are looking at the correct place.

Meppy
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #87 - Apr 21st, 2006 at 5:53am
Print Post  
ah so even if you run the project on the pc it will only save it in the pocket pc

so i can find the appointment on the device
and they will not save in the files in who are in my project
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: PocketPlannerDesign for .NET 2.0
Reply #88 - Apr 21st, 2006 at 6:18am
Print Post  
Correct. Pay attention to the dates of the files, they should be recent.

Meppy
  
Back to top
 
IP Logged
 
racer
Guest


Re: PocketPlannerDesign for .NET 2.0
Reply #89 - Apr 21st, 2006 at 6:47am
Print Post  
ok
i thaught that they would be saved in those files on my pc because when i run the demo.exe and then i press save he make a schedule.save file on my pc Tongue
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 ... 4 5 [6] 7 
Send TopicPrint