Next Years Meeting Dates

Been toying with different thoughts, SQL and Functions but haven't come up with the right plan of action.
We have a monthly meeting, typically on the 1st Monday of the Month. Occasionally it needs to be different. The date needs to be saved to a Table for referencing other code and documents on the server. These are some of the things I have toyed with in trying
to figure out how to do it.
I have a Form that uses =DMax("BoardDates","Board and submission dates") to return the highest date in the Table.
There are several functions in a Standard Module from the Forums
1)
'"the following function was made to display info on Report"
Public Function fnIsFirstMondayOfMonth(dteInput As Date) As Boolean
fnIsFirstMondayOfMonth = (Day(dteInput) <= 7) _
And (Weekday(dteInput) = vbMonday)
End Function
2)
'The following function by Dirk is to try creating dates on a Form to store in the Tables
Function fncFirstMondayOfNextMonth( _
BaseDate As Date, _
Optional WeekdayWanted As VbDayOfWeek = vbMonday) _
As Date
' Given a datem return the date of the first occurrence
'of a given day of the week in the next month.
' The default is the first Monday
' but the optional WeedayWanted argument
' can be used to specify any desired day of the week, as
' a member of the vbDayOfWeek enum.
Dim dtNextYear As Date
Dim dtNextMonth As Date
Dim intDay As Integer
' Start with the first day of next month.
dtNextMonth = DateSerial(Year(BaseDate), Month(BaseDate) + 1, 1)
' Find the first <WeekdayWanted> on or after dtNextMonth.
intDay = Weekday(dtNextMonth)
'fncFirstWeekdayOfNextMonth = DateAdd("d", (WeekdayWanted + IIf(intDay > WeekdayWanted, 7, 0)) - intDay, dtNextMonth)
End Function
3)
'The following function by Ken is to try creating future dates on a Form to store in the Table
Public Function GetMondayDate(dtmDate As Date, intWeekNum As Integer)
On Error GoTo Err_Handler
Const NOCURRENTRECORD = 3021
Dim rst As DAO.Recordset
Dim strSQL As String
Dim strFrom As String
Dim strTo As String
Dim n As Integer
Dim dtmReturnDate As Date
' get start and end dates of next month as date literals
' in internationally unambiguous ISO format of YYYY-MM-DD
strFrom = "#" & Format(DateSerial(Year(dtmDate), _
Month(dtmDate) + 1, 1), "yyyy-mm-dd") & "#"
strTo = "#" & Format(DateSerial(Year(dtmDate), _
Month(dtmDate) + 2, 0), "yyyy-mm-dd") & "#"
' establish a recordset of all Wednesday dates in next month
strSQL = _
"SELECT WeekStart " & _
"FROM WednesdayCalendar " & _
"WHERE WeekStart BETWEEN " & _
strFrom & " AND " & strTo & _
" ORDER BY WeekStart"
Set rst = CurrentDb.OpenRecordset(strSQL)
' loop until required week of month
' and get Wednesday date
With rst
Do While n < intWeekNum
dtmReturnDate = .Fields("WeekStart")
n = n + 1
.MoveNext
Loop
End With
GetMondayDate = dtmReturnDate
Exit_Here:
Exit Function
Err_Handler:
' if number of weeks in month with a Wednesday
' has been exceeded return a Null
' otherwise inform user of any unknown error
Select Case Err.Number
Case NOCURRENTRECORD
GetMondayDate = Null
Case Else
MsgBox Err.Description, vbExclamation, "Error"
End Select
Resume Exit_Here
End Function
Then have tried the following in unbound controls on the Form with a highest date in the Table at 11/3/2015.
=IIf(fnIsFirstMondayOfMonth([HighestDate]+DatePart("m",2)),Null,"*") & Format([HighestDate],"mmmm dd"", ""yyyy") which returns - The current Date preceded by *
=IIf(("m",[highestdate]>10),DateAdd("m",1,[HighestDate]),[highestdate]) Returns The current date + 1 Month (12/3/2015)
=DateDiff("d",Now(),[HighestDate]) - Returns the difference between today's date and the highest date in the Table (315)
=Format(DateDiff("d",Now(),[HighestDate]),"yyyy") - Returns 1900
=Format([HIghestDate],"yyyy")+1 - Returns the Next highest Year (2016)
=DateAdd("d",("Monday"+IIf([intDay]>[WeekdayWanted],7,0))-[intDay],[dtNextMonth]) - Returns #Name? error
=DateAdd("d",(3+IIf(Day(DateSerial(Year(Date()),Month(Date())+1,1))>3,7,0))-Day(DateSerial(Year(Date()),Month(Date())+1,1)),DateSerial(Year(Date()),Month(Date())+1,1)) - Returns 1/3/2015
=DateAdd("d",7-(7-Day(DateAdd("m",1,DateSerial(Year(Date()),Month(Date()),0)+1))),DateAdd("m",1,DateSerial(Year(Date()),Month(Date()),0)+1)) - Returns 1/2/2015
=DateDiff("y",[HighestDate],DateAdd("y",+1,DateAdd("yyyy",3,[HighestDate]))) - Returns 1097
=(365-Day(Now())) - Returns 342
=DateAdd("y",-1,(Now())) - Returns 12/22/2014 2:41:03 PM
=IIf([HighestDate]<Now(),Now(),DateAdd("d",+1,Now())) - Returns 12/24/2014 2:41:03 PM
=Format(IIf([HighestDate]<Now(),Now(),DateAdd("yyyy",+1,Now())),"yyyy") - Returns the year of the highest date (2015)
So we need to be able to have on the Form the 11 dates in Bound controls based on the selected year in an unbound Form, and then have 11 unbound controls show the next years monthly meeting dates. A button to update the unbound dates to the Table provided
those months of the year do not already have dates. We don't want the code to update the Table if the Month/Year already has a date as 1 or 2 times a year the dates will be deferred and we need the deferred date to remain.
I was also looking at using the following code to make it work???
    If Len(Trim(Nz(Me.[JanMDate], "") & "")) = 0 Then
    'check to see if the text box already has data - if it doesn't then
    Me.[JanMDate] = DateAdd("d", 365, Me.[HighestDate])
    'use the Highest date value and calculate next years dates to store in the unboun date text boxes
    End If
Thank you for your help!!!
Just takes a click to give thanks for a helpful post or answer.
Please vote “Helpful” or Mark as “Answer” as appropriate.
Chris Ward
Microsoft Community Contributor 2012

If not automated, regular compacting of a database should be a maintenance task undertaken by the database administrator, but failing that I can see three possible approaches:
1.  Create the temporary table in an external file, which is itself created and deleted at runtime.  The BoM demo in my OneDrive folder adopts this approach to create temporary tables on the fly to simulate recursive querying to generate a bill of
materials.
2.  Adapt my code so that instead of creating a separate table from which to append rows it inserts rows into your operational table annually.
3.  Instead of creating a temporary table, create a permanent auxiliary calendar table stretching 10 or 20 years into the future, and restrict an append query by a date range to insert a subset of rows into the operational table annually.  Auxiliary
calendar tables are normally permanent objects as the dates in them are not usually subject to amendment, apart from the deletion of public and concessionary holidays dates as and when these become known.  In your case, however, if you created a table
of first Mondays of each month say, the table would need to be updated if subsequently the regular dates were to change to another day in the month, e.g. 2nd Tuesday.  This would not be difficult to incorporate into the interface as it would involve no
more than deleting rows after the first Monday dates ceased to be appropriate, and inserting rows from that date onwards for the 2nd Tuesdays.
Ken Sheridan, Stafford, England

Similar Messages

  • When ever  enter the date start date up to next year same date between the days divided into 8 parts

    when ever  enter the date start date up to next year same date between the days divided into 8 parts
    Q1.1 (YYYY) = 1st half of Quarter 1 for year YYYY
    Q1.2 (YYYY) = 2nd half of Quarter1 for year YYYY
    Q2.1 (YYYY) = 1st half of Quarter 2 for year YYYY
    Q2.2 (YYYY) = 2nd half of Quarter 2 for year YYYY
    Q3.1 (YYYY) = 1st half of Quarter 3 for year YYYY
    Q3.2 (YYYY) = 2nd half of QuarterQ3 for year YYYY
    Q4.1 (YYYY) = 1st half of Quarter 4 for year YYYY
    Q4.2 (YYYY) = 2nd half of Quarter 4 for year YYYY
    Here YYYY depicts the year.
    e.g. Q1.2 (2014) depicts the 2nd half of Quarter 1 for year 2014.
    The description of these values are explained below.
    The table below provides the description about each value:
    Quarter     Quarter Range      Start Date
    Q1.1      1 Jan - 15 Feb         1st  Jan
    Q1.2      16 Feb-31 Mar         16th Feb
    Q2.1      1 Apr- 15 May          1st Apr
    Q2.2      16 May-30 June       16th May
    Q3.1      1 Jul-15 Aug             1th Jul
    Q3.2      16 Aug -30 Sep       16th Aug
    Q4.1      1 Oct -15 Nov           1st Oct
    Q4.2      16 Nov – 31 Dec      16th Nov
    The dropdown values in time window needs to be updated as per date entered by the user in the Audit Plan start date and
    should display the next four Quarter (each divided in 2 half  i.e. Eight values ) along with the year  from the selected Audit plan start date.
    for eg. If the Plan start date is given as August 10 2013 then the Time window will display the following options:                      
    Q3.2 (2013)                
    Q 4.1 (2013)               
    Q 4.2 (2013)               
    Q 1.1 (2014)               
    Q1.2 (2014)                
    Q2.1 (2014)                
    Q 2.2 (2014)               
    Q 3.1 (2014)               
    You can refer to the Table above and look that 10 Aug 2013 falls under the Q3.1 so Time window will display the next next 8 half Quarters ( Total 4 Quarter) till Q 3.1 for the year 2014.

    Hello,
    WITH half_quarters AS(
        SELECT  ADD_MONTHS(TRUNC(DATE '2013-08-15','Q'), 3*(LEVEL - 1)) hq_start
               ,1 part
        FROM    dual
        CONNECT BY ROWNUM <= 5
        UNION ALL
        SELECT  ADD_MONTHS(TRUNC(DATE '2013-08-15','Q'), 3*(LEVEL - 1) + 1) + 15 hq_start
               ,2 part
        FROM    dual
        CONNECT BY ROWNUM <= 5
    ,ordered_half_quarters AS(
        SELECT  hq_start
               ,part
               ,ROW_NUMBER() OVER (ORDER BY hq_start) r
        FROM    half_quarters
        WHERE   hq_start > DATE '2013-08-15'
    SELECT  'Q '||TO_CHAR(hq_start,'Q')||'.'||part||' ('||TO_CHAR(hq_start,'YYYY')||')' q
    FROM    ordered_half_quarters
    WHERE   r <= 8
    ORDER BY r;
    Q       
    Q 3.2 (2013) 
    Q 4.1 (2013) 
    Q 4.2 (2013) 
    Q 1.1 (2014) 
    Q 1.2 (2014) 
    Q 2.1 (2014) 
    Q 2.2 (2014) 
    Q 3.1 (2014) 
    half_quarters generates the start dates of every half of a quarter, starting with the begin of the first quarter that contains the sample date.
    The next step is to order the dates and to select only those after the sample date.
    The last part formats the output and orders the data.
    Regards
    Marcus

  • HT1918 I would like to change the data of my credit card. For the next year I live in Germany, I have a geman visa card, but I want the itunes and everything to be in english language. How can I do this?

    I would like to change the data of my credit card. For the next year I live in Germany, I have a german visa card, but I want the itunes and everything to be in english language. How can I do this?

    You cannot.

  • Date Picker with Previous and Next Year Options

    Hi All,
    I am implementing a date picker in my application which is tied to an attribute of type PA0001-BEGDA. Date Picker as such works fine but navigating to previous year and Next year options are not available. User has to go month by month to different years if they have to navigate.
    Is this the normal behavior of the Date Picker or am I missing something else to get the previous and Next year icons in the Date Picker.
    Thanks,
    Nagarajan.

    hmm..I tried using the select options and it did give the same date picker with the previous and Next navigation icons...The only problem with the select options is that its a single field which has the range and can accept multiple values too...
    I tried to figure out how the date picker that we use in the custom application and the one in Select Options differ but no luck...Does this ring any bell?
    Thanks,
    Nagarajan.

  • How to post depreciation start date in next year?

    I have a problem in fix asset period control.
    We want to post the depreciation start date in the next two month after GR. I set the period control rule as:
    Fiscal Year Variant: K4, period control: Z1 (next 2 month), month: 12, day: 31, period: 13
    But no matter I set the period as 12, 13, 14, the depreciation start date always be 2012/1/1 (if the GR date is in December)
    How can I make the depreciation start date in the next year?

    Hi,
    Please try with period control 08  - At the end of the year (=Start date of following year).
    Regards
    SM

  • Calculating the next meeting date and the number of days until that

    Hi all,
    I created a meeting log page and I made a query that returns the most recent meeting date:
    to_char("MFR_MEETING_LOG_MAIN"."ML_MEETING_DATE",'MM/DD/YYYY')
    What I want to do is to calculate the next meeting date which is 6 month after the most recent meeting and the number of days until the next meeting.
    How do I do that? THank you very much for the help in advance!

    Basic SQL:
    Datetime/Interval Arithmetic.
    ADD_MONTHS function.
    If you're new to Oracle and SQL it may be advisable at this point to complete the Database 2 Day Developer's Guide.

  • IPod Touch 5th Generation Australia Release Date? Last week I went to the Carindale Apple store located in Queensland and they had said they wont be getting it for a few months but they'll get it before next year. Anyone know the exact date ?

    So the question says it all. Last week, I went to the Carindale Apple Store located in Queensland to purchase a iPad 2 and a iPod Touch 5th Generation. I asked one of the shop assistants when they were getting the iPod Touch 5th Generations and they had said that they didnt know that they would recieve it in a few months but they'll recieve it before next year. Anyone know the OFFICIAL RELEASE DATE of it in Australia ? I want to order it online but my mum doesnt have a credit card, lol .

    No, Apple has not set a date.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • IDisk after next year?

    I use iDisk to Sync between computers (Home and Office), after next year that iDisk is no longer available........how can i do that? or should i look for a new service?
    Please help.
    Thanks for your comments.
    Eduardo

    No one can predict what will or won't work. You should be prepared in eventuality something does not work. Apple has already started by saying iCloud's setup won't work in less than 10.7.2 without virtualization of Windows, or using iOS 5.  Chronosync will work with a variety of network services you can find on regular internet providers. The advantage of iCloud that I can see is the seamless interface if you have hardware that all meets the requirements.  For those who don't mind a bit more of a learning curve, using more open tools probably is a better idea as long as one can't keep up to date with the changes Apple is making.

  • Getting about $3000 a day in iTunes charges I didn't make can't get history to pull up and can't reach a apple person, scheduled the next available call but it's the 2nd of next year and about 20,000 more dollars from, now went to the iTunes Store no help

    My iTunes account is hooked to my debit card and I have thousands of dollars per day coming out of my bank account.  I emailed apple several times to get a history so I can find out what the heck is going on and each time I get a generic message followed by a email with a bunch of links telling me how to access my iTunes history.  I attempt to do this and I get a message stating iTunes can not be reached.  So I go down to my local apple store and am told it's because I did not have wifi, they hook my phone to the apple store wifi and tell me they show no charges.  Yet I'm down approximately $12,000 so far and climbing.  I call my bank and cancel my debit card and attempt to contact apple again via a link they sent me to schedule a call.  When I schedule the call it gives me a message that we are sorry we are unable to schedule a call for you please try again later,  I try a future time and date and manage to schedule a telephone call for the second of next year.  Is there anyway to access what the **** is going on with my iTunes account in the meantime?  Apple doesn't seem to be able to see the charges I just see them on my bank side.
    And help is appreciated.

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

  • Absence Quota Carried Forward to Next Year

    Hi All
    hope you are doing well. I was looping around for carry forward remaining absence quota from one year to next year
    Requirement:
    Absence Quota  for 20 days generated from 01.01.2012 to 31,12.2012, deducted 4 days on december 2012
    but absence quota to next year i.e from 01.01.2013 to 31.12.2013 is showing as 20 wherein actual should be 16
    Followed Woods documents at Carry Forward Absence Quota but failed
    Configuration of Time Types, PCR and Schemas as folows, request your kind attention at earliest as its business critical
    Configured a constant at T511k
    Created two time types
    For Quota
    For carry forward
    PCR as follows
    Schema
    Request your kind attention on the same, helpful/ right answers will be rewarded with points
    BR
    Anil
    Message was edited by: Sikindar A

    Hi Anil,
    I just had a quick look at the PCRs and I think some things are wrong.
    First of all ZCMO controls if it's the last day of last month or not. If it is the schema will go through ZCFL.
    ZCFL reads the remain part of quota type 20. Please make sure you quota type is correct. I mean it's 20. I assume quota type is correct. PCR checks if remain of quota is equal or great than 20 then it put 20 into time type 0904.
    Until here you will have remain part of quota at last day of last month in time type 0904.
    Now you need a PCR to control if the date is first day of first month (01.01) reads value of 0904 and through a quota generation rule of V_T559L generate quota.
    I don't understand what ZCFT is for!
    Regards,
    Omid

  • Month-to-Date and Year-to-Date values in Query

    Hello experts,
    One of our BI reports has the following requirement: the user should be asked for the report date. After the user inputs the date, the report shows the key figures in three different "flavors": one is the values for that date, the second one is the cumulate values from the first day of the month of the report date to the report date itself, and the third is the cumulate values from the first day of the year of the report date to the report date itself.
      I created my report date variable based on 0CALDAY. Then I searched for SAP-exit variables that would help me achieve this, but could not really find any, except for 0P_ABO10, 0P_ABO11, 0P_ABO12 variables, all of them have as description "Start of Key Date Year". I tried creating a few selections in which the dates taken were defined as a range from each of these variables to the report date variable (for the year-to-date values), but I got the error "Variable 0P_ABO10 could not be substituted". I also got this error for the other two variables. And I could not find any SAP-exit variables like "Start of Key Date Month", in order to do the Month-to-Date part. My next try was to use the field "Key Date" with a variable in it, instead my own report date variable based on 0CALDAY, but it gave me the same errors.
    I searched the forums and found a few threads that looked useful, like
    First and Last day of month and
    1st day of month / 1st day of week variables
    However, they require some ABAP coding, and I do not know where to place the code (actually, I do not know where to work with ABAP code), and I also believe that I would have to do some changes to it.
    Any suggestions?

    Hi Pedro,
    You have to create customer exit in T_Code: CMOD
    1. Create a Z project
    2. Select RSR00001 as enhancement type.
    3. Go into include ZXRSRU01
    4. create a code like
    Here A is your variable based on 0calmonth with type customer exit and B is variable for 0calday.
    Try to write logic for your case taking this as example.
    WHEN 'A'.
        IF I_Step = 2.
          Loop at I_T_VAR_RANGE into L_T_VAR_RANGE where VNAM = 'B'.
            Concatenate L_T_VAR_RANGE-LOW(4) '001' into D1.
            Concatenate L_T_VAR_RANGE-LOW(4) '012' into D2.
            Clear L_S_Range.
            L_S_Range-low = D1.
            L_S_RANGE-high = D2.
            L_S_RANGE-sign = 'I'.
            L_S_RANGE-opt = 'BT'.
            Append L_S_Range to E_T_Range.
          ENDLOOP.
        ENDIF.
    If you want exact code I can help you in that.
    Thanks,
    Kams

  • Error while creating leave for next year

    Hi,
    Issue: while creating a leave for the next year (2010) for the quota type it is throwing an error u201Cthere is no quota availableu201D: Is there any configuration required. Pls, answer.
    Regards
    Srini

    Hi,
    Please also make sure that deduction periods for the quota are including the absence date you're trying to record.
    Also please goto 1. SPRO : Time management - time data recording and administration - managing time accounts using attendance/absence quotas - quota deduction using attendance/absence - define deduction rules (here note the deduction rule your quota is assigned to).
    2. SPRO : Time management - time data recording and administration - managing time accounts using attendance/absence quotas - quota deduction using attendance/absence - assign deduction rules to counting rules (here note the counting rule your deduction rule is assigned to).
    3. SPRO : Time management - time data recording and administration - Absences - Absence catalog - Absence counting - Assign counting rules to absence types (make sure the absence type you're trying to create is assigned to the right calculation rule)
    And one last option that comes to my mind : You can be using infotype 5 for absence quotas. Please check it out.
    Regards,
    Dilek
    Edited by: Dilek Ersoz Adak on Dec 21, 2009 7:57 AM

  • Can I upgrade MacBook Pro hard disk drive next year?

    Hi there!  I'm new to the Apple Support Communities! 
    I am going to buy a new 13" MacBook Pro, 2.5GHz.  I am going to buy the base model, with a 500GB 5400 RPM hard disk drive.  Right now, I can't afford a 256GB solid-state drive, but I'll have enough for one by later next year.  So, I will have done some stuff on my Mac by the time I can upgrade it. I know how to install the drive itself, but how do I transfer my information?
    Here are the issues:
    1) I don't know how I would make it so I could boot from an external USB. 
    2) And I don't know how to get all my personal information from one drive to the other. 
    For "2", I think I could back up my Mac to a hard drive with Time Machine, and then restore from a backup.  But Time Machine couldn't back up the whole OS, right?  And what would the procedure be anyway?  Just turn it on when I'm done the upgrade?
    If someone who has done this before could provide step-by-step instructions, I would really appreciate it!
    Thanks,
    Solid-State Me 

    Yes you can replace the hard drive at any time.  Purchase a replacement drive from any store you like - newegg or mcetech are good stores (among many others) - and when you purchase the new drive, also purchase a drive enclosure.  Then download a program called "super duper" and follow the instructions to use that software.  When your drive arrives, put the new drive in the enclosure, plug it in to your computer and run "super duper" with the option to "make the drive bootable" and let it finish.  What it's doing is copying your drive onto the new drive.  Once the copy is finished, you can shut down your computer, remove the drive, install the new one, and put the original drive into the enclosure.  Now you have an external hard drive that is repurposed instead of throwing it away.  Keep that drive intact for a few weeks without erasing or adding data to be sure you are happy with the new drive and how it performs.  After that, use the drive to store files, backup the internal, transfer stuff, whatever.

  • After 1 year earned leave should generate and pro-rata quota should generate next year on jan 1st.

    Hi Experts,
    Here is the client requirement and please let me know how to solve this.
    Earned Leave: after 1 year earned leave should generate and pro-rata quota should generate next year on jan 1st.
    Example: if employee joins on 01/07/2012 after 1 year i.e 01/07/2013 quota should generate 22 days next year on 01/01/2014 pro-rata quota i.e 01/07/2013, 11 days pro-rata quota should generate. Total 22+11 =33 have to generate on 01/01/2014. and next year 01/01/2015 (22+11+22)=55.
    Note: on 1/7/2013 = 22 days
    on 1/1/2014 = 11 days +22 days; total=33
    on 1/1/2015 = 33 days +22 days; total=55
    Conditions: if employee joins before 15th date of current month include the current month, if employee joins after 15th date exclude the current month.

    You will need 2-3 PCRs to address this.
    In one PCR you need to query the Date of Hire (from IT0041 - I guess you are maintaining this) using HRS=YDAYxx - where xx is the date type. You can then check it it is the first year anniversary or not by using HRS?01. If the condition satisfies populate a custom time type with 22 days.
    In another PCR, you need to check for 01 Jan by using HRS=BCURMO and HRS=BCURDY. In this PCR check again the length of service (see above). If it is more than 1, then proceed to give the pro-rata amount.
    If the pro-rata formula is simple you can use the second PCR or you would need a 3rd PCR to get the pro rata amount. Using HRS=Y**** operator you can query many date differences which will help.
    Regards
    Pramod

Maybe you are looking for

  • MacBook to HDTV via Mini-DVI to DVI-HDMI.

    Okay guys, here's specific question about color calibration / resolution with DVI-HDMI output from my MacBook (or maybe any machine) to my LNT-4665. I've been trolling the forums for an answer. If you know of a thread, let me know. The TV: Samsung LN

  • Sending SMS/text  - how do I know it has been delivered?

    I send a text message ( SMS ) with my iPhone. It's coming up as a green field to the right in messages. How do I know it has actually been delivered to the person I'm sending it too? How do I know the recipient doesn't has the phone switched off? Is

  • IWeb '08  Color of Photos on a Photo Page

    I installed iWeb '08 selected a template, choose the photo page, posted the photos but when I view them they are much darker and too red. Nothing like the original images. I can't correct them using the inspector as it does not work for photo pages.

  • Disable certain changes in sales order after production order release

    We are in the MTO scenario and are also using variant configuration. The business requirement is that after a production order has been released (REL status) the preceding sales order item should be "locked" for certain changes. Such changes would in

  • Unable to select restore or update button in ipod updater

    I'm trying to fix my ipod mini. I get the folder with an exlamation mark when it's turned on. I've learnt that I probably need to restore my ipod. I've just downloaded the latest version of itunes and the ipod updater but each time I get the dialog b