I have a form with fields bound to a data source. One of the fields is a bit true/false. I am having a problem with creating a simple No/Yes radio buttons. In Access you create a group and assign numbers then check the group for changes. I am assuming you cant do that with VB.Net. Does anyone have a example of how to use grouped radio buttons to update bound data. I have searched for hours and found many examples of how to group them, change the screen color, display a message telling which is picked when the user clicks on a button. All I want to do is update the bound

Name:  Untitled.png
Views: 1388
Size:  7.5 KB

Code:
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING OFF
GO

CREATE TABLE [dbo].[OrderDetail](
	[PartDesc] [varchar](50) NOT NULL,
	[PartOrdered] [bit] NULL,
	[OrderDate] [datetime] NULL,
	[ReceivedDate] [datetime] NULL,
 CONSTRAINT [PK_PartDesc] PRIMARY KEY CLUSTERED 
(
	[PartDesc] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

ALTER TABLE [dbo].[OrderDetail] ADD  DEFAULT ((0)) FOR [ReceivedDate]
GO