MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old May 12th, 2002, 02:42 AM   #1
Phil C
Board Regular
 
Join Date: Apr 2002
Location: NSW. Australia
Posts: 64
Default

Can anyone tell me why the following code will not work.
Private Sub cmdNextPage_Click()
Dim page As Integer
page = activesheet.Select
If page = 40 Then
page = 1
Else
page = page + 1
End If
End Sub

Thanks in advance.
Phil C is offline   Reply With Quote
Old May 12th, 2002, 02:44 AM   #2
Juan Pablo González
MrExcel MVP
 
Join Date: Feb 2002
Location: Bogota, Colombia
Posts: 11,927
Default

Quote:
On 2002-05-12 01:42, Phil C wrote:
Can anyone tell me why the following code will not work.
Private Sub cmdNextPage_Click()
Dim page As Integer
page = activesheet.Select
If page = 40 Then
page = 1
Else
page = page + 1
End If
End Sub

Thanks in advance.
Some things:

page is an integer (a Number)
page = ActiveSheet.Select

causes (Or should) an error because you're trying to do something like

Number = Worksheet

I think you're trying to use the ActiveSheet.Index property.
__________________
Regards,

Juan Pablo González
http://www.juanpg.com
Juan Pablo González is offline   Reply With Quote
Old May 12th, 2002, 02:53 AM   #3
Phil C
Board Regular
 
Join Date: Apr 2002
Location: NSW. Australia
Posts: 64
Default

Thanks Jaun Pablo G.
I changed the ActiveSheet.Select to the ActiveSheet.Index and the code works fine except the userform exits. How do I stop the form from unloading?

Thanks
Phil C is offline   Reply With Quote
Old May 12th, 2002, 02:55 AM   #4
Juan Pablo González
MrExcel MVP
 
Join Date: Feb 2002
Location: Bogota, Colombia
Posts: 11,927
Default

I don't see anything that should cause that, what other code are you using in that form ?
__________________
Regards,

Juan Pablo González
http://www.juanpg.com
Juan Pablo González is offline   Reply With Quote
Old May 12th, 2002, 03:00 AM   #5
Phil C
Board Regular
 
Join Date: Apr 2002
Location: NSW. Australia
Posts: 64
Default

Here is the full code for the form.

Option Explicit
Dim rownumber As Integer
Private Sub cboNameAddress_Change()
lblLicence2.Caption = Sheets("Client Details").Cells(cboNameAddress.ListIndex + 1, 2)
txtImportExport.SetFocus
End Sub

Private Sub cmdNextPage_Click()
On Error GoTo 1
activesheet.Next.Select
End
1: Sheets(2).Select
End Sub

Private Sub cmdPreviousPage_Click()
Dim page As Integer
page = activesheet.Index
If page = 1 Then
page = 40
Else
page = page + 1
End If
End Sub

Private Sub cmdAddRecord_Click()
Range("L8:O8").Select
Selection.Copy
Cells(rownumber, 12).Select 'selects row and cell no 12
activesheet.Paste
Range("T8:Z8").Select
Selection.Copy
Cells(rownumber, 20).Select
activesheet.Paste
Cells(rownumber, 1).Value = txtDate
Cells(rownumber, 1) = Format((txtDate.Text), "m/d/yyyy")
Cells(rownumber, 1).HorizontalAlignment = xlCenter
Cells(rownumber, 1).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 2).Value = txtMale
Cells(rownumber, 2) = Format((txtMale.Text), "@")
Cells(rownumber, 2).HorizontalAlignment = xlCenter
Cells(rownumber, 2).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 3).Value = txtFemale
Cells(rownumber, 3) = Format((txtFemale.Text), "@")
Cells(rownumber, 3).HorizontalAlignment = xlCenter
Cells(rownumber, 3).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 4).Value = txtUnknown
Cells(rownumber, 4) = Format((txtUnknown.Text), "@")
Cells(rownumber, 4).HorizontalAlignment = xlCenter
Cells(rownumber, 4).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 5).Value = cboMethod
Cells(rownumber, 5) = Format((cboMethod.Text), "@")
Cells(rownumber, 5).HorizontalAlignment = xlCenter
Cells(rownumber, 5).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 6).Value = cboNameAddress
Cells(rownumber, 6) = Format((cboNameAddress.Text), "@")
Cells(rownumber, 6).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 7).Value = lblLicence2
Cells(rownumber, 7).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, .Value = txtImportExport
Cells(rownumber, .Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 9).Value = txtSaleNumber
Cells(rownumber, 9).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 10).Value = txtFaunaIn
Cells(rownumber, 10) = Format((txtFaunaIn.Text), "@")
Cells(rownumber, 10).HorizontalAlignment = xlCenter
Cells(rownumber, 10).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 11).Value = txtFaunaOut
Cells(rownumber, 11) = Format((txtFaunaOut.Text), "@")
Cells(rownumber, 11).HorizontalAlignment = xlCenter
Cells(rownumber, 11).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 12).HorizontalAlignment = xlCenter
Cells(rownumber, 12).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 13).Select
Cells(rownumber, 13).HorizontalAlignment = xlCenter
Cells(rownumber, 13).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 14).Select
Cells(rownumber, 14).HorizontalAlignment = xlCenter
Cells(rownumber, 14).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 15).Select
Cells(rownumber, 15).HorizontalAlignment = xlCenter
Cells(rownumber, 15).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 16).Value = txtRecordNo
Cells(rownumber, 16).Select
Cells(rownumber, 16).HorizontalAlignment = xlCenter
Cells(rownumber, 16).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 17).Value = txtRecordYear
Cells(rownumber, 17) = Format((txtRecordYear.Text), "@")
Cells(rownumber, 17).Select
Cells(rownumber, 17).HorizontalAlignment = xlCenter
Cells(rownumber, 17).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 18).Value = txtOtherComments
Cells(rownumber, 18).Select
Cells(rownumber, 18).HorizontalAlignment = xlCenter
Cells(rownumber, 18).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Cells(rownumber, 19).Value = txtPrice
Cells(rownumber, 19) = Format((txtPrice.Text), "$#,##0.00")
Cells(rownumber, 19).HorizontalAlignment = xlCenter
Cells(rownumber, 19).Select
Selection.Borders(xlEdgeTop).LineStyle = xlNone
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
End Sub

Private Sub cmdExit_Click()
Unload frmBirdDetails
End Sub

Private Sub cmdNextRecord_Click()
rownumber = rownumber + 1
txtDate.Value = ""
txtImportExport.Value = ""
txtOtherComments.Value = ""
txtRecordNo.Value = ""
txtRecordYear.Value = ""
txtOtherComments.Value = ""
cboMethod.Value = ""
txtPrice.Value = ""
txtSaleNumber.Value = ""
txtMale.Value = ""
txtFemale.Value = ""
txtUnknown.Value = ""
txtFaunaIn.Value = ""
txtFaunaOut.Value = ""
txtDate.SetFocus
End Sub

Private Sub cmdAddRecord2_Click()
Sheets("Client Details").Select
Cells(rownumber, 1).Value = txtNameAddress
Cells(rownumber, 2).Value = txtLicence2
Cells(rownumber, 3).Value = cboAreaCode
Cells(rownumber, 4).Value = txtPhoneNo
Range("A2:D40").Select
Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Range("G8").Select
End Sub

Private Sub cmdExit2_Click()
Unload frmBirdDetails
End Sub

Private Sub cmdNext2_Click()
rownumber = rownumber + 1
txtLicence2.Value = ""
txtNameAddress2.Value = ""
txtPhoneNo2.Value = ""
End Sub

Private Sub txtDate_Change()
If IsNumeric(txtDate) Then
' Date Ok
Else
MsgBox ("Date must be DD/MM/YYYY"), vbOKOnly, ("Incorrect Date")
txtDate = 0
End If
End Sub

Private Sub txtFaunaIn_Change()
If IsNumeric(txtFaunaIn) Then
' Qty Ok
Else
MsgBox ("Qty must be Numeric"), vbOKOnly, ("Text Entered")
txtFaunaIn = 0
End If
End Sub

Private Sub txtFaunaOut_Change()
If IsNumeric(txtFaunaOut) Then
' Qty Ok
Else
MsgBox ("Qty must be Numeric"), vbOKOnly, ("Text Entered")
txtFaunaOut = 0
End If
End Sub

Private Sub txtFemale_Change()
If IsNumeric(txtFemale) Then
' Qty Ok
Else
MsgBox ("Qty must be Numeric"), vbOKOnly, ("Text Entered")
txtFemale = 0
End If
End Sub

Private Sub txtMale_Change()
If IsNumeric(txtMale) Then
' Qty Ok
Else
MsgBox ("Qty must be Numeric"), vbOKOnly, ("Text Entered")
txtMale = 0
End If
End Sub

Private Sub txtPrice_Change()
If IsNumeric(txtPrice) Then
' QTY Ok
Else
MsgBox ("Amount must be Numeric"), vbOKOnly, ("Text Entered")
txtPrice = 0
End If
End Sub

Private Sub txtRecordYear_Change()
If IsNumeric(txtRecordYear) Then
' Qty Ok
Else
MsgBox ("Year must be YYYY"), vbOKOnly, ("Text Entered")
txtRecordYear = 0
End If
End Sub

Private Sub txtUnknown_Change()
If IsNumeric(txtUnknown) Then
' Qty Ok
Else
MsgBox ("Qty must be Numeric"), vbOKOnly, ("Text Entered")
txtUnknown = 0
End If
End Sub

Private Sub UserForm_Initialize()
rownumber = [A65536].End(xlUp).Row
rownumber = rownumber + 1

Dim address As Range
For Each address In Range("'Client Details'!A2:A40")
cboNameAddress.AddItem (address.Value)
Next
Dim licence As Range
For Each licence In Range("'Client Details'!F1:F6")
cboMethod.AddItem (licence.Value)
Next
Dim code As Range
For Each code In Range("'Client Details'!F12:F15")
cboAreaCode.AddItem (code.Value)
Next
lblTitle = Range("F1").Value
txtDate.SetFocus
End Sub


Phil C is offline   Reply With Quote
Old May 12th, 2002, 03:10 AM   #6
Tom Schreiner
Board Regular
 
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
Default

Hey
If this is the sub terminating your form:



Private Sub cmdNextPage_Click()
On Error GoTo 1
activesheet.Next.Select
End
1: Sheets(2).Select
End Sub



You need to change the End
to
End Sub

Tom
Tom Schreiner is offline   Reply With Quote
Old May 12th, 2002, 03:19 AM   #7
Phil C
Board Regular
 
Join Date: Apr 2002
Location: NSW. Australia
Posts: 64
Default

Both the following codes cause the from to exit after they have finished. The first code was posted as a reply to an earlier question on this forum and when it did not work properly I tried the second code and it works but now it also exits the form.

Private Sub cmdNextPage_Click()
On Error GoTo 1
activesheet.Next.Select
End
1: Sheets(2).Select
End Sub

Private Sub cmdPreviousPage_Click()
Dim page As Integer
page = activesheet.Index
If page = 1 Then
page = 40
Else
page = page + 1
End If
End Sub

I tried changing the end to end sub but it caused a compile error.

Thanks
Phil C is offline   Reply With Quote
Old May 12th, 2002, 03:31 AM   #8
Tom Schreiner
Board Regular
 
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
Default

My mistake...
It should be "Exit Sub"
not
"End Sub"
Try that out
Tom
Tom Schreiner is offline   Reply With Quote
Old May 12th, 2002, 03:33 AM   #9
Tom Schreiner
Board Regular
 
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
Default

I don't see anything in your second procedure which would cause your form to close???
Tom Schreiner is offline   Reply With Quote
Old May 12th, 2002, 04:51 AM   #10
Phil C
Board Regular
 
Join Date: Apr 2002
Location: NSW. Australia
Posts: 64
Default

Thanks TsTom
Changing the end to exit sub has fixed the problem on the first code.
Phil C is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 12:21 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes