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. chrislx

    How to control which page to return

    Thanks for the tip. It works. There is another page dd.aspx which links to cc.aspx. Is there any way to know which way it comes down since there are 2 paths: aa -> cc -> dd bb -> cc -> dd The data shown on aa and bb pages are from 2 different db tables. The only data I can seen from dd...
  2. chrislx

    How to control which page to return

    I have 2 pages aa.aspx and bb.aspx and both link to the 3rd page cc.aspx. There is a return button on the cc.aspx. How to control which page to be returned after the Return button is clicked I have defined invisible lables lblCalledFrom.Text = 1 on page aa.aspx and calledFrom.Text = 2 on...
  3. chrislx

    How to add a string into a file?

    I am new on UNIX script programming. Here is my question, please help. 1) check if a file exists, if not, create a new file if [ ! -f "$MINENV_RUN/work/$I" ] - it works then touch $MINENV_RUN/work/$I 2) add a string into the file string entered: "aaa, bbb, ccc, ddd" How can I add the...
  4. chrislx

    Use xsl:document to create new output file(s)

    Please anyone help me on creating a new output file using xsl:document. I found the following example from book "XSLT 2nd Edition Programmer's Reference" poem.xml ======== <poem> <author>Rupert Brooke</author> <date>1912</date> <title>Song</title> <stanza> <line>And suddenly the wind comes...
  5. chrislx

    using xsl to transform .xsd files to a xml file

    Thanks for the big help. It works well. chrislx
  6. chrislx

    using xsl to transform .xsd files to a xml file

    There are several schema files, one schema file includes several other schema files. For example, <xs:include schemaLocation="C:\myCodes.xsd"/>. I would like to transform the schema files into a xml file. Question: How can I use xslt to get the nodes and attributes which are in the included...
  7. chrislx

    Converting xsd to xml using xslt

    I need to convert a .xsd file to .xml file using xslt. Thanks for any suggestion. I have trouble on finding the right xpath. I used the following for loop: ... <xsl:for-each select="xs:simpleType"> ... </xsl:for-each> ... It does not work. Here is thexsd file: <?xml version="1.0"...
  8. chrislx

    Data type changed after converting between Access database and XML

    Please help on the following: There is a field on a table. The data type of the field was defined as Yes/No (It is shown on form as check box). Then converted to .xml file using Ms access (export the table and saved with .xml). The values of the field is either 1 or 0 in xml file. If the...
  9. chrislx

    Questions on recordset

    Thanks. It helps! chrislx
  10. chrislx

    Questions on recordset

    Please help me on the followings: What is the difference from 1). Dim rs as Object And 2). Dim rs as DAO.Recordset ? When either one should be used? rs = Me.Recordset.Clone rs = Me.RecordsetClone What is the difference from the followings and when one should be used? 1)...
  11. chrislx

    Display details of new record after adding one to the combo box

    I have trouble to find out a solution on the following, Please help. 1. Form-1 includes Combo box, Text fields, subforms and buttons (Create, Delete) 2. After selecting a key code from the combo box ([Form-1].[Input-Name]), display the details in TextFields (table-1) and subforms (other...
  12. chrislx

    Substring Replace

    I need to change the string, such as "it is an access form" , into "ItIsAnAccessForm". Remove the space and display upper cass for the first char of each word. The following code remove the space, but cannot change from lower case to upper case. does anyone has good idea for the case change...
  13. chrislx

    SQL Update

    Good catch! Thanks a lot. chrislx
  14. chrislx

    SQL Update

    I try to update one of field of a record in a table. It does not conplain anything after running the following Sub. But the problem is that the record is not updated. Can you please help me on this? Table: TBL-1 Fields: Class-Name (Key), Attribute-Name(key), Code-List-Name (non-key) Here is...
  15. chrislx

    Capture the values of before and after change?

    Thanks. It works well.
  16. chrislx

    Capture the values of before and after change?

    Please help me on the following: The value shown in a field of a subform is bounded with a table column (not primary key). After the value is changed, for example, from "AAA" to "BBB", I need to give a warning message for the difference of the two strings. Which event should be used here to...
  17. chrislx

    Type Mismatch error

    I am trying to create a Query. The followings are the code. I have got an error "Type mismatch" on "Set rs = qdf.OpenRecordset(dbOpenDynaset) I am not sure what is wrong? Appreciate any hints. ========== Code =============== Dim db As Database Dim rs As Recordset Dim qdf As...
  18. chrislx

    Retrive data from two table

    Thank you for your replys. The tbl-2 is the subset of tbl-1 and both including field-1 which is the primary key of tbl-1. I want to select all of the records which is in tbl-1 and not in tbl-2 and insert them to tbl-3. I have trouble to read the data in recordset by using Do Until loop. for...
  19. chrislx

    Retrive data from two table

    Hi, I want to retrieve data from two tables, tbl-1 and tbl-2. I wonder how to make it work using recordset. Should I have 2 recordsets opened? How to set the sqlCriteria? Here is the sql selection: SELECT tbl-1.field-1 FROM tbl-1 WHERE tbl-1.field-1 Not In (Select tbl-2.field-1 from tbl-2)...
  20. chrislx

    Access Value shown on the subform

    Thanks. It works. chrislx

Part and Inventory Search

Back
Top