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 SkipVought 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. jwruble

    Can't Referenct CognosImpromptu Library -- Editor Crashes

    I'm trying to automate some Cognos Impromptu tasks using .NET. When I try to reference the Impromptu Client Type Library, I get a "System.ExecutionEngineException" exception in the TypeLibraryWrapper and the .NET IDE crashes. I've been able to reference the library through VBA inside Excel...
  2. jwruble

    Make-Table with Unique ID (Autonumber) Field

    Is it possible to create a make-table query with one of it's columns being generated as a unique id for each row? Thanks for any help.
  3. jwruble

    Check if text box needs scroll?

    Thanks Martin! That was exactly what I was looking for. I appreciate the input.
  4. jwruble

    Check if text box needs scroll?

    I have a form that is used as a sort of question and answer system, where the question is listed at the top in a textbox and the answer is entered in another text box. My current problem is that sometimes the questions are very long, and therefore the user must scroll down to view it all...
  5. jwruble

    TreeView Line Break or Word Wrap?

    I am using a TreeView to display a list of questions from a database. Some of the questions are very long, and I would like to be able to somehow insert line break or format the tree nodes with a word wrap so that the user can see all of the text without having to scroll. Does anybody know if...
  6. jwruble

    VB/Access -- If Table Exists, Delete It

    Yep, very good call. I had added all of the resume next statements because for some reason I could only get the first table to be deleted (and of course I was wrong). I don't know for sure, but I think the problem was that some of the tables were still linked to open recordsets. It seems to...
  7. jwruble

    VB/Access -- If Table Exists, Delete It

    Wow, quite a number of great solutions. Thanks to all of you. As of now, I'm using the short snippet of code posted by JerryKlmns, since I just want the table deleted and don't really care whether the table exists or not. I'm actually deleting several tables at the same time, so I just simply...
  8. jwruble

    VB/Access -- If Table Exists, Delete It

    As a part of my application, I need to delete a table from an Access database. I have no problem doing that with the following code: DoCmd.RunSQL "DROP TABLE myTable;" However, depending on how far into the application the user is, that table may or may not exist. If it doesn't, the above...
  9. jwruble

    TreeView -- disable edit/rename node name

    Just in case anybody else was having this problem, this is how I finally disabled label editing: TreeView1.LabelEdit = lvwManual Simple enough...
  10. jwruble

    TreeView -- disable edit/rename node name

    I've got a TreeView in my form that gets populated with image names for the individual in the database. When you click on the image names, a preview window displays a thumbnail of the image. Unfortunately when you hold the mouse over the image names in the TreeView, the node goes into the...
  11. jwruble

    Query -- Identical field names causing problems

    I'm creating a query for a report that displays information about different surveys of a site. Important info includes when each survey was completed and who did the survey. In the database, the "who" is stored as a number, which can then be linked to an employee table to see their...
  12. jwruble

    Textbox/Listbox source from Query?

    On the frontend of my database, there is a form where you select what community a member lives in. The community is then stored in the database as a code, not the name of the community. So now on another section of the form, I am trying to display the community the member is assigned to. This...
  13. jwruble

    Two Form Results as Criteria

    Ok, it still doesn't work. In the design view of the query, I have two columns set up (one for each combo box). In the criteria section I have the following: Criteria: [Forms]![Form Name]![Field1] Or: [Forms]![Form Name]![Field1] Is Null When I enter the "OR" line, it...
  14. jwruble

    Two Form Results as Criteria

    I have created reports that get their data from a query. The query gets two requirements (criteria) from a form consisting of two list boxes. So the user selects their desired output from the two pull-down boxes. That part works fine, but I would like for the user to be able to leave the...
  15. jwruble

    Two Form Results as Criteria

    I have created reports that get their data from a query. The query gets two requirements (criteria) from a form consisting of two list boxes. So the user selects their desired output from the two pull-down boxes. That part works fine, but I would like for the user to be able to leave the...
  16. jwruble

    Specify hyperlink address using expressions????

    I would like to be able to have a hyperlink that could jump to a filename specific to individuals stored in the database. For instance, there are scanned images on the network that are named according the the client ID number (for example, 1027picture.jpg or 2746application.jpg). Is there...

Part and Inventory Search

Back
Top