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

    textbox date

    Sorry that is for foxpro. Here's another solution in VB, hope this one can help. I had thought that the answer would be shrouded in obscurity and mystery, and require the use of either the registry or the initialization file functions in the Win32 API, along with some spying tools to see from...
  2. Grayfox081877

    textbox date

    i think the problem is the default date of your system setting is in mm dd yy format. You can check your regional options in control panel. If you want to code it... you can look for some API that will trigger upon loading of your Excel file. You can refer to this link...
  3. Grayfox081877

    How to hide/show excel sheet

    This will help you.. Sub HideSheet() Worksheets("Sheet2").Visible = False Worksheets("Sheet3").Visible = False End Sub Sub ShowSheet() Worksheets("Sheet2").Visible = True Worksheets("Sheet3").Visible = True End Sub For those who don't know how to place...
  4. Grayfox081877

    Personal Macro Question??

    Syntax: expression.Unprotect(Password)
  5. Grayfox081877

    Personal Macro Question??

    i think you accidentally locked the work book to unprotect .. try this This example removes protection from the active workbook. ActiveWorkbook.Unprotect
  6. Grayfox081877

    How to hide/show excel sheet

    try this ' Hide Worksheet For Each sh In Sheets sh.Visible = False Next sh 'Gray
  7. Grayfox081877

    Retrieve the document's content text in plain text format. (MS WORD)

    I Guess ... I'm not the only one who encountered this problem.. Here's my solution. this will remove all those weird boxes.. Private Function ClearString(strWord As String) As String Dim xstr As String xstr = Replace(Trim(strWord), Chr(7), "", , , 0) ClearString =...
  8. Grayfox081877

    Retrieve the document's content text in plain text format. (MS WORD)

    Hi Guys... I need to find out how to retrieve the tables contents text in plain text format. If I use ActiveDocument.Tables(1).Cell(1,2).Range.Text it gives me wierd little boxes ..like this "Test Data" Please help Thanks GrayFox
  9. Grayfox081877

    Export large .DBF files to .MDB

    Hi Guys I'm surfing the net and found this site very interesting, and I want to give it a try,I'm planning to create a Wizard using Visual Basic that will export large dbf files to Microsoft Access .mdb, the .DBF files were created using DBU.exe. my problem now is how on earth can i get a...

Part and Inventory Search

Back
Top