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 Wanet Telecoms Ltd 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: girls3dog1
  • Content: Threads
  • Order by date
  1. girls3dog1

    Edit masks

    PB10.5 MSAccess I'd like to save the edit mask characters to the database when I a save the column data. The edit mask has the following format: XXXX-XXXXXX-XXXX-X. The saved column data would look like the following: 1234-123456-1234-1. Can anyone suggest how I can save the mask characters...
  2. girls3dog1

    Selection change event for a dropdown datawindow (dddw)

    pb10.5, Build 5063 I would like to have the equivalent of a selection change event for a dddw in the same way as a ddlb. Can I do this with a user event using the pbm_cbnselchange? If not, is there another way to code this for a dddw. Thanks in advance for your help.
  3. girls3dog1

    ODBC File Data Source

    pb8 I've created a File Data Source (DSN) in the ODBC Administrator and yet when I go try to select it within the Database Profile Setup, it does not appear in the Connection dropdown list of the Database Profile Setup. All I see are System and User DSN's, not File DSN's. What am I doing...
  4. girls3dog1

    MS Word Mailmerge Problem

    I have a word template file with a datasource defined with it. I open the file in VBA with ...Document.Open("filename") and the file opens with out the datasource. Is there a way to have the template file open with datasource attached? Here's snippet of my code: //Open document and merge...
  5. girls3dog1

    Datawindow to MS Word Problem

    Pb8 I have a problem with the following code that converts dw to an MS Word file. I get an error message that states the following: "Error calling external object function execute at line 74." Line 74 is the mailmerge.execute, which is shown below. This is my first attempt at ole and...
  6. girls3dog1

    Datawindow backgound color problem

    PB 8.0.1 Build 8004 I'm attempting to change the column background color anytime the user edits the existing column data. Once the data is saved the background returns to the original color before editing. Either of the the following methods works. However, once the modify or dot property...
  7. girls3dog1

    Datawindow save to Excel or Word

    How can I save a datawindow report to either Excel or Word?
  8. girls3dog1

    Accessing column data in a nested report

    Is it possible to access column data in a nested report from a composite datawindow event such as "retrieverow" with the following code: string_variable = this.object."reportname".getitemstring(row, "columnname") I've tried this, but it can't find the column name...
  9. girls3dog1

    Modifying height property of DW column object at runtime

    I'd like to dynamically modify the height of a column datawindow object as function of the string length for the data in that column. I want to minimize white space in the datawindow because row data may have 1 character in this column and the next row may have 150 characters or more for the...
  10. girls3dog1

    Modifying SQL in a Composite datawindow Report object

    I'd like to know if I can modify the SQL with(dw_name.modify('datawindow.table.select" = Select......"') for a report that is part of a composite datawindow object.
  11. girls3dog1

    How to pass Structures

    Can Structure objects only be passed window to window via openwithparm and then extract data contained within with the Message object? Can I simply declare and create an instance of the structure in another window and then proceed to extract data from it without using the Message object?
  12. girls3dog1

    Datawindow Column Object that supports text wrapping

    I would like to have the text entered in a DW column object wrap to the next line if it runs into the right side of the object frame. I would like it to display this same way upon retrieval. Is there a DWO that supports this formatting? Thank-you.
  13. girls3dog1

    Embedded SQL in Datawindow script

    For a simple SQL query I'd like to have the table name be a variable such that I can change the table name during runtime. I guess the advantage is that I just have to write the SQL once as I have many tables to query with the same where clause. To date, I've only had experience with tbl_name...
  14. girls3dog1

    Datawindow: Adding a button object to header

    I have added a command button (one for each column) to the heading of a datawindow object and selected the Action property to be "Userdefined". Is it true that the script for the button would reside in the "buttonclicked" event of the datawindow? If so, can I then use the...
  15. girls3dog1

    DataWindow Error: Types of Expressions must match

    During run-time I get a Datawindow Information messagebox subsequent to saving a record that reads, "Types of expressions must match." The data commits OK and all fields are updated. I have not used any expressions in any of the column data.
  16. girls3dog1

    dropdownlistbox

    I'm trying to determine which item has been selected from a dropdownlistbox with the selectionchanged event, but do not have the .item[] coded correctly. See below. if this.item[] = 1 then dw_datasheet.dataobject = "d_datasheet_cv" end if
  17. girls3dog1

    Find DataWindow Method Problem

    When I run the following code from a Window open event I receive an error message that says, "Invalid Expression", which I believe is referring to the string value of ls_find_string. (inst_tag is the column name in the datawindow) ls_find_string = "inst_tag = " +...

Part and Inventory Search

Back
Top