Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2

Thread: Calendar basics

  1. #1
    Join Date
    Jun 2001
    Location
    California
    Posts
    2,014

    Calendar basics

    If I try clearing a day of its info it comes back when I click on it again. DB is not deleting the info.
    My code:

    In the plugin:
    --On Select
    --This is single selection so don't worry about e_EndDate
    --First Disply the Date
    Label.SetText("txtDate", e_StartDate);

    --Does this blog entry exist?
    if (not (tbBlog[e_StartDate])) then
    --Set the Text
    Input.SetText("inpBlog","");
    else
    --Set the Text
    Input.SetText("inpBlog",tbBlog[e_StartDate]);
    end



    In the clear button:

    --Set the Text
    Input.SetText("Event", "");
    --Get the selection
    tbSel = Calendar.GetSelection("Calendar");
    if (tbSel) then
    SQLite.Query(db, "DELETE FROM Cal WHERE Date = '"..tbSel.Begin.."'");
    tbBlog[tbSel.Begin] = "";
    --Remove the Selections special date (if it exists) becuase
    --the text is blank
    tbSpecial = Calendar.GetSpecialDates("Calendar");
    if (tbSpecial) then
    Calendar.ClearSpecialDates("Calendar");
    --Now re-Add all special dates
    for strCount, strDate in tbSpecial do
    if (strDate ~= tbSel.Begin) then
    Calendar.AddSpecialDate("Calendar", strDate);
    end
    end
    end
    result = Dialog.Message("Delete Error", "No Date with an Event selected.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);

    end


    Any ideas?

  2. #2
    Join Date
    Jun 2001
    Location
    California
    Posts
    2,014
    bump to the top

Similar Threads

  1. Calendar Plugin Problemo !!!!
    By DaSoulRed in forum AutoPlay Media Studio 7.5
    Replies: 10
    Last Post: 12-04-2007, 07:06 PM
  2. Wasssup Calendar?
    By Bruce in forum AutoPlay Media Studio 6.0
    Replies: 11
    Last Post: 09-12-2007, 05:47 PM
  3. Calendar Plugin questions and suggestions
    By Roboblue in forum AutoPlay Media Studio 6.0
    Replies: 1
    Last Post: 03-28-2006, 09:49 PM
  4. Calendar object q:
    By ianhull in forum AutoPlay Media Studio 5.0
    Replies: 2
    Last Post: 11-06-2004, 04:38 PM
  5. Spotlight: Calendar Object Plugin
    By Desmond in forum AutoPlay Media Studio 5.0
    Replies: 0
    Last Post: 03-19-2004, 08:50 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts