B
brianv
i have a list box, List11, which has 3 fields
Name, FoodCategoryId, RecipeId
the fields FoodCategoryId and RecipeId are hidden. when i double click the
Name i want to delete the record associated with it. so i have the dbl click
event run a Macro which has this sql
Delete * From RecipeFoodCategories where
FoodCategoryId=List11.FoodCategoryId and RecipeId=List11.RecipeId;
It prompts me for the List11.FoodCategoryId and List11.List11.RecipeId
fields. what is the correct syntax to pick these fields up from the list box?
thanks
brian
Name, FoodCategoryId, RecipeId
the fields FoodCategoryId and RecipeId are hidden. when i double click the
Name i want to delete the record associated with it. so i have the dbl click
event run a Macro which has this sql
Delete * From RecipeFoodCategories where
FoodCategoryId=List11.FoodCategoryId and RecipeId=List11.RecipeId;
It prompts me for the List11.FoodCategoryId and List11.List11.RecipeId
fields. what is the correct syntax to pick these fields up from the list box?
thanks
brian