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 Mike Lewis 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: kesm
  • Order by date
  1. kesm

    Can a yes/no field display a'check box' using VBA

    Within the Table design, Set the Format [True/False|Yes/No|On/Off] Then Display Control either a Check box [Tick box] or Combo box [Yes/No] will be used on forms. This detemines which is used on the forms.
  2. kesm

    Macro's & VBA MDE won't run in Runtime

    Have you placed these in a trusted location?
  3. kesm

    loop through highlight subform records

    Thanks Remou, Now working using the Second Method. Cheers.
  4. kesm

    loop through highlight subform records

    Hi all, I am using Access 2007. I have created a form which contains a subform. I am trying to Up-Date records which are user selected in a subform when user hits the Update button. Any ideas? TIA
  5. kesm

    Windows Picture and Fax Viewer

    The problem I have, we have lots of small vbe forms which use the kodak (wang / eastmead) ocx files. In Win XP (Office XP) these are no longer trusted, as we need to pay Microsoft for their image ocx files :-( In the methods mentioned above, is there any way to get Office to trust the...
  6. kesm

    sending email using custom outlook form

    Hi All, I have up and running code to send email from a vb form. Although, outlook security continualy asks for confirmation to allow programs access (this will be the next area I tackle if I can get this one to work), the emails are being sent ok. I want a way to send emails using a particular...
  7. kesm

    sending email using custom outlook form

    Hi All, I have up and running code to send email from a vb form. Although, outlook security continualy asks for confirmation to allow programs access (this will be the next area I tackle if I can get this one to work), the emails are being sent ok. I want a way to send emails using a particular...
  8. kesm

    Network Print ports read as NE1,NE2..

    I have a simple form with a combobox and three buttons. Each button prints out a particular document. The combo box is there to select the printer. OnLoad runs through:- for each printer in printers comb.additem .devicename & " on " & .port next CombOnChange():- PRT_Port =...
  9. kesm

    Network Print Using VB with Word 10 Ref

    I am using the printer collection to look up the printer device names and ports. For the local printers this works fine, but on networked printers, i receive the ports as NE1, NE2, NE3.. using these ports fails to print from the code. Is there any other way I can retrieve the port names into...
  10. kesm

    enumerating network printer ports onto activeprinter (ne#)

    I have a simple form with a combobox and three buttons. Each button prints out a particular document. The combo box is there to select the printer. OnLoad runs through:- for printer in printers comb.additem .devicename & " on " & .port next CombOnChange():- PRT_Port = Comb.Text...
  11. kesm

    Sleep mode hanging program

    Hi CaKiwi. There is three possibilities for your system hanging: 1: A Known Bug in win16 code ported from Windows 3.1, (code never returns in Windows 95 because the EV_RING event is not detected by the system) has been reported in early win98 versions. 2: The WaitForSingleObject waits...
  12. kesm

    Modem / LAN Security

    Hi. Due to an unforseen security requirement, I am unable to install a modem into a PC which is connected into my LAN. As I have the need for a Fax server and aau I require at least 1 modem installed into 1 PC. I can put the modem(s) off Hook when I start the network services and stop the...
  13. kesm

    How to create a next button in power point

    Try this from a form command:: Private Sub CMB_Play_Click() Dim ppt Dim shs As SlideShowSettings Set ppt = New PowerPoint.Application ppt.Visible = True ppt.Presentations.Open "c:\My Documents\ex_a2a.ppt" Set shs = ppt.ActivePresentation.SlideShowSettings With...
  14. kesm

    cannot access rows / vertically merged cells

    Im am trying to progmatically readin a word document, bookmark certain sections and save this out as an asp file with hyperlinks and menus added. When reading through the doc i recieve an error (Accessing individual rows in this collection because a table has vertically merged cells) Message...
  15. kesm

    How to create a next button in power point

    Hi at51178, Use the SlideShowShow Class With the 'Enum PpActionType' {ppActionEndShow = 6,ppActionFirstSlide = 3,ppActionLastSlide = 4, ppActionNextSlide = 1, ppActionPlay = 12} Thanks Kes Any more probs I will post you some code.
  16. kesm

    Win2k Fax Server No Response from Code

    I have taken them out of the .with statement and recieve <expression not defined in context>.. I have the dll files registered, have installed onto another w2k pro. updated to sp3. ? Any thing else I could try. Kesm
  17. kesm

    Win2k Fax Server No Response from Code

    I have set-up the Fax Service on windows 2000 pro. The problem that am I am facing is when using the code below to send a fax in VB6, I recieve no warnings or messages but no fax documents are spooled. The code which is called from a form command button is as follows:- (the str data is...
  18. kesm

    Win2000 Fax Service from VB6

    I have set-up the Fax Service on windows 2000 pro. The problem that am I am facing is when using the code below to send a fax in VB6, I recieve no warnings or messages but no fax documents are spooled. The code which is called from a form command button is as follows:- (the str data is...
  19. kesm

    using nt4 server as Backup domain controller to windows 2000 server

    This is impossible isn't it? There is no way to replicate the active directory on windows nt4. We are looking to set-up a new win 2k server, and our current windows nt4 server will be demoted to a bdc. We can replicate the data directories between the two, as user authentication runs from...

Part and Inventory Search

Back
Top