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

    Keeping details and header together

    Why don't you just move your header to the footer? If you're not displaying the details, it shouldn't matter that the header is after the details. Hope that makes sense.
  2. kmcclung

    ComboBox Drop-Down List with Columns

    Is it possible to have columns in drop-down list? I know its possible with a listbox, but I really need to use the drop-down list.
  3. kmcclung

    MSFlexGrid - Sort by Column Clicked

    Thanks ShaneA! That is exactly what I needed!!
  4. kmcclung

    MSFlexGrid - Sort by Column Clicked

    I'm sure there are posts out there but the search not available I can't find anything so I apologize if this has been answered in the past... I have a MSFlexGrid that is sorted by a date - records are sorted by date in the SQL query to retreive them. They are put into a collection that is then...
  5. kmcclung

    Word & Excel 2000 - Print Preview & Print Issue

    I didn't re-install the print drivers but I tried something else that partially worked.... I shut down the HP printer, unplug it from the USB hub and plugged it directly into the PC. This resolved the issue of the printing appearing as double-striked on the Word and Excel documents. Have no...
  6. kmcclung

    Word & Excel 2000 - Print Preview & Print Issue

    I am having problems with a Word document & an Excel Spreadsheet and printing them. Both of them were created on a work machine, then tried to print them at home from adifferent machine to a HP Photosmart 1000. They are printing as if everything is bolded, almost like it's double-striked, but...
  7. kmcclung

    Restricting Users From Typing Values Into ComboBox

    Instead set the listindex = -1
  8. kmcclung

    Titles of windows

    Check out the solution I used under the thread "# of Instances of an Application Opened" thread222-430467 I use it to make sure a workstation cannot open more than 4 instances of an application, but in it I am checking the title of all open windows. Hope this helps!
  9. kmcclung

    # of Instances of an Application Opened

    I used the following code to determine if the title of the application (pulled from an ini file) is running. If so, I increment a counter and pop a message box if a match is found for a 5th time. This prevents the user from opening more than 4 instances of the same application.... Private...
  10. kmcclung

    # of Instances of an Application Opened

    Thanks to both of you. I need this per machine. And although it may be tedious, PraveenMenon I think I'll use your solution. Thanks for the help!! I'll let you know the result when I get the code in place.
  11. kmcclung

    # of Instances of an Application Opened

    Is there a way to determine how many instances of an application are running on the workstation? I know there is the PrevInstance Property but that only tells you whether a previous instance of an application is already running. I need to know if 4 are currently running - limiting the user to...
  12. kmcclung

    ADO - Calculated field from 2 databound fields

    They are labels, not text boxes, so there is no validation event. I had to use labels because I actually reached the maximum number of controls on a form. Therefore I had to create arrays for the labels so I could fit everything on one form.
  13. kmcclung

    DataGrid HeadClick - right or left mouse button

    Does this help..... Private Sub grid_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single) If Button = 1 Then MsgBox "Left" ElseIf Button = 2 Then MsgBox "Right" End If End Sub
  14. kmcclung

    ADO - Calculated field from 2 databound fields

    I am trying to populate a label (unbound) with the result of one label divided by another (both ado bound). My form has 8 tabs and generally this field is calculated when the user clicks on the tab which the calculated field is display on. The problem is if the user stays on that tab and moves...
  15. kmcclung

    Rich Text Box - Different Fonts/Colors Per Line

    It does hightlight the rest of the text in black but all of the text is red. The test worked so I'll play with it a little more. Thanks so much for your help!!
  16. kmcclung

    Rich Text Box - Different Fonts/Colors Per Line

    I'm not sure what the first 2 lines are doing, but the last line changes all text in the rich text box to red.
  17. kmcclung

    Rich Text Box - Different Fonts/Colors Per Line

    That works great to apply to all the text, but where I'm having the trouble is doing it for some lines in the rich text box.
  18. kmcclung

    Rich Text Box - Different Fonts/Colors Per Line

    I have a calendar where each day of the month is a rich text box. I am using it to display all the days of the month and then additional text for an "incident" that may have occurred on a particular day. It works great expect I'd like to change the font/justification for the date and...
  19. kmcclung

    Cross-Tab Formula

    I have a cross-tab report which I am performing a count of how many times a particular action has occurred in a half hour. This is working as expected but I need additional assistance getting... The report looks like this: Action A Action B Action C (and so on)00:00 1...
  20. kmcclung

    Cross-Tab by Half Hour

    If I create the formula above and add it as a row, the cross-tab only prints the entire day on one row and then a grand total row. I then tried changing the Grouping Options on the formula field to on every hour and get the same results as I do when I don't use the formual and just the date field.

Part and Inventory Search

Back
Top