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

    document.write() misbehaving (?)

    D'oh! Thanks feherke. That was just the elbow jab I needed.
  2. dgriffin

    document.write() misbehaving (?)

    I have only dabbled in Javascript. I cobbled this code together from articles I have read on line and got it working with the exception of the "document.write()" enclosed below. All other document.writes in this web page work fine, but I do not understand why this one misbehaves. It fires, so...
  3. dgriffin

    Add/Remove Prog List out of order

    The issue isn't speed. In fact it works perfectly normal. The only issue is the order in which the control panel applets are ordered. They are still alphabetical, it's just that it starts and ends in the P's with the A's in the middle. Insted of starting with the A's and ending with the Z's...
  4. dgriffin

    Add/Remove Prog List out of order

    My bad. Was deep into another problem and got the two confused. It is indeed the control panel list that I am referring to.
  5. dgriffin

    Add/Remove Prog List out of order

    I am running WinXP Home SP2 on a Dell 4700. I have no idea at what point this happened. One day I accessed the Add or Remove Programs List to find the alphabetical order had shifted. The list now starts with Power Options and ends with Portable Media Devices. Everything is still there, it's...
  6. dgriffin

    Datagrid Update Error

    Thanks for your response. Although I have checked all those simple things, I'm sure it is something equally simple that I'm just not thinking of. I've tried all three... datagrid.columns("BO") = "Yes" datagrid.columns("BO").Value = "Yes" datagrid.columns("BO").Text = "Yes"...
  7. dgriffin

    Datagrid Update Error

    I am trying to let the user toggle a boolean field (Yes/No) by double-clicking on the record line in a datagrid. This is the sub that I have, and I am getting a 6160 Data Access Error on the ...Text = ... lines. I have the datagrid set to AllowUpdate, and Enabled and such. I am using an...
  8. dgriffin

    Customer's Event Handler error

    Just when I thought I knew what I was doing...[blush] I am recieving the error "Customer's event handler called a non-reentrant method in the provider." on the red line below when I change a QTY field in the DataGrid: =========================================================== Private Sub...
  9. dgriffin

    Type Mismatch on DataGrid record source

    It took a little mental chewing to figure it out, but once I realized that DBgrid and DataGrid wasn't just a matter of semantics, I realized that I didn’t have what you were referring to and looked to the Components List to add Microsoft Data Grid Control to my tool bar, which shows up as DBGrid...
  10. dgriffin

    Type Mismatch on DataGrid record source

    DAO is what I want to use. What do I need to change, and to what, to get is right? Thanks for your patience. Dan
  11. dgriffin

    Type Mismatch on DataGrid record source

    I have been using MS Access for years, but just recently I'm trying to migrate to VB6 with a bit of a strugle! I get a Type Mismatch error on the line indicated below. What am I missing? ================================================== Private Sub Form_Load() Dim dbs As dao.Database...
  12. dgriffin

    Screen Print instead of Report

    Well, I found a workaround for the time being. The Envelope report prints with each applicant entry upon being saved. So, at least, data entry can resume. If I eliminate the PREVIEW the report prints properly. But this isn't the end of it. The user needs to SEE the codes for the envelope...
  13. dgriffin

    Screen Print instead of Report

    I thought for sure one of the two above approaches would work, but alass, not to be. I changed the report call from the form to: DoCmd.OpenReport "Envelope", acPreview, , "SSnum = '" & Me!SSnum & "'", ...
  14. dgriffin

    More Elegant Listbox

    Thanks guys. I knew I came to the right place to resolve this. The suggestion to use a hidden listbox lead me to a VERY elegant solution. In essence, it appears and feels like a combobox with the ability to multiselect items from the list. It took a bit of code using the OnKeyPress event to...
  15. dgriffin

    More Elegant Listbox

    If I understand you correctly, create a "visual equivalant" of a multiselect combobox? That is, hide the listbox starting at the vertical level of the textbox that contains the result, downward over the top of other fields that lay below the textbox. Making it visable only when the...
  16. dgriffin

    More Elegant Listbox

    The form contains all of the information about an employment applicant, including certifications and past history with the prospective employer. The applicants are part time, most returning for the fourth or fifth year. Hence, the form has a hugh amount of data on it. Far more than one would...
  17. dgriffin

    More Elegant Listbox

    I've searched through countless threads about populating a text field with selections from a multiselect listbox. And now that I understand that I can't do it with a combobox, how does one go about doing it with elegance? It appears to me that the only way to accomplish it is to display the...
  18. dgriffin

    Tab Control Dirty

    In another thread I saw some references to "Form On_Dirty" in regards to Access 2000. I failed to mention that I am using Access 97. I just tried mstrmage1768's suggestion which seems to effectively disable the the Form's CLOSE button as well as the Access Close button! It doesn't...
  19. dgriffin

    I have a Continuous Form with a tab

    Bingo!! You're my hero! Two months of struggling only to find the problem and solution to be so trivial. That's always the way. The solution to the most exasperating problems are the most innocuous. And how did you find that article. I have searched the knowledge base 6 ways to Sunday...
  20. dgriffin

    I have a Continuous Form with a tab

    The application is a Tree Inventory for a major city. The main form is a continuous form listing the trees thoughout the city that the Forestry division must trim on a rotating basis. Each day the crew foreman prints a list of addresses that the crew is to trim that day. When they return to...

Part and Inventory Search

Back
Top