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 wOOdy-Soft 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 tudogs

  1. tudogs

    Local Idioms (again)

    In southeast Kansas where I was born we had flood control levies along the river. These were built by digging long pits along both sides of the levies. The locals always called them 'Bar Pits'. Now I know why. I think this is local-speak for Barrow Pits. Thanks Guys Bob Daughters are...
  2. tudogs

    MouseWheel Scroll in FlexGrid

    After three evenings of head bashing I finally made this work in Win98, 2k, XP. This will work with multiple FlexGrids on a form. I hope some of you may be able to use this code. 'PLACE FOLLOWING CODE IN A MODULE Private Declare Function CallWindowProc Lib "user32.dll" Alias "CallWindowProcA"...
  3. tudogs

    Problem with a selective sql statement

    Have you tried brackets around your table names and field names? Good Luck Bob Daughters are Gods Vengeance on Fathers for being Men.
  4. tudogs

    Combo box - displaying data not in list

    Hi Has anyone ever tried this: 1. convert the price to cents only(multiply by 100) 2. then convert price(in cents) to integer 3. insert this integer into its relevant ItemData slot 4. Place TextBox or Label next to ComboBox 5. on selection of Item in ComboBox a. Divide ItemData by...
  5. tudogs

    Forcing a Mdi Child Window Size

    Hi If I understand your problem correctly, Try this: 'Make sure child Form.WindowState = Normal 'In Childs FormLoad Enter: Me.Height = XXXX Me.Width = XXXX 'Where XXXX = your required size. HTH Bob Daughters are Gods Vengeance on Fathers for being Men.
  6. tudogs

    Complete string is not displaying in combo Box

    If you only want to display the complete string in the dropped down part of the combo, try the following. I think I got this from TT a while back.(not sure when or where) Copy this into the Declarations of the form. Private Declare Function SendMessage Lib "user32" Alias "SendMessageA"...
  7. tudogs

    Compiler wont recognize the mid or string$ functions?

    I had a similar problem not long ago. The problem turned out to be my own stupidity. I was trying to work with files on one computer that had origonaly been written on another computer (same type of computer and OS). After trying for almost 3 days I finally discovered that the new computer...
  8. tudogs

    No Caption but show caption in task bar

    Hi I just made a form with: Control Box set to False MaxButton set to False MinButton set to False Caption = "" The form has one Button on it.(caption is "Minimise") the following code is in the form. Private Sub Command1_Click() Me.WindowState = 1 End Sub Private Sub...
  9. tudogs

    Need to delete Temp Internet Files

    Gday > SemperFiDownUnda Yes that was the thread that helped With a little Tweeking. Sorry I didn't get back quicker. This would be a great job if the phones didn't ring. ;>} From your 'Nom de Plume' I assume you are Former US Marine I'm Bob Former ET1(SS) USN Submarine Force
  10. tudogs

    Need to delete Temp Internet Files

    Hi again I Solved it with help from DrJavaJoe Thanks again. Bob
  11. tudogs

    What is the API call to delete Cookies and Temporary Internet Files of

    Hi Doc Thanks for the help *4U Bob
  12. tudogs

    Need to delete Temp Internet Files

    Hi: I am running 98SE and want to Delete Temp Internet Files but I'm getting a 'File Not found Error' in the following statement. Kill "c:\windows\temporary internet files\*.*" I'm probaby not awake yet.(Monday morning here in Perth Western Aust) ;>{ Thanks in Advance Bob
  13. tudogs

    How to create a Matrix

    I think you want a Grid? Look up MSFlexGrid in Help This should Provide what you need. Good Luck Bob
  14. tudogs

    remove highlighting from MSFlexGrid

    Hi It sounds like you may have MSFlexgrid.AllowBigSelection property set to true. Try it Set to False. hope this helps Bob
  15. tudogs

    Visual Basic 4.0 question - please

    Hi I'm not very familiar with XP but--- The first thing I would look at is your windows date configuration. Maybe I'm just shooting in the dark, but I once had a similar type problem with a clients machine. Good luck bob

Part and Inventory Search

Back
Top