Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sorting a datasheet form

Status
Not open for further replies.

dandot

Programmer
Jul 19, 2005
53
CA
I have a datasheet form for the following table in sql server:

CREATE Table dbo.RiskType(
ID INT IDENTITY NOT NULL,
Risk_Type varchar (50) NULL,
Sort_Order int Null)

ALTER TABLE [dbo].[RiskType]
ADD CONSTRAINT XPK_RiskType PRIMARY KEY CLUSTERED
([ID] ASC)


I would like the form to be sorted by Sort_order when presented to the user for data entry.

In order to do this I have set the Record Source = "SELECT RiskType.Sort_Order, RiskType.Risk_Type
FROM RiskType
ORDER BY RiskType.Sort_Order;"

However I find that when I do this, I cannot add any new entries to the form. I can only modify what already exists in the form.

Why is this happening?
 
take a look at the data properties of the form( allow additions and data entry.)

Ian Mayor (UK)
Program Error
Programming is 1% coding, 50% error checking and 49% sweat as your application bombs out in front of the client.
 
The properties were set.

I fixed this on the sql side by changing the table to the following:

CREATE Table dbo.RiskCode(
RiskCodeID INT IDENTITY NOT NULL,
Risk_Type int NOT NULL,
Risk_Code varchar(25) NOT Null,
Sort_Order int NULL)

ALTER TABLE [dbo].[RiskCode]
ADD CONSTRAINT XPK_RiskCode PRIMARY KEY CLUSTERED
([RiskCodeID])

CREATE INDEX RiskCodeIndex
ON dbo.RiskCode ([Sort_Order] ASC, Risk_Code ASC)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top