K
kfrost
I've got a form I created from a data connection to SQL. I have a table
called customers that I use to populate a field in a table called Trips which
is the table my data connection for the form is based off of.
I need to create a view, popup or something that allows admins to enter in
new companies and their information.
This table just has a columns like companyID, CompanyName, address, city,
state
There doesn't need to be a relationship with any other tables because all
it's used for is to populate field values for other fields. It's mainly just
a source for drop down list boxes.
It works great but I have to go into SQL and add all the info and what I'm
trying to do is figure out how to create a view in my form that contains a
data connection to this table for the sole purpose of just adding and
removing companies.
I've tried adding the table to the Main data connection but I have to
specify some type of relationship when there doesn't need to be one. I even
went ahead and created one but submit button still fails.
I'm doing this all in a VB.Net project. Am I going to have to create an
HTML popup of Windows form that connects directly to SQL to do this? Or
create a web service so I have the option of creating a second data
connection with the functionality to submit data to a database?
Thanks
called customers that I use to populate a field in a table called Trips which
is the table my data connection for the form is based off of.
I need to create a view, popup or something that allows admins to enter in
new companies and their information.
This table just has a columns like companyID, CompanyName, address, city,
state
There doesn't need to be a relationship with any other tables because all
it's used for is to populate field values for other fields. It's mainly just
a source for drop down list boxes.
It works great but I have to go into SQL and add all the info and what I'm
trying to do is figure out how to create a view in my form that contains a
data connection to this table for the sole purpose of just adding and
removing companies.
I've tried adding the table to the Main data connection but I have to
specify some type of relationship when there doesn't need to be one. I even
went ahead and created one but submit button still fails.
I'm doing this all in a VB.Net project. Am I going to have to create an
HTML popup of Windows form that connects directly to SQL to do this? Or
create a web service so I have the option of creating a second data
connection with the functionality to submit data to a database?
Thanks