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 Mike Lewis 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: Ads
  • Order by date
  1. Ads

    Shot In The Dark - Signature Capture Device and VB

    Maybe.... I am trying to go about it a different way. I will let you know...
  2. Ads

    Shot In The Dark - Signature Capture Device and VB

    Hey... Ok, I have a signature capture device that draws a signature into a picture box... Everything works well, except I cannot get the Picture1.Picture item to save into it's OLE Database field. It saves a null field. My Qustion: Is the .Picture property the correct property to export or...
  3. Ads

    Problem with Date/Time as criteria in SQL Statement

    Thanks Everyone! I went live with this project yesterday, and everything is running smoothly. Ads
  4. Ads

    Problem with Date/Time as criteria in SQL Statement

    Hey... I am building a basic transaction program to be used at a Tanning Salon. When a staff member logs off, I want to query the recordset to focus to records for that Staff Member, on that Date, between login/logout times; this will enable calculation of Shift Sales, Packages, Totals...
  5. Ads

    Suggestions on Approach to Making a Time Booking Sheet

    I guess my question then is how do I structure the database table that the flex grid connects to. I can have a table with each "Bed Number" as a field... that will put the Bed Numbers across the top of the flex grid. However, how do I get the "Bed Times" to populate down...
  6. Ads

    Suggestions on Approach to Making a Time Booking Sheet

    Hi, I am making a program for a Tanning Salon where appointments are taken for the 12 available tanning beds at 15 minute increments. I want the GUI to look like the paper booking sheets they are already using. It seems logical to replicate the booking sheet using excel... but would it be...
  7. Ads

    Add New not occuring, even though AddNew function executes error free.

    Hey... I have a simple command button that adds new transactions to a customer table called datTransactionPackage. I've called the AddNew event for the the recordsource and append the information at runtime. Following is the add event called when "Add to Shopping Cart" is clicked...
  8. Ads

    Refreshing a table populated user contol combo box after addnew

    The combo box is populated at run time (which also initializes the user control combo box). The code to populate the combo is such: Public Sub AddItem(Item As String) If Item = "" Then Exit Sub Combo1.AddItem UCase(Item) If ItemsArray(0) = "" Then...
  9. Ads

    Refreshing a table populated user contol combo box after addnew

    Hey... I have a combo box that I designed in a user control. The combo box is populated with a bunch of customers from a table called Customer during user control initiation (startup). The customer adds data to the customer table via data entry on a "Add New Customer" Form. The...
  10. Ads

    Making VB and Word Work Together

    I am in desperate need of help... I am have created a Word document with lots of VB buttons and controls which I have editted in Visual Basic. When I click Play in VB, it gives focus to the Word Document and everything runs smoothly. My Question: How come when I close and open the document...
  11. Ads

    Someone PLEASE Help...So Simple...

    Thanks Tim... I am more specifically trying to execute a batch file... Do you know what that command is.
  12. Ads

    Simply Question...Please Help...

    Simply Question...Please Help... I have to execute a batch file from my VBA. How is this possible? I know it is a simple piece of code but I can't remember it. Ads
  13. Ads

    Someone PLEASE Help...So Simple...

    I am trying to execute a simple command line in my visual basic application to launch a batch file. for example if i wanted to delete a picture from my harddrive, the ms-dos prompt would be: delete c:\pictures\christmas.jpg How do I execute it from VB? I have heard of a DOCMD or something...
  14. Ads

    passing JS string variable to HTML file...SIMPLE!

    It totally worked... Thanks alot, that would have caused hours of wasted frustration..
  15. Ads

    passing JS string variable to HTML file...SIMPLE!

    I need to pass a variable from a js file into a html document for writting purposes. For example: JS file (text.js) ----------------- var wC='Hi my name is...' HTML file (index.html) ---------------------- <html> <body> <script language=&quot;javascript&quot; src=&quot;text.js&quot;>...
  16. Ads

    Selecting A Certain Amount Of Text In A Textbox

    Do you mean select the text by dragging your cursor over the word, or select part of the word using a substring function in java?
  17. Ads

    &lt;input type=&quot;button&quot; ---- to link to a URL

    You can also try this: <input type=&quot;button&quot; name=&quot;Submit&quot; value=&quot;Listing&quot; onclick=&quot;javasrcipt:window.parent.location.href='hello.htm'&quot;> or this: <input type=&quot;button&quot; name=&quot;Submit&quot; value=&quot;Listing&quot...

Part and Inventory Search

Back
Top