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 Wanet Telecoms Ltd 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: *

  • Users: Jhtexas
  • Content: Threads
  • Order by date
  1. Jhtexas

    Domain Selection

    At the login screen I get choices for the Domain to select. The problem is the domain I want is not a selection and it won’t let me type it in. Where is it getting these options from and how do I change it or let it revert back to me typing it in? Thanks, Jim
  2. Jhtexas

    Execute Sub when Save is Selected

    I want to be able to execute a Sub whenever the user selects the “Save Icon” or tries to do a “File-Save” command. The end result is to keep a user from saving the active document that has an extension other than .doc. Is there a way to tie this in? Thanks, Jim
  3. Jhtexas

    Close Word WithOut Prompt

    I want to be able to remove the “Save Prompt” for certain users when closing there documents because the changes should not be saved. I tried the simple macro below with no luck. Any ideas? Sub AutoClose() ActiveDocument.Close wdDoNotSaveChanges End Sub
  4. Jhtexas

    File Name with WildCard

    The file name used in this statement changes revisions from Qc-313a.DOC to Qc-313b.DOC. I want to be able to use a wildcard and not change the code when the file revision changes. Can someone tell me why the "*" does not work as a wild card in the statement below? Application.PrintOut...
  5. Jhtexas

    Print Margin Based on File Extension

    I’m looking for a way to set the print margins to certain values based on the file extension of the file being opened. The settings also produce a “Fix or Ignore” message that also has to be dealt with. This is because it has some text outside of the print area. I’d appreciate any suggestions...
  6. Jhtexas

    Win95 Run Time Files

    Can someone point me in the right direction for obtaining and installing the VB Run Time files for Win95? Thanks, Jim
  7. Jhtexas

    2005 Express to VB6

    I wrote a small program in 2005 Express and found out that it will not run on the Win95 OS. I was wondering if someone could show an example of what the code would look like if written in VB6? Thanks in advance, Jim Public Class Form1 Private Sub Button1_Click(ByVal sender As...
  8. Jhtexas

    2005 Express to VB6

    I wrote a small program in 2005 Express and found out that it will not run on the Win95 OS. I was wondering if someone could show an example of what the code would look like if written in VB6? Thanks in advance, Jim Public Class Form1 Private Sub Button1_Click(ByVal sender As...
  9. Jhtexas

    Recovery Console file Missing

    All, After installing the Recovery Console I rebooted the computer and started the recovery Console. It went through its loading process and came up with an error. The error stated that the file iastor.sys could not be found. Does anyone have any idea? Thanks, Jim
  10. Jhtexas

    VPN and Network drives

    I’m having trouble viewing the network drives using VPN. I can VPN in and get into OutLook send and receive mail okay but cannot map or see any drives under my login. While logged in if I try and login into the server using the IP address it warns me that I’m already logged in. If I use a...
  11. Jhtexas

    Import a Project from 5.0 to 2005

    I have a small VB 5.0 project that I want to convert into VB 2005 Express edition. When I try and upgrade it gets an error "Upgrade Failed". There is no other information giving on how to fix the error. Does anyone have input on how to get an app out of 5.0 and into 2005 Express Edition. Any...
  12. Jhtexas

    IIF Statement

    Can anyone look at the IIF statment and tell me whats wrong with the syntax? SELECT Employees.EmpID, Employees.LastName, Employees.FirstName, Employees.State, IIf (Employees.State = "YES",[Lastname] & " " & [Firstname] AS [Full Name], IIF (Employees.State = "NO" [lastname])) FROM Employees...
  13. Jhtexas

    Query on Multiple Names

    I have a work order table that has three one-to-many relationships with an employees table. The work order table will reference three different employees for each record using the employees primary key index (auto number) instead of a last name. When I create a query on the work order table to...
  14. Jhtexas

    Suppress Hard Returns from Memo Fields

    I have a memo field in a report that I use the “Publish it with Microsoft Word” option to export the data. The paragraphs of information in the word document are not controlled by the margins but be the hard returns that are produced during this export. How do you suppress the hard returns...
  15. Jhtexas

    Date Format

    When I concatenate the Date, Title, and Time field together I lose the formatting for the Date and Time fields from what was set in the table. How do I set the Date and Time format in this example? I had the date set to "mmmm dd" in the table. SELECT [date] & " " & [Title] & " " & [time] AS...

Part and Inventory Search

Back
Top