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!

Recent content by kesm

  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.

Part and Inventory Search

Back
Top