Search results

  1. W

    Change the data source on a chart in excel us vb

    I have written some vb code in access which generates an excel report, with a pre-draw graph. And what I want to do is to adjust this graph to fit the data which has been dumped in the excel sheet. Below is some of the code, I just can get the data source changed on the chart sheet that’s all...
  2. W

    Convert XLS to CSV

    Maybe someone could point me in the right direction: What I am trying to do is convert a XLS file to CSV by the press of a button, how would I go about doing this? Cheers Will
  3. W

    FTP hanging...

    A while back I downloaded InetTransferLib from http://www.mvps.org/access/modules/mdl0037.htm I integrated the FTP module into my Access 2000 project - and it worked. However lately when I came back to test the upload/download function after converting to Access 2003, it connects and the then...
  4. W

    MailMerge Problems - Help Need

    I have started having problems with MailMerge in my database - it has worked before but now I get this error: Runtime error 5922 "Word was unable to open data source" Here is my code: Function MailMerge(strMMTemplate As String) Dim objWord As Word.Application Dim objDoc As Word.Document...
  5. W

    MailMerge Problems

    I have started having problems with MailMerge in my database - it has worked before but now I get this error: Runtime error 5922 "Word was unable to open data source" Here is my code: Function MailMerge(strMMTemplate As String) Dim objWord As Word.Application Dim objDoc As Word.Document...
  6. W

    Connection string to a MySQL database

    I have client which wants to store his data online in s MySQL database, and then use a MsAccess front end to access and use the data. How do I link the tables in the front end to the tables in the MySQL database? Will
  7. W

    Access 2003 > .NET VB Forms

    I have started using .NET VB, creating Windows Apps - I have decided to convert one of my access dbs to a windows app. I don’t want to start from scratch, so I was wondering is how do I convert my access forms etc. to VB forms? Are there programs which can do it? if so which one is the best one...
  8. W

    Get specific data out of a memo field in a table

    I have some data in a stored in a memo field in a table, for example: How would I go about going making an array which will loop through each line of the data stored, so that I pick up specific data??? Thanks
  9. W

    ADO from DAO conversion errors, in regards to recordsets

    I am trying to convert my code to ADO from DAO, but I am getting errors...below is bit of my code have converted to ADO, but I am getting this error: Any idea what is wrong with the code below?? Cheers Will Dim cnn As ADODB.Connection Dim rsDBStatus As ADODB.Recordset Dim strDBStatus As...
  10. W

    Right() function in SQL

    I am trying to use the Right(0 function in SQL, I used it in A97 and it worked, but it doesnt work in A2k. Example: SQL_ADD = "INSERT INTO TMP_E SELECT '" & strCNum & "' AS IP_CNum,'" & strDate & "' AS IP_Date,'" & strSNCut & "' AS M_Serial, Right(Name,10) As FC_Code, Data As FC_Count FROM...
  11. W

    Populate data in different 'Sheets' in Excel from Access

    Currently I populate one excel spreadsheet with data from lots of different tables. What I would like to do is say....populate one set of data into Sheet 1 and then change to a another Sheet...say Sheet 2 keeping my connection to that workbook open when I do this. Is there away? Cheers Will...
  12. W

    Import CSV but splitting the import data into two tables

    I have a .CSV file with has two sets of data, for example: "CustomerID","CustomerName","CustomerAddress" 132,"J Blog","1 London Street,London" "ProductID","ProductName","Qty" 10056,"13A Socket",3 10008,"Plugs",1 Brake down of the file: -------------------------------------------------...
Back
Top Bottom