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

  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!!

Part and Inventory Search

Back
Top