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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MaxGeek

  1. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    Yeah I meant access. Yes I have tried substituting the name of the actual table. It still gives the same error. I can confirm the table was created because it shows up in my table list and when I look at it, it has the correct data in it. Some else had a similar problem, but I couldn't find a...
  2. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    I mean versus not version in my last post.
  3. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    I am using .txt, atleast I'm trying to. DoCmd.TransferText acExportFixed, "T_INFO_Text Export Specification", TableName, "C:\Temp\" & TableName & ".txt" I've also tried DoCmd.TransferText acExportFixed, "T_INFO_Text Export Specification", TableName, "C:\Temp\filename.txt" and for whatever...
  4. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    I get the same error. It says: Error Number: 3011 Message: The Microsoft Office Access database engine could not find the object 'C041581438#txt'. Make sure the object exists and that you spell its name and the path name correctly.
  5. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    Also the SQL dbs.Execute(sql) seems to correctly create and populate the specified table.
  6. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    Thanks, but thats actually a editing error on my part. I simplified my code to reduce a bunch of fields for posting and accidently left an extra double quote. The application is erroring on DoCmd.TransferText acExportFixed, "T_INFO_Text Export Specification", TableName, "C:\Temp\" & TableName...
  7. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    Here is code snippet *REQUESTNO is passed in as a 9 digit character Dim TableName As String Dim strRequestno As String TableName = "C" & REQUESTNO RetValue = SysCmd(acSysCmdSetStatus, "Drop existing export table...") DoCmd.DeleteObject acTable, TableName RetValue = SysCmd(acSysCmdSetStatus...
  8. MaxGeek

    Error 3011, TransferText acExportFixed and table specification

    I'm modifying a existing Access App someone else made to add additional fields to the application. The application imports a spreadsheet and formats the fields into an text export file. One line of code is giving me problems: DoCmd.TransferText acExportFixed, "T_INFO_Text Export...
  9. MaxGeek

    Help Sorting Alphabetically in Java

    I think I have an idea of how I'm going to do it. I just wanted to post it in the correct forum this time and maybe get some more advice. I plan on getting the names out of the objects and using the compareTo() function. This sort of got put on the back burner for me though.
  10. MaxGeek

    Help Sorting Alphabetically in Java

    I would like to sort some class objects alphabetically and want to know if there is an easy way to do it. I have classes like Person.class which has variables like: int id String name (Getters and setters for both) Then I have a hashSet of Person.class objects and I want to return them sorted...
  11. MaxGeek

    Sorting Alphabetically Help

    I would like to sort some class objects alphabetically and want to know if there is an easy way to do it. I have classes like Person.class which has variables like: int id String name (Getters and setters for both) Then I have a hashSet of Person.class objects and I want to return them sorted...
  12. MaxGeek

    constructor basic question

    could you do it like this public class HelloWorldApp1 { private int grade1; //delaring constructor public HelloWorldApp1() { grade1=7; } public void printstuff() { System.out.print(grade1); } }
  13. MaxGeek

    Image Upload and Resize

    Does anyone know a good tutorial or download for a simple image upload and resize PERL script?
  14. MaxGeek

    How to do something like Post Back in JSP

    Could you post an example or post maybe a zip file of your example. I'm having a hard time getting your example to run in netbeans. Thanks
  15. MaxGeek

    How to do something like Post Back in JSP

    I'm trying to make a form in JSP. Similar to a automotive form. I have a drop down list for "Makes" (honda, toyota,etc) and once a "make" is selected I want to generate the items in drop down list for "models" like (civic, s2000, pilot, etc) Similar to how autotrader.com works. My question is...

Part and Inventory Search

Back
Top