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!

Search results for query: *

  • Users: jordanking
  • Content: Threads
  • Order by date
  1. jordanking

    validation of asp.net checkbox

    hello, I have a checkbox in an asp form. I want to have client side validation to ensure it is checked before the form is submitted. Here is the code in the form: <script type="text/javascript"> function CheckAgreement(source, args) {...
  2. jordanking

    required field validator not canceling update in listview edititemtemp

    hello, I have a required field validator (rfvFeatureTitle) and a validation summary inside of the edit item template in a listview control. When the text box that is being validted is empty, the error text will appear next to the text box, but it will not stop the update action of the listview...
  3. jordanking

    createUserWizard and profile values

    hello, I have a create user wizard that also assigns some custom role and profile values in the createdUser event of the control. Once this operation is complete and the user clicks the continue button the user is redirected to a role restricted "Members" page/directory. The problem is that...
  4. jordanking

    trouble with stored procedure retun values

    hello, I have a asp.net 3.5 website that has a sql server 2005 backend. I have a stored procedure that accepts a couple of parameters and returns an integer value. The procedure runs fine when executed from SQL management studio, but I can not capture the return values on the asp side. The...
  5. jordanking

    logon control works on local server but not on remote server

    hello, I have a logon control that does not use the default databse in the app_data folder, but rather it uses a SQL server database where I have created the same table structures required for the asp.net membership functions. The logon works when using the local test server on my own computer...
  6. jordanking

    create user wizard not working

    hello, I have a creatUserWizard that works when i use the default connection string and provider but not when i use a custom provider. The custom provider works because if you go through the menu: Website/asp.net configuration and add a user everything is fine, also there is no error when you...
  7. jordanking

    IE6 testing

    hello, I am creating a website for my union where a lot of the traffic is going to be through IE6. This is because the union represents civic employees who will access the website predominantly through the city's own network which is still IE6. The problem I have is with css. I have a...
  8. jordanking

    cancel a close cmd for a form triggered from another form

    hello, I have a project where a "switchboard" form is accidentally getting closed. I can not find a how this is happening. Until i have this figured out I put an open form comand in the close event of the swtitchboard (which opens another form quickly and reopens the switchboard and closes...
  9. jordanking

    assign applications to client computers permissions

    Hello, I have a windows small business server 2003 and was wondering if it is possible to have a custom application installed on client computers without an administrator's privileges (local or domain). I used the assign client applications link from the server management console and it works...
  10. jordanking

    install .msi through GPO

    Hello, I am trying to install a program to workstations through the group policy. The program is a MS Access packaged solution into a .msi file (which installs a .accdr into the c: drive and adds shortcuts to all users desktops and start menu). This program fequently undergoes changes and I...
  11. jordanking

    move data from development to production database

    hello, I have a production SQL server database that is going to "import" data from an access database. I have the Access DB upsized and attached to the server of the production database. I need to: 1) remove the relationships from several tables of the production DB 2) truncate a few...
  12. jordanking

    windows security group and fixed/use defined roles

    Hello, I am just learning about SQL server 2005 security. Is it possible to assign a windows security group to a fixed or user defined database role? I have created a new role wihtin a repective DB in sql 2005, but I am having trouble locating the windows groups when I try to add members to...
  13. jordanking

    combine two queries?

    Hello, I have two queries that I want to combine the results from. They are both based on the same SQL View but one invloves grouping and the other is a flat result set: QUERY # 1 ************ SELECT (ROW_NUMBER() OVER (PARTITION BY intDriverID ORDER BY intDriverID, intREGENT)) AS...
  14. jordanking

    dynamic link subreport

    hello, I posted in another forum (thread707-1502623) but a member suggested I post here. I have a master report that i want to link a subReport to. However, both the reports RecordSource is set progamically in the Report_Open event. The Recordsource is set to a dynamic query returned from a...
  15. jordanking

    dynamically link subreport

    Hello, I have a master report that i want to link a subReport to. However, both the reports RecordSource is set progamically in the Report_Open event. The Recordsource is set to a dynamic query returned from a sql server back end (.adp 2007 front end). Both the reports have a grouping...
  16. jordanking

    transfer text to csv file in ADP

    Hello, I had a funtion that worked perfectly in an access databse but does not work in an access project. My access project is Access 2007 with a Sql server 2005 backend. I need to export one table to a csv file with no quotes around text fields. In .mdb files you can use the export wizard...
  17. jordanking

    export tabel wihout xp_cmdshell

    Hello, I read the previous post (.csv export possible? sept 05 2008) about exporting csv files and the solutions were to use the command function xp_cmdshell with DTS or BCP. I can not do that. I am working with sql server 2005 workgroup which does not have SSIS and as a result I can not...
  18. jordanking

    Set based logic subquery roadblock

    Hello, I will attempt to make this clear, forgive me if it is not. I need to compare records in several joined tables against themselves. I have a table (residential) that tracks services provided to customers. There are two associated tables (ResidentialService and AddressLkup) that track...
  19. jordanking

    pass query/select recordset to stored procedure

    Hello, is there a way to pass a query set to a stored procedure like you can pass a SET based query to an insert statement example: a simple procedure set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo].[ps_MyProcedure] -- Add the parameters for the stored procedure here...
  20. jordanking

    recordsource vs recordset on report

    Hello, I am using an Access adp front end with SQL server back end. When I set a report recordsource to a query/view on the sql server, the report works fine. However, if i try to dynamically set the recordset property of the report, the report opens with the right amount of detail lines, but...

Part and Inventory Search

Back
Top