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 wOOdy-Soft 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: RichD
  • Content: Threads
  • Order by date
  1. RichD

    Outlook -Copy to other Profile

    Hi All, I have a problem with Outlook VBA, as follows: I have my own domain name and consequently get everything@mydomain.com downloaded to outlook (mostly junk). There are several users on the same PC with their own profile. What I want to do is copy specific mail items to the relevant user...
  2. RichD

    Excel Chart Data Table - Vertical Text

    I have a chart with its data table displayed (approx 40 values) because the values are up to 15,000 you cannot read them when displayed normally, so I want to display the text vertically. Is this possible? there is no option in the Format Data Table dialog. TIA Rich Bespoke and off-the-shelf...
  3. RichD

    IN clause, Inner Joins and Update - is it possible

    I am trying to use the IN clause to update a table in another mdb. VBA produces the SQL string, but I get Error 3144 Syntax Error in Update statement. The table names and field names are the same in both mdbs. Here is the string: UPDATE [projectcodes]INNER JOIN [projectcodes]IN...
  4. RichD

    Create Windows XP Compressed folder from Access2K

    I am trying to create a Windows XP compressed (zipped) folder from Access 2000 using VBA. I then want to copy files to the zipped folder and email it. The copying and emailing aren't a problem, but I am having trouble in creating the zipped folder. Any ideas? TIA Rich Bespoke and...
  5. RichD

    No Report Writing Capability in VB.Net

    It would appear that VB.Net Standard Edition 2003 does not have any built in report writing capability. I was sold on VB.Net on the basis that it had greater functionality than VB6. At least VB6 had the DataReporter. All the help files re reporting in VB.Net refer to Crystal Reports. It fails to...
  6. RichD

    Cannot find Crystal Reports in vb.net

    Apologies if this is a stupid question. I have vb.net standard 2003, which I understand comes with Crystal Reports. The help system says go to Projects - Add New Item and select Crystal Reports. The problem is its not there. Help only seems to refer to Visual Studio.net in relation to Crystal...
  7. RichD

    Nested subreport not printing on next page

    I have a report which includes a subreport. The subreport also has a subreport (ie a sub-subreport). The problem is that if the sub-subreport needs to print on a subsequent page it will not. The next record is displayed and the rest of the sub-subreport data is lost. Any help greatly...
  8. RichD

    sub tab problem

    I am trying to place a tab control on a single page of another tab control. the problem is the sub tab control appears on all the parent tabs, not just the one I am trying to place it on. Before I drop the new tab control I select the parent tab page that I want it to appear on, but the new tab...
  9. RichD

    Disable the print dialog box when using OutputTo

    Hi, I am using the OutputTo command in a loop and I would like to stop the 'Printing report to ....etc' dialog box from displaying. Does anyone know how to do this? Setwarnings false does not do it. TIA Rich Lead Developer www.blsoftware.co.uk
  10. RichD

    Tabledefs.Delete does not delete all the tables

    I am trying to delete the links to attached tables, while keeping the system tables and a couple of others. Here is my code, run off a command button: Private Sub Command71_Click() Dim db As Database Dim tblD As TableDef Set db = CurrentDb() For Each tblD In db.TableDefs If Not...
  11. RichD

    Change Workgroup Permissions using VBA

    HI, I am trying to change permissions so that users can export tables to a backup file, and then once the backup is created, change their permissions back so that they cannot open the backup. (so that the backup cannot be changed. This is my code : '******************************** Dim W As...
  12. RichD

    "You've copied data to teh clipboard" error message

    I have an Access 2000 project and when I try to close a form I get the error message: " You've copied a large ammount of data to the clipboard, do you want to save this data for other applications". There is a lot of VBA code attached to the form but nothing which actually writes...
  13. RichD

    Slow Loading of Forms

    I have seen this question before, but didn't need the answer till now. I have searched FAQ and Keyword Search, without success, so here's the question; I have an application in Access2000 in which several forms take a long time (about 30sec) to load, after that they load quickly (presumably...
  14. RichD

    Slow Loading of Form

    I have seen this question before, but didn't need the answer till now. I have searched FAQ and Keyword Search, without success, so here's the question; I have an application in Access2000 in which several forms take a long time (about 30sec) to load, after that they load quickly (presumably...
  15. RichD

    Using Array Variables ina recordset

    I am try to use an array in a recordset, but I keep getting the "Item not found in this collection" error, which I assune to mean it cannot interpret the variable name. here is part of my code: dim arAccSalary as variant, arSalary as Variant, ArAccSalaryC as control '*********store...
  16. RichD

    Interrelated Bound Combo Box problem

    I have two combo boxes on a form, cboFund and cboCostCentre. Both combos are bound to fields on the form; Fund and CCentre The selection in cboCostCentre is dependant on the fund selected in cboFund. cboCostCentre is requeried on the cboFund After Update event. The ID's of each selection are...
  17. RichD

    Docmd.Findrecord will not work on subform

    I am trying to use docmd.findrecord to move to a particular record in a sub form, but cannot get it to work. I have a form 'Employees' and a datasheet subform containing salary levels. When the user moves to a different employee I want the subform focus to move to the first record where the...
  18. RichD

    Create Access record when printing from embedded Acrobat

    I have an Access97 document management database, which uses the Acrobat Active X component, enabling me to display Acrobat in an Access form. How can I create a record in Access every time the document displayed in the Acrobat window is printed? Its a tough one but any help greatly appreciated...

Part and Inventory Search

Back
Top