Ask a Question related to Adobe Photoshop Elements, Design and Development.
-
Johnny Lui #1
Warning message
Hi Everyone,
I'll explain what I'm doing first. At the moment, I am
doing a record search via a form. I like to know if it's
possible to display an error message if that record
doesn't exist. Currently, it displays a blank form which
isn't too informative for the user.
If someone could help me with this, it would be greatly
appreciated.
Thanks in advance.
Cheers,
Johnny.
Johnny Lui Guest
-
Warning Message Pop-Up - Acrobat PRO
Before we upgrade to Acrobat PRO, we would like to know if the option exists in the set actions menu for a button, to query the user to confirm their... -
warning message (alert)
Hi, I want to create the alert message ' You are about to over writte the acct, do you wish to continue?'). I need two buttons here, YES/ NO. If... -
Please, once & for all, Explain the Warning message!
I'm sorry, but I'm having problems with the horrible message that means nothing to me. LOL Warning: No pixels are more than 50% selected. The... -
Help with Warning Message please
I have to tell someone - Photoshop has to be the worst piece of Software in my computer as far as User Friendly goes... It's not going back in it's... -
cdrecord warning message
I recently rebuilt my system. I didn't use to get this message: cdrecord: Operation not permitted. WARNING: Cannot set RR-scheduler cdrecord:... -
Eric J. Williams #2
Re: Warning message
If you are doing your record search via a recordset you should be able to
use the nomatch property.
For example:
....
If rsClone.nomatch Then MsgBox "No records satisfy the specified search
criteria", vbExclamation, "No Match"
....
I hope this helps.
Eric
"Johnny Lui" <jlui@keromail.com> wrote in message
news:055101c35182$63d94e90$a501280a@phx.gbl...
| Hi Everyone,
|
| I'll explain what I'm doing first. At the moment, I am
| doing a record search via a form. I like to know if it's
| possible to display an error message if that record
| doesn't exist. Currently, it displays a blank form which
| isn't too informative for the user.
|
| If someone could help me with this, it would be greatly
| appreciated.
|
| Thanks in advance.
|
|
| Cheers,
|
| Johnny.
Eric J. Williams Guest
-
Johnny Lui #3
Re: Warning message
Hi Eric,
Thanks for your reply.
Unfortunately, I'm using a query to do the search. Can you
do via the query?
Thanks again.
Cheers,
Johnny.
should be able to>-----Original Message-----
>If you are doing your record search via a recordset youspecified search>use the nomatch property.
>
>For example:
>....
>If rsClone.nomatch Then MsgBox "No records satisfy the>criteria", vbExclamation, "No Match"
>....
>
>I hope this helps.
>
>Eric
>
>
>"Johnny Lui" <jlui@keromail.com> wrote in message
>news:055101c35182$63d94e90$a501280a@phx.gbl...
>| Hi Everyone,
>|
>| I'll explain what I'm doing first. At the moment, I am
>| doing a record search via a form. I like to know if it's
>| possible to display an error message if that record
>| doesn't exist. Currently, it displays a blank form which
>| isn't too informative for the user.
>|
>| If someone could help me with this, it would be greatly
>| appreciated.
>|
>| Thanks in advance.
>|
>|
>| Cheers,
>|
>| Johnny.
>
>
>.
>Johnny Lui Guest
-
Ken Snell #4
Re: Warning message
Try using the DCount function:
If DCount("*", "QueryName", "[FieldName]="somevalue") = 0 Then
MsgBox "No matches found."
Exit Sub
End If
If the query is the form's recordsource, you could use this:
If DCount("*", Me.RecordSource, "[FieldName]="somevalue") = 0 Then
MsgBox "No matches found."
Exit Sub
End If
Note that the criterion expression might not be needed for the second
example, depending upon how you were filtering your form.
If you can provide more info about your form and the query, we can revise
the code more specifically for you.
--
Ken Snell
<MS ACCESS MVP>
"Johnny Lui" <jlui@keromail.com> wrote in message
news:055101c35182$63d94e90$a501280a@phx.gbl...> Hi Everyone,
>
> I'll explain what I'm doing first. At the moment, I am
> doing a record search via a form. I like to know if it's
> possible to display an error message if that record
> doesn't exist. Currently, it displays a blank form which
> isn't too informative for the user.
>
> If someone could help me with this, it would be greatly
> appreciated.
>
> Thanks in advance.
>
>
> Cheers,
>
> Johnny.
Ken Snell Guest
-
Johnny Lui #5
Re: Warning message
Hi Ken,
Thanks for your reply.
Here's the query:
SELECT tblProducts.[Catalog Number], tblProducts.[Catalog
Description], tblProducts.[Company Name], tblProducts.P1,
tblProducts.P2, tblProducts.Description
FROM tblProducts
WHERE (((tblProducts.[Catalog Number])=[Please enter the
Catalog Number (do not include spaces or hyphens):]));
Is there a way to put the Dcount function you mention in
the query?
Thanks again.
Cheers,
Johnny.
= 0 Then>-----Original Message-----
>Try using the DCount function:
>
> If DCount("*", "QueryName", "[FieldName]="somevalue")this:> MsgBox "No matches found."
> Exit Sub
> End If
>
>If the query is the form's recordsource, you could use="somevalue") = 0 Then> If DCount("*", Me.RecordSource, "[FieldName]for the second> MsgBox "No matches found."
> Exit Sub
> End If
>
>Note that the criterion expression might not be neededquery, we can revise>example, depending upon how you were filtering your form.
>
>If you can provide more info about your form and the>the code more specifically for you.
>--
> Ken Snell
><MS ACCESS MVP>
>
>
>"Johnny Lui" <jlui@keromail.com> wrote in message
>news:055101c35182$63d94e90$a501280a@phx.gbl...>>> Hi Everyone,
>>
>> I'll explain what I'm doing first. At the moment, I am
>> doing a record search via a form. I like to know if it's
>> possible to display an error message if that record
>> doesn't exist. Currently, it displays a blank form which
>> isn't too informative for the user.
>>
>> If someone could help me with this, it would be greatly
>> appreciated.
>>
>> Thanks in advance.
>>
>>
>> Cheers,
>>
>> Johnny.
>
>.
>Johnny Lui Guest
-
Johnny Lui #6
Re: Warning message
Hi Ken,
Thankyou so much for your reply again.
Yes, the user is typing a value into a textbox on the
form. It has a search button, so when they press it,
another form pops up and displays the record. However, I
want it to display a error message if the record doesn't
exist.
Thanks in advance.
Cheers,
Johnny.
form that is>-----Original Message-----
>It doesn't go in the query. It goes in VBA code in yourdetails about how your>"calling" the query.
>
>Before I get into more details, please provide moretextbox on the form? what>form is set up: your user is typing a value into athe DCount>is happening? Then we can best determine how you can use[Catalog>function.
>
>--
> Ken Snell
><MS ACCESS MVP>
>
>"Johnny Lui" <jlui@keromail.com> wrote in message
>news:09c901c351b1$f671f2f0$a301280a@phx.gbl...>> Hi Ken,
>>
>> Thanks for your reply.
>>
>> Here's the query:
>>
>> SELECT tblProducts.[Catalog Number], tblProducts.tblProducts.P1,>> Description], tblProducts.[Company Name],="somevalue")>> tblProducts.P2, tblProducts.Description
>> FROM tblProducts
>> WHERE (((tblProducts.[Catalog Number])=[Please enter the
>> Catalog Number (do not include spaces or hyphens):]));
>>
>> Is there a way to put the Dcount function you mention in
>> the query?
>>
>> Thanks again.
>>
>>
>> Cheers,
>>
>> Johnny.
>>
>>>> >-----Original Message-----
>> >Try using the DCount function:
>> >
>> > If DCount("*", "QueryName", "[FieldName]form.>> = 0 Then>> this:>> > MsgBox "No matches found."
>> > Exit Sub
>> > End If
>> >
>> >If the query is the form's recordsource, you could use>> ="somevalue") = 0 Then>> > If DCount("*", Me.RecordSource, "[FieldName]>> for the second>> > MsgBox "No matches found."
>> > Exit Sub
>> > End If
>> >
>> >Note that the criterion expression might not be needed>> >example, depending upon how you were filtering youram>> query, we can revise>> >
>> >If you can provide more info about your form and the>> >the code more specifically for you.
>> >--
>> > Ken Snell
>> ><MS ACCESS MVP>
>> >
>> >
>> >"Johnny Lui" <jlui@keromail.com> wrote in message
>> >news:055101c35182$63d94e90$a501280a@phx.gbl...
>> >> Hi Everyone,
>> >>
>> >> I'll explain what I'm doing first. At the moment, Iit's>> >> doing a record search via a form. I like to know ifwhich>> >> possible to display an error message if that record
>> >> doesn't exist. Currently, it displays a blank formgreatly>> >> isn't too informative for the user.
>> >>
>> >> If someone could help me with this, it would be>>> >> appreciated.
>> >>
>> >> Thanks in advance.
>> >>
>> >>
>> >> Cheers,
>> >>
>> >> Johnny.
>> >
>> >
>> >.
>> >
>
>.
>Johnny Lui Guest
-
Johnny Lui #7
Re: Warning message
This is the what the search button does the moment:
Option Compare Database
Private Sub Command2_Click()
On Error GoTo Err_Command2_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmProducts"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command2_Click:
Exit Sub
Err_Command2_Click:
MsgBox Err.Description
Resume Exit_Command2_Click
End Subthe>-----Original Message-----
>Hi Ken,
>
>Thankyou so much for your reply again.
>
>Yes, the user is typing a value into a textbox on the
>form. It has a search button, so when they press it,
>another form pops up and displays the record. However, I
>want it to display a error message if the record doesn't
>exist.
>
>Thanks in advance.
>
>
>Cheers,
>
>Johnny.
>>form that is>>-----Original Message-----
>>It doesn't go in the query. It goes in VBA code in your>details about how your>>"calling" the query.
>>
>>Before I get into more details, please provide more>textbox on the form? what>>form is set up: your user is typing a value into a>the DCount>>is happening? Then we can best determine how you can use>[Catalog>>function.
>>
>>--
>> Ken Snell
>><MS ACCESS MVP>
>>
>>"Johnny Lui" <jlui@keromail.com> wrote in message
>>news:09c901c351b1$f671f2f0$a301280a@phx.gbl...>>> Hi Ken,
>>>
>>> Thanks for your reply.
>>>
>>> Here's the query:
>>>
>>> SELECT tblProducts.[Catalog Number], tblProducts.>tblProducts.P1,>>> Description], tblProducts.[Company Name],>>> tblProducts.P2, tblProducts.Description
>>> FROM tblProducts
>>> WHERE (((tblProducts.[Catalog Number])=[Please enterin>>> Catalog Number (do not include spaces or hyphens):]));
>>>
>>> Is there a way to put the Dcount function you mention>="somevalue")>>> the query?
>>>
>>> Thanks again.
>>>
>>>
>>> Cheers,
>>>
>>> Johnny.
>>>
>>>
>>> >-----Original Message-----
>>> >Try using the DCount function:
>>> >
>>> > If DCount("*", "QueryName", "[FieldName]>form.>>> = 0 Then
>>> > MsgBox "No matches found."
>>> > Exit Sub
>>> > End If
>>> >
>>> >If the query is the form's recordsource, you could use
>>> this:
>>> > If DCount("*", Me.RecordSource, "[FieldName]
>>> ="somevalue") = 0 Then
>>> > MsgBox "No matches found."
>>> > Exit Sub
>>> > End If
>>> >
>>> >Note that the criterion expression might not be needed
>>> for the second
>>> >example, depending upon how you were filtering your>am>>> >
>>> >If you can provide more info about your form and the
>>> query, we can revise
>>> >the code more specifically for you.
>>> >--
>>> > Ken Snell
>>> ><MS ACCESS MVP>
>>> >
>>> >
>>> >"Johnny Lui" <jlui@keromail.com> wrote in message
>>> >news:055101c35182$63d94e90$a501280a@phx.gbl...
>>> >> Hi Everyone,
>>> >>
>>> >> I'll explain what I'm doing first. At the moment, I>it's>>> >> doing a record search via a form. I like to know if>which>>> >> possible to display an error message if that record
>>> >> doesn't exist. Currently, it displays a blank form>greatly>>> >> isn't too informative for the user.
>>> >>
>>> >> If someone could help me with this, it would be>.>>>>> >> appreciated.
>>> >>
>>> >> Thanks in advance.
>>> >>
>>> >>
>>> >> Cheers,
>>> >>
>>> >> Johnny.
>>> >
>>> >
>>> >.
>>> >
>>
>>.
>>
>Johnny Lui Guest
-
Ken Snell #8
Re: Warning message
Here's one way to do what you seek (I have not tested this exact code, so it
may need a bit of tweaking):
---------------------------------------------------
Private Sub Command2_Click()
On Error GoTo Err_Command2_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmProducts"
DoCmd.OpenForm stDocName, , , stLinkCriteria, , acHidden
If DCount("*", Forms(stDocName).Form.RecordSource) = 0 Then
MsgBox "There are no records to display."
DoCmd.Close acForm, Forms(stDocName).Form.Name
Else
Forms(stDocName).Form.Visible = True
End If
Exit_Command2_Click:
Exit Sub
Err_Command2_Click:
MsgBox Err.Description
Resume Exit_Command2_Click
End Sub
------------------------------------------------------
--
Ken Snell
<MS ACCESS MVP>
"Johnny Lui" <jlui@keromail.com> wrote in message
news:089a01c35270$54705a90$a101280a@phx.gbl...> This is the what the search button does the moment:
>
> Option Compare Database
>
> Private Sub Command2_Click()
> On Error GoTo Err_Command2_Click
>
> Dim stDocName As String
> Dim stLinkCriteria As String
>
> stDocName = "frmProducts"
>
> DoCmd.OpenForm stDocName, , , stLinkCriteria
>
> Exit_Command2_Click:
> Exit Sub
>
> Err_Command2_Click:
> MsgBox Err.Description
> Resume Exit_Command2_Click
>
> End Sub> the> >-----Original Message-----
> >Hi Ken,
> >
> >Thankyou so much for your reply again.
> >
> >Yes, the user is typing a value into a textbox on the
> >form. It has a search button, so when they press it,
> >another form pops up and displays the record. However, I
> >want it to display a error message if the record doesn't
> >exist.
> >
> >Thanks in advance.
> >
> >
> >Cheers,
> >
> >Johnny.
> >> >form that is> >>-----Original Message-----
> >>It doesn't go in the query. It goes in VBA code in your> >details about how your> >>"calling" the query.
> >>
> >>Before I get into more details, please provide more> >textbox on the form? what> >>form is set up: your user is typing a value into a> >the DCount> >>is happening? Then we can best determine how you can use> >[Catalog> >>function.
> >>
> >>--
> >> Ken Snell
> >><MS ACCESS MVP>
> >>
> >>"Johnny Lui" <jlui@keromail.com> wrote in message
> >>news:09c901c351b1$f671f2f0$a301280a@phx.gbl...
> >>> Hi Ken,
> >>>
> >>> Thanks for your reply.
> >>>
> >>> Here's the query:
> >>>
> >>> SELECT tblProducts.[Catalog Number], tblProducts.> >tblProducts.P1,> >>> Description], tblProducts.[Company Name],> >>> tblProducts.P2, tblProducts.Description
> >>> FROM tblProducts
> >>> WHERE (((tblProducts.[Catalog Number])=[Please enter> in> >>> Catalog Number (do not include spaces or hyphens):]));
> >>>
> >>> Is there a way to put the Dcount function you mention> >="somevalue")> >>> the query?
> >>>
> >>> Thanks again.
> >>>
> >>>
> >>> Cheers,
> >>>
> >>> Johnny.
> >>>
> >>>
> >>> >-----Original Message-----
> >>> >Try using the DCount function:
> >>> >
> >>> > If DCount("*", "QueryName", "[FieldName]> >form.> >>> = 0 Then
> >>> > MsgBox "No matches found."
> >>> > Exit Sub
> >>> > End If
> >>> >
> >>> >If the query is the form's recordsource, you could use
> >>> this:
> >>> > If DCount("*", Me.RecordSource, "[FieldName]
> >>> ="somevalue") = 0 Then
> >>> > MsgBox "No matches found."
> >>> > Exit Sub
> >>> > End If
> >>> >
> >>> >Note that the criterion expression might not be needed
> >>> for the second
> >>> >example, depending upon how you were filtering your> >am> >>> >
> >>> >If you can provide more info about your form and the
> >>> query, we can revise
> >>> >the code more specifically for you.
> >>> >--
> >>> > Ken Snell
> >>> ><MS ACCESS MVP>
> >>> >
> >>> >
> >>> >"Johnny Lui" <jlui@keromail.com> wrote in message
> >>> >news:055101c35182$63d94e90$a501280a@phx.gbl...
> >>> >> Hi Everyone,
> >>> >>
> >>> >> I'll explain what I'm doing first. At the moment, I> >it's> >>> >> doing a record search via a form. I like to know if> >which> >>> >> possible to display an error message if that record
> >>> >> doesn't exist. Currently, it displays a blank form> >greatly> >>> >> isn't too informative for the user.
> >>> >>
> >>> >> If someone could help me with this, it would be> >.> >>> >> appreciated.
> >>> >>
> >>> >> Thanks in advance.
> >>> >>
> >>> >>
> >>> >> Cheers,
> >>> >>
> >>> >> Johnny.
> >>> >
> >>> >
> >>> >.
> >>> >
> >>
> >>
> >>.
> >>
> >
Ken Snell Guest
-
Ken Snell #9
Re: Warning message
Shucks.....my home base is about 1/2 way around the world from you! Guess
you'll have to drink that coffee!
--
Ken Snell
<MS ACCESS MVP>
"Johnny Lui" <jlui@keromail.com> wrote in message
news:2afd01c3549f$d41a4310$a001280a@phx.gbl...> Hi Ken,
>
> That code worked perfectly. Your help was greatly
> appreicated.
>
> If you are in Australia, Sydney, NSW, Frenchs Forest 2086,
> I'll buy you coffee.
>
> Thanks again.
>
>
> Cheers,
>
> Johnny.> this exact code, so it> >-----Original Message-----
> >Here's one way to do what you seek (I have not tested> acHidden> >may need a bit of tweaking):
> >---------------------------------------------------
> >Private Sub Command2_Click()
> >On Error GoTo Err_Command2_Click
> >
> > Dim stDocName As String
> > Dim stLinkCriteria As String
> >
> > stDocName = "frmProducts"
> >
> > DoCmd.OpenForm stDocName, , , stLinkCriteria, ,> 0 Then> > If DCount("*", Forms(stDocName).Form.RecordSource) => I> > MsgBox "There are no records to display."
> > DoCmd.Close acForm, Forms(stDocName).Form.Name
> > Else
> > Forms(stDocName).Form.Visible = True
> > End If
> >
> >Exit_Command2_Click:
> > Exit Sub
> >
> >Err_Command2_Click:
> > MsgBox Err.Description
> > Resume Exit_Command2_Click
> >
> >End Sub
> >------------------------------------------------------
> >
> >--
> > Ken Snell
> ><MS ACCESS MVP>
> >
> >"Johnny Lui" <jlui@keromail.com> wrote in message
> >news:089a01c35270$54705a90$a101280a@phx.gbl...> >> This is the what the search button does the moment:
> >>
> >> Option Compare Database
> >>
> >> Private Sub Command2_Click()
> >> On Error GoTo Err_Command2_Click
> >>
> >> Dim stDocName As String
> >> Dim stLinkCriteria As String
> >>
> >> stDocName = "frmProducts"
> >>
> >> DoCmd.OpenForm stDocName, , , stLinkCriteria
> >>
> >> Exit_Command2_Click:
> >> Exit Sub
> >>
> >> Err_Command2_Click:
> >> MsgBox Err.Description
> >> Resume Exit_Command2_Click
> >>
> >> End Sub
> >> >-----Original Message-----
> >> >Hi Ken,
> >> >
> >> >Thankyou so much for your reply again.
> >> >
> >> >Yes, the user is typing a value into a textbox on the
> >> >form. It has a search button, so when they press it,
> >> >another form pops up and displays the record. However,> doesn't> >> >want it to display a error message if the record> your> >> >exist.
> >> >
> >> >Thanks in advance.
> >> >
> >> >
> >> >Cheers,
> >> >
> >> >Johnny.
> >> >
> >> >>-----Original Message-----
> >> >>It doesn't go in the query. It goes in VBA code in> use> >> >form that is
> >> >>"calling" the query.
> >> >>
> >> >>Before I get into more details, please provide more
> >> >details about how your
> >> >>form is set up: your user is typing a value into a
> >> >textbox on the form? what
> >> >>is happening? Then we can best determine how you can> hyphens):]));> >> >the DCount
> >> >>function.
> >> >>
> >> >>--
> >> >> Ken Snell
> >> >><MS ACCESS MVP>
> >> >>
> >> >>"Johnny Lui" <jlui@keromail.com> wrote in message
> >> >>news:09c901c351b1$f671f2f0$a301280a@phx.gbl...
> >> >>> Hi Ken,
> >> >>>
> >> >>> Thanks for your reply.
> >> >>>
> >> >>> Here's the query:
> >> >>>
> >> >>> SELECT tblProducts.[Catalog Number], tblProducts.
> >> >[Catalog
> >> >>> Description], tblProducts.[Company Name],
> >> >tblProducts.P1,
> >> >>> tblProducts.P2, tblProducts.Description
> >> >>> FROM tblProducts
> >> >>> WHERE (((tblProducts.[Catalog Number])=[Please enter
> >> the
> >> >>> Catalog Number (do not include spaces or> mention> >> >>>
> >> >>> Is there a way to put the Dcount function you> use> >> in
> >> >>> the query?
> >> >>>
> >> >>> Thanks again.
> >> >>>
> >> >>>
> >> >>> Cheers,
> >> >>>
> >> >>> Johnny.
> >> >>>
> >> >>>
> >> >>> >-----Original Message-----
> >> >>> >Try using the DCount function:
> >> >>> >
> >> >>> > If DCount("*", "QueryName", "[FieldName]
> >> >="somevalue")
> >> >>> = 0 Then
> >> >>> > MsgBox "No matches found."
> >> >>> > Exit Sub
> >> >>> > End If
> >> >>> >
> >> >>> >If the query is the form's recordsource, you could> needed> >> >>> this:
> >> >>> > If DCount("*", Me.RecordSource, "[FieldName]
> >> >>> ="somevalue") = 0 Then
> >> >>> > MsgBox "No matches found."
> >> >>> > Exit Sub
> >> >>> > End If
> >> >>> >
> >> >>> >Note that the criterion expression might not be> the> >> >>> for the second
> >> >>> >example, depending upon how you were filtering your
> >> >form.
> >> >>> >
> >> >>> >If you can provide more info about your form and> moment, I> >> >>> query, we can revise
> >> >>> >the code more specifically for you.
> >> >>> >--
> >> >>> > Ken Snell
> >> >>> ><MS ACCESS MVP>
> >> >>> >
> >> >>> >
> >> >>> >"Johnny Lui" <jlui@keromail.com> wrote in message
> >> >>> >news:055101c35182$63d94e90$a501280a@phx.gbl...
> >> >>> >> Hi Everyone,
> >> >>> >>
> >> >>> >> I'll explain what I'm doing first. At the> if> >> >am
> >> >>> >> doing a record search via a form. I like to know> record> >> >it's
> >> >>> >> possible to display an error message if that> form> >> >>> >> doesn't exist. Currently, it displays a blank> >> >> >which
> >> >>> >> isn't too informative for the user.
> >> >>> >>
> >> >>> >> If someone could help me with this, it would be
> >> >greatly
> >> >>> >> appreciated.
> >> >>> >>
> >> >>> >> Thanks in advance.
> >> >>> >>
> >> >>> >>
> >> >>> >> Cheers,
> >> >>> >>
> >> >>> >> Johnny.
> >> >>> >
> >> >>> >
> >> >>> >.
> >> >>> >
> >> >>
> >> >>
> >> >>.
> >> >>
> >> >.
> >> >
> >
> >.
> >
Ken Snell Guest
-
Byron Gale #10
Re: Warning Message
Marvin,
It's a conflict between your feather setting, and your selection area.
Your feather setting is large enough (or selection small enough) so that your selection doesn't include any pixels that are more than 50% (density? presence? someone help with the correct term, please!).
Either lower your feather setting, or increase the area you are selecting.
HTH,
Byron
Byron Gale Guest
-
Dick Smith #11
Re: Warning Message
Also make sure that you are on the correct layer in the layers
pallette.
dick
Dick Smith Guest
-
Marvin Horlick #12
Re: Warning Message
Thank you Bryon and Dick! I appreciate the response and it helped!
Marvin Horlick Guest



Reply With Quote

