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 TouchToneTommy 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: *

  1. HardingR2000

    Gridview: Accessing Only Those Rows Displayed on the Screen

    [sad]I have a Gridview with a data source containing 100 rows. I use page control to display 40 rows at a time. On each row is a check box that flags the row for processing later should the user click on another button on the screen. Additionally, I have a check box (call it ALL) outside the...
  2. HardingR2000

    httpRuntime Parameter maxUrlLength Does Not Work

    I am getting the following error: The path of the item '\SSRS_TrSummMatrixReports\TRSumByCustomerAndDealType.rdl' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash...
  3. HardingR2000

    Application Exit and MSAccess Termination

    Access 2002 On my main form I have a button which runs code in a module that closes the main form and then does an Application.Quit acQuitSaveNone. When using the task manager to monitor the msaccess.exe, I have noticed a delay of up to 5-6 seconds between the time the application closes...
  4. HardingR2000

    Access 2002 Database, Win 7: createfolder failing "Path not found"

    I have an Access 2002 database application that runs just find on Windows XP running Access 2002 and Office 2007. When I run it on a Windows 7 PC running Access 2002 (first PC i have had with this configuration), I have two problems: 1) It fails in the createfolder command at the following...
  5. HardingR2000

    Access 2007 Use Access Special Keys

    Is it possible in Access 2007 to change the setting for Use Access Special Keys in VBA code? If so, how is it done?
  6. HardingR2000

    DoCmd.OutputTo Error Leaves Outputting Object in Status Bar

    Platform: Access 2002 I am running the DoCmd.OutputTo command to create a spreadsheet. The spreadsheet already exists and is currently active on my PC. This causes an error 2302 which I trap and give the user (me) a message and then exit normally. Unfortunately the the Outputting Object and...
  7. HardingR2000

    Excel found unreadable content

    I have an excel spreadsheet created by executing the Access VBA command which follows: DoCmd.OutputTo acOutputStoredProcedure, "Exec IndexPrices_sp '" & Me.StartDate & "', '" & Me.EndDate & "'", acFormatXLS, "TIGERS_Index_Prices.xls", False When I open the resultant spreadsheet in Excel I get...
  8. HardingR2000

    DoCmd.Move Doesn't Appear Work on a Report

    I have an Access application that detects if it is running in a single screen or multi-screen environment. If it is in a multi-screen environment it open up the Access container to encompass the width of two screens. When in the multi-screen mode I move certain forms to specific screens thus...
  9. HardingR2000

    Forms Filter Action

    I have a form (FormA) in which the record source returns 1000 rows without any filter applied. I have a dialog form which I open on top of FormA that applied a filter (Forms!FormA.Filter=...), which results in 500 rows being displayed. I have not done a Forms!FormA.Requery command. Did Access...
  10. HardingR2000

    Forms Filter Action

    I have a form (FormA) in which the record source returns 1000 rows without any filter applied. I have a dialog form which I open on top of FormA that applied a filter (Forms!FormA.Filter=...), which results in 500 rows being displayed. I have not done a Forms!FormA.Requery command. Did Access...
  11. HardingR2000

    Window Size Detection

    If I have a dual monitor environment where I can manually expand the MS Access application across the two monitors, how can I programmatically detect the dual monitor window size and then programmatically resize the application across both monitors? I am sure there must be some API modules that...
  12. HardingR2000

    Selecting Combo Box Value from Another Form

    I have FormA with ComboBoxA and a command button which takes me to FormB. ComboBoxA has TableA as a record source. FormB allows me to make a new entry into TableA. When I return (close) from FormB I want FormB to set ComboBoxA's value to the value I just created on FormB. In the close process...
  13. HardingR2000

    Moving Data Between Two Combo Boxes

    I want to create a form with two combo boxes. cmboA contains all products. cmboB contains only those products that have been selected from cmboA. Once it has been selected from cmboA and moved to cmboB it needs to be "removed" from cmboA via a change in the WHERE logic which defines the record...
  14. HardingR2000

    Access Report Footer Error When Summing Data Column

    I have a column of numeric values which I want to sum on the group footer, which works, and on the report footer, which does not work. When the object, =sum([WTS_Volume]), is included in the Report Footer the report goes through the report's "On No Data" event and gives me the message I placed...
  15. HardingR2000

    Stored Procedure Results Different Between VBA and Query Analyzer Exec

    I have a MS SQL stored procedure that updates a couple of tables. It does not return a result set. When executed in Access VBA via an ADODB Execute command it does not process correctly. It is as if some of the update queries within the stored procedure do not execute. When executed in Query...
  16. HardingR2000

    Determine Data Link Properties Programmatically?

    Is it possible to determine programmatically the connection information as specified in the "Data Link Properties" wizard from within the ADP application? I need to programmatically alter the "Initial Catalog" specified in the following when the the database is changed. NGMSConnect.Open...
  17. HardingR2000

    MS Access Forms: Event Processing Order

    I have a form containing two subforms. The form is TrsumGroup_Modify_Frm and the subforms are TrsumGroup_ModifySet_SubFrm and TrsumGroup_LCList_SubFrm. When I start (open) the main form (TrsumGroup_Modify_Frm) the following events occur in the order listed below. TrsumGroup_ModifySet_SubFrm...
  18. HardingR2000

    Combo Box Default Value Setting

    I have FormA with a combo box. When I select a value from the combo box it is saved in a global variable. I click the OK button on FormA and it opens FormB and closes itself. When I close FormB the closing process opens FormA again using the following commands: DoCmd.Close acForm, "FormB"...
  19. HardingR2000

    Access 2002 ADP Connection to SQL Server 2000-Stored Proc Query Names

    I have an Access 2002 ADP which connects to a SQL Server 2000 database. The connections is established by going to FILE, CONNECTION, and entering the appropriate information in the Data Link Properties window. I wanted to create a new ADP and establish the connection to the SQL Server database...
  20. HardingR2000

    Subform OnCurrent Event Processes Before Form and Subform Are Visible

    I have a form which contains a subform. The OnCurrent event in the subform checks a date field on the subform and depending on the value issues a MsgBox message. The problem is that the subform's OnCurrent event processes before the form and subform are visible, therefore the messages pop up...

Part and Inventory Search

Back
Top