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!

Search results for query: *

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

    How do you invoke a menu item

    I have a menu bar that has an icon labelled "Convert to Adobe PDF. I want to convert my report to adobe by clicking a button. The convert to adobe is on a menu called UTILITY 1. How do you do this in code. Docmd.DoMenuItem ...... Thanks
  2. sk8er1

    Memo Field Length issue

    I have a memo field in a table, I entered more than 254 characters into it. I load the memo data into a list box for the user to select it. Then I build an sql statement like this.... strSQL = "SELECT * FROM Questions_Responses WHERE question = '" & lstSearch.Column(1, itm) & "'" Problem...
  3. sk8er1

    How do you display memo fields on a report that exceed 254 char

    I have a listbox with two columns that get populated from memo fields. I will need to put these onto a report. The data will exceed 254 characters on a few records. Question is...how do i handle that when I display the data in text boxes on a report....
  4. sk8er1

    Getting dupe records on an add routine with ID values

    In the following routine, I add a record to the first table and store its ID. I want to add a record to another table but I want to store the ID from the first table into a linking field in the second table. Whats happening is, the second table is getting 2 records added. 1 has a linkID = 0...
  5. sk8er1

    How to use a column from a listbox as criteria for a query

    I have a form with a listbox. The listbox contains 2 columns. I would like to run a report with the contents of the listbox. So, I have a query and I would like to filter the criteria with the column from the listbox .... Is this possible in the QBE...
  6. sk8er1

    How to remove items from start up in XP

    When I start up my PC I am getting a message box about something called WINFIXER 2005. I tried running my tools to remove it, but i cant seem to remove it. How do you remove items from the startup in XP? Thanks
  7. sk8er1

    What is the limit you can display in one element in a listbox

    I have ta table with a memo field. I want the memo to display in a listbox. The memo could contain a lot of characters. Is there a limit to what can display in a listbox item. I am not seeing the whole field in it.... Thanks
  8. sk8er1

    Can a listbox display multiple lines for 1 record

    I have a list box that is displaying 2 columns that are 254 character length text boxes. They display on one line in the list box...isn't there a multiline in the textbox. I cant seem to find it... Thanks
  9. sk8er1

    Returning a value from a function

    I was previously using access '97 now using 2003. How can I pass the value from the function.... For instance I used to assign a return value to the function name. How do you do it in '2003. Thanks
  10. sk8er1

    Using the switch statement in a query

    I just used a switch statement in a query. Its really powerful feature. Its better than stringing along an IIF statement. What do you guys think?
  11. sk8er1

    Is there a SOUNDEX function in Access

    I need to compare an address field in two tables. They want to see the differences, is there a good way to to this... Thanx-- they want to eyeball it for now...but some of the addresses are reasonably close. FOr instance, sometimes they have a floor or a suite# while the other table does not...
  12. sk8er1

    exporting a query to a excel workbook

    Its easy to export a query to a new spreadsheet file, but how can you get it into an existing worksheet...for instance a workbook tab...I would like to add it to an existing workbook with its own tab... Thanks
  13. sk8er1

    don't understand "there is no object in this control" message

    In the following routine, I am getting an error message..."There is no object in this control" on the txtDateOn = recServices!DateOn Can someone shed some light here.... Private Sub LoadControls() ' If the file is not empty load up If Not recServices.BOF Then '...
  14. sk8er1

    Current user does not have permission to convert this database

    I have an access 97 database that loads fine in 97. When I try to run it in 2000, I get the following error. Not sure about how to join the workgroup that defines the user accounts used to access the database.
  15. sk8er1

    Can you do a subquery from the QBE

    I was wondering if its possible to create a subquery within the qbe. If so...how is it possible. Thanks -- are there any links on how create advanced sql on the site?
  16. sk8er1

    EXECUTE Permission denied on stored procedure from Report

    I have a stored procedure that I can run with no problem from query analyzer. However, I have a crystal report that uses that stored proc, when I run it from the application, I receive an EXECUTE PERMISSION DENIED on OBJECT error.... So I can run it interactively...but not within the report...
  17. sk8er1

    Having trouble concatenating in a where clause

    I am working with a sp that contains a where clause that is concatenated like so... Set @wherecmd = ' WHERE ' @addwhere I need to add a piece of logic to the mix... AND Matches.Status <> 'x' I am having trouble with the syntax because of the apostrophes... Can someone help with this.... Thanks
  18. sk8er1

    Question on report footer and page footer

    It seems that my report footer values overwrote the group footer values on my report. I changed the report footer to print at the botton of the page. I can't test this right now because of production data different than test data. But will the report footer and the page footer clobber each...
  19. sk8er1

    Can someone explain recordsetClone to me

    I am trying to understand what the recordsetclone is all about. CAn someone explain why its used, when its used and what its good for. Thanks alot...
  20. sk8er1

    How to group by week number

    I need to create a report that groups on week number. How can i do that in crystal. Thanks

Part and Inventory Search

Back
Top