• WSMatz

    WSMatz

    @wsmatz

    Viewing 15 replies - 1 through 15 (of 653 total)
    Author
    Replies
    • in reply to: Cannot enter data in query #1205859

      Hi John.

      Of course – a unique index is required. Brain not in gear!! Thanks for this. Makes sense, else as you say, which field would access know to update in case of duplicates otherwise!

      Also, how do you get the attachment in line? I like that. It’s been a while since I visited Woodys, and hence have a lot of new changes to get used to – liking the site though.

      🙂

    • in reply to: Delete Query (XP) #1147924

      Ah of course! Thanks )

      This was the culprit:

    • in reply to: Dicplay Comment (XP) #1128113

      Of Course… doh

      Early monday morning comes to mind!!

      Thanks Hans

    • in reply to: Dicplay Comment (XP) #1128109

      Hi,

      where do i put the code for a custom function? it doesnt work if I put it in the ThisWorkbook module. Do i need to add to an .xla?

    • in reply to: Not authenticating? #1128107

      Hmm, perhaps theres some powerlines in the wall there, or just the leads from the PC as its all in a corner by the pipes – just so annoying that if i move the PC forward its fine, but if not then i get no communication / authentication, although the signal is strong.

      Have changed the channel to 3, 5 and 13 – no joy as yet. I’m thinking an extendable cable (if i can find one) is the way forward!

    • in reply to: Email folders & subfolders? (2002) #1108521

      Ok, here is the code I have currently.

      It is to duplicate the folder structure of a .pst file. it copies the structure of a pst called ‘Current’, to a empty .pst called ‘temp’

      this is helpful as many managers want to copy their pst structure, and i can run this code to provide them with an empty structure.

      Sub r1()
      s1 Session.Folders(“Current”), Session.Folders(“temp”)
      End Sub

      Sub s1(fRoot As MAPIFolder, fCopy As MAPIFolder)
      On Error GoTo 1
      Dim f As MAPIFolder, i As Integer, fC As MAPIFolder
      For Each f In fRoot.Folders
      Set fC = fCopy.Folders.Add(f.Name)
      If f.Folders.Count > 0 Then
      s1 f, fC
      End If
      Next
      Set f = Nothing
      Exit Sub
      1:
      Debug.Print f.Name, f.FolderPath
      Resume Next
      End Sub

    • in reply to: Email folders & subfolders? (2002) #1108520

      Ahh.

      No probs, I am too trying to reconstruct the code. Thanks Hans.

    • in reply to: Email folders & subfolders? (2002) #1108518

      Hi, Hans – I need this code again, but the link does not work – any thoughts?

    • in reply to: Protected Document, still access inserted Object (XP) #1106330

      Thanks Hans and Paul.

      I don’t really want to have the ‘enable macros’ flag up, otherwise i might have gone for the on exit macro idea.

      Cheers

    • in reply to: VBA for Recordselector.Click (XP) #1105356

      Hi

      yes, was thinking of a list box, but the continous forms with that runcmd is fine.

    • in reply to: VBA for Recordselector.Click (XP) #1105349

      perhaps using a continous form will help – trying now…

    • in reply to: VBA for Recordselector.Click (XP) #1105348

      Hi

      works…ok-ish.. but not as good as when i click the record selector. The vba command sometimes selects the whole line, but sometimes opens up the cell within the selection . any other ideas?

    • in reply to: font size of document map? (word 2002) #1102098

      Hi

      I cant change the size of the document map font via the zoom settings on outline view – they have no affect on the document map size.
      I can however change by making the document map style visible and changing it there./

    • in reply to: Select all sheets vba (XP) #1099587

      i am dumb!!!

      cheers rory

    • in reply to: Range().Copy method freezing Excel (XP) #1093867

      well, thats quite a relief in a way! Thanks for taking the time Hans

      I will find a way around it I’m sure, start again tomo though.

      I really like the calibri font I have to admit, it has become my new ‘favourite’ replacing good old tahoma.

      I have Visio 2007 installed here, rest of office is XP2002, apart from Outlook which is 2003 . Calibri came in with Visio, I would use it for email but no one else would appreciate it as yet as the Visio 2007 is trial specific to me!

      Have a good evening

    Viewing 15 replies - 1 through 15 (of 653 total)