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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lingyi

  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

    Hiding/Showing Fields

    Hi, I have similiar problem here. Is it possible to hide the combo box based on value of each record in continuos form. When I set visible to false in form current, it end up all the combox box in all records is hidden. Please help!
  4. lingyi

    Problem Accessing Subform Control in eval()

    Hi, I tried before yet it still prompt me the same error, any idea?
  5. 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...
  6. lingyi

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

    Hi bperry, I have a file name in my product table, and i will do a select statement as this 'select 'c:\temp\products\' + Productfilename as pathName from tblproduct WHERE ImgExists(Pathname)=1', yet when i try to create function for ImgExits, using the scripting.FileSystemObject, it prompted...
  7. lingyi

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

    Hi, I trying to pass the physical path of all my images located in server, from there i would like to do a select statement to select the item where imgExits( path name & itemfilename) = true. Or my other idea is can function pass back the whole recordset so that i can use it in my asp. I...
  8. lingyi

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

    hi bperry, i hv sql 2000, but how to include the UDF? iIf I dont't have the full path of image, how my select statement will be? Thanks for your idea, yet I think I need more information.
  9. 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
  10. 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...
  11. 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...
  12. 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
  13. 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
  14. lingyi

    Page not loaded completely in certain pages using paging??

    Hi, yes, pls send me a copy of ur example and let me compare with my code. Thanks. Please send to this email addresss. hoonling.ngoi@frontierforce.com
  15. lingyi

    Page not loaded completely in certain pages using paging??

    hi, Yes, example if I in page 1 then i will like to view page 4, so when i click page 4, the page doesn't load completed and it stopped.

Part and Inventory Search

Back
Top