Change Record Order in DB Interface Wizard

G

Guest

Is there a way I can change the order the records are pulled into the DB Interface Wizard? For example, let's assume I have two fields in a table; Name and NameID. When I run the DBIW to gain the ability to edit/delete records out of the database, it makes the first field as a hyperlink in the database_editor.asp. My trouble is that I want the NameID field to be the hyperlink field.
 
K

Kevin Spencer

YOu can modify your query by adding an ORDER BY clause. Example:

SELECT * FROM MyTable ORDER BY SomeColumn ASC

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

AC said:
Is there a way I can change the order the records are pulled into the DB
Interface Wizard? For example, let's assume I have two fields in a table;
Name and NameID. When I run the DBIW to gain the ability to edit/delete
records out of the database, it makes the first field as a hyperlink in the
database_editor.asp. My trouble is that I want the NameID field to be the
hyperlink field.
 
M

Mike

switch the two fields (NameID and Name), then copy the hyperlink tag from
Name to NameID and delete the hyperlink from Name.

Mikeal

AC said:
Is there a way I can change the order the records are pulled into the DB
Interface Wizard? For example, let's assume I have two fields in a table;
Name and NameID. When I run the DBIW to gain the ability to edit/delete
records out of the database, it makes the first field as a hyperlink in the
database_editor.asp. My trouble is that I want the NameID field to be the
hyperlink field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top