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

    Showing a product in a formatted textbox(contents)

    Good day to you! I have this problem with calculation. I have Quantity(txtQty) and Unit Price(txtUprice) field and output the product in the Amount(txtAmount) field. If works just fine if I remove the code to format the contents of the textbox. But my code below doesn't work, it gives a wrong...
  2. pingpang

    displaying commas and period in a textbox(currency) while typing

    Good day to you! I can't figure how to format a 1000 into 1,000.00/1,000 in a textbox. If you do, please help me. thanks!
  3. pingpang

    text from a form to display it on the report

    Hi! good day to you! I would like to get a text1.text from a form to display it on the report when I click the show report button. Do you know how to do it? by the way, i'm using data report. Hope for a response. thanks!
  4. pingpang

    Disallow pressing spacebar in a textbox

    Good day to you! I have a question, how can you disallow the user form pressing spacebar in a textbox? and another thing how can you limit a textbox input only for letters? hoping for a reply soon. thanks!
  5. pingpang

    data report using landscape orientation

    Hi there! I'using vb 6 and I get this error in my data report. The "report width is larger than the page width". and I solved this problem by making the report width smaller. But by doing so, I can't make my report in a landscape orientation. I would like to know how to do it. And...
  6. pingpang

    format the text in the texbox

    How would you format the text(numeric) in a textbox? Private Sub txtUprice_Change() txtUprice.Text = Format(txtUprice.Text, "Php ###,###") End sub what i want is when the user starts typing the comma and would appear while the user inputs the amount. thanks!
  7. pingpang

    sum the column from a datagrid

    Hi! How can you sum a column from a datagrid and show the result in a textbox? Thanks in advance....
  8. pingpang

    One form accessing three tables

    Hi! I need help... I have 3 tables: Customer, Job Order(main), Job Order Grid. Customer table fields: c_id(primary key) autonumber, c_name, c_address. Job Order(main) fields: jo_no(primary key)autonumber,jo_ordered-date, c_id(foreign key) Job Order Grid fields: jod_id, jod_qty, jod_unit...

Part and Inventory Search

Back
Top