Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic opening the pocket planner (Read 4803 times)
racer
Guest


opening the pocket planner
Mar 16th, 2006 at 6:14am
Print Post  
i have downloaded the free trial but i can only see the main.vb code and not the demo code
how can i open this so that i can see if the code is good for my project
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: opening the pocket planner
Reply #1 - Mar 16th, 2006 at 7:13am
Print Post  
Hi, what do you mean by "the demo code" ?
  
Back to top
 
IP Logged
 
racer
Guest


Re: opening the pocket planner
Reply #2 - Mar 16th, 2006 at 8:35am
Print Post  
wel you have
C:\Program Files\MindFusion Limited\PocketPlanner Trial\Samples\VB.NET\Demo

you have different files like mainform.vb and assemblyinfo.vb but those files i can open in visual basic 2005 but the other files i can only see the program running but no code
i want to see what for code is in it so i can decede if the program is good to buy
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: opening the pocket planner
Reply #3 - Mar 16th, 2006 at 9:17am
Print Post  
Hi,

Indeed there are only these two vb files in the demo, it only shows all calendar views and creates several schedule items, so there isn't much source code available.

Apart from the Demo , there are two other samples - CustomEvents and DragDrop. Don't you have the source code for them installed ?

Stoyan
  
Back to top
 
IP Logged
 
racer
Guest


Re: opening the pocket planner
Reply #4 - Mar 16th, 2006 at 11:51am
Print Post  
yes i did but the demo is the best program that i can use
i have only one question and that is how can you change the code in the drag and drop so that when you put a appointment in the calendar that you can give the hour of your appointment
when you do it now you can only give an appointment for one hour and not for example half an hour
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: opening the pocket planner
Reply #5 - Mar 16th, 2006 at 2:17pm
Print Post  
The cells in the 'Drag & Drop' demo have the default time interval of one hour. You can use the Calendar.TimetableSettings.CellTime property to specify smaller time interval for cells. For example the following

_calendar.TimetableSettings.CellTime = TimeSpan.FromMinutes(10);

would allow users to create items that have start time with 10-minutes precision.

The length of the created items is hard-coded to be 2 hours, but you can display a simple form that would allow users to specify the length of the new item.

This modified sample shows how you could do that:

https://mindfusion.org/_samples/DragDrop.zip
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint