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 bkrike 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: lingyi
  • Content: Threads
  • Order by date
  1. lingyi

    Set baud rate for comm port via Open "com1:"

    Hi, Is it possible to set the baud rate for comm port using Open statement? Thanks.
  2. lingyi

    set getURL to a dialog window

    I use window.showModalDialog to open my flash. I named my dialog window as "flashintro". I set my flash movie under getURL at the end of movie to point to another page on same dialog window as getURL("http://www.xxx.com/xx.htm","flashintro") yet the script open up a...
  3. lingyi

    Problem Accessing Subform Control in eval()

    I trying to using eval() on one of the control in my subform via the main form as below: ls_RuleStr = "Me.sfrmTransactionItems!txtSumofQty" MsgBox Eval(ls_RuleStr) Yet it give me the error :can't find the name 'Me' you entered in the expression. I try again in accessing the...
  4. lingyi

    Detect existing of file by passing the path of file, possible?

    Hi, I want to select number of record from my product table which have the image file exist in server side through sql server. Is it possible? Please give some idea. THanks
  5. lingyi

    Not able to set decimal places through vba, why?

    Hi, I passed this parameter to the function in order to set the decimal places of field. SetFieldProperty "tblOrderItems", "OrderItemsWeight", "DecimalPlaces", 12, 2 my setFieldProperty function Set tbl = dbs.TableDefs(tblName) tbl.Fields.Refresh...
  6. lingyi

    "padlock" didnt show at secure page..help!!!!!

    hi, I hv a web site which contains 3 frames, which is top frame, left frame and content frame. One of my web page is secure page because it is a payment page, yet the padlock on the botton right of browser didnt showed. How i can make the padlock showed if the content frame is displaying the...
  7. lingyi

    alter table query to add new column in hyperlink data type?

    Hi, Does anyone know how to write a alter table query to add new field in hyperlink data type? Please help..thanks
  8. lingyi

    Set decimal places for number data type in VBA ?

    Hi, How could I use VBA with coding to set the decimal places for number field type? I try to set like below but it got error. Set tbl = dbs.TableDefs("tbltest") Set fld = tbl.Fields("test") fld.DecimalPlaces =4
  9. lingyi

    Page not loaded completely in certain pages using paging??

    Hi, I got the weird problem here. My web page is using page number to displayed recordset based on one page 10 items. Everythings work fine yet recently when i click either one page randomly, sometimes the page can't loaded completed and stop at half way of loading, pls help if anyone there...
  10. lingyi

    Scroll bar for table ???

    Hi, I try to create scroll bar for my table but failed. Please help me look at the code and tell me what wrong. Thanks..:) <table style=&quot;overflow:scroll;height:50;width:200;&quot; border=&quot;1&quot;> <% if not rsNotices.eof then While not rsNotices.eof...
  11. lingyi

    Weird problem on paging

    Hi, I facing a very weird problem on my asp page when i try to page my recordset as page size = 10. One of the page is truncated although the data is not empty. But when i changed the page size to 6, then every page is working fine. Is this related to IIS patch or something else. There is no...
  12. lingyi

    SMTP Email

    Hi, I using a smtp.ocx to send my email through access 2K, here is my code, SMTP.Server = &quot;mail.server.com&quot; 'my mail server name SMTP.MailFrom = &quot;from@hotmail.com&quot; SMTP.SendTo = &quot;to.hotmail.com&quot; SMTP.MessageSubject = &quot;testing for smtp&quot...
  13. lingyi

    Generat e PDF file?

    Hi, Anyone there know whether i can generate my pdf in my coding ..like creating something like function/procedure. Plus, may I know what is the reference i need if i want to use a control called - VB2PDF??? Thx. :( Urgent.......
  14. lingyi

    Text Box value as parameter to hyperlink?

    Hi, I got one text box which as for user to enter the quantity that user want. This text box will going through a loop of recordset. I named my text box as name=&quot;<%response.write &quot;Qty_&quot; & rst(&quot;ItemCode&quot; %>. Beside of the text box it will have one image. When user click...
  15. lingyi

    Text Box value as parameter to hyperlink?

    Hi, I got one text box which as for user to enter the quantity that user want. This text box will going through a loop of recordset. I named my text box as name=&quot;<%response.write &quot;Qty_&quot; & rst(&quot;ItemCode&quot; %>. Beside of the text box it will have one image. When user click...
  16. lingyi

    Request value from combo box blank???

    Hi, I got two frames in my htm page. Left frame consists of combo box with below code: <script language=&quot;JavaScript&quot;> <!-- function mainCatChange(){ parent.frames.mainFrame.location=&quot;testingitem.asp&quot;; } //--> </script> <form action=&quot;&quot...
  17. lingyi

    Copy image file to OS folder through Triggers???

    hi, Anyone got idea on how to write a stored procedure or triggers so that when data transfer reached sql, it will direct the sql to store the image file to specified folder in server instead on keeping it inside the sql database. THanks for helping..:)
  18. lingyi

    ASP &amp; Combo box

    hi, Any one know how to call a ASP page displayed on different frame when the combo box of source frame changed in vbscript under the onchange action? Thanks. Please provide some coding example if u can..:) Hv a nice day!
  19. lingyi

    Email Attachment - save to desired folder???

    Hi there, Any way that i can do some program to make a copy of all my attachment email to desired folder? Now i using Access 2000 as my application. When user send some attachment to program, I want to save my attachment to desired folder. Any solutions for it? Thanks :) have a nice day!
  20. lingyi

    delete tree view nodes

    hi, Anyone know how to delete nodes from tree view control. Please show me some example of it. Thanks.

Part and Inventory Search

Back
Top