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 IamaSherpa 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. ckpeel

    Using MOD and developing a COM Addin that works for all Office Apps

    I'm using MOD for COM DLL development - VBA to be compiled in a DLL. The MOD projects let me set the target Application (Excel, Word etc). But I want to be able to write one application and based on the application loading it (word or excel) present a different Button or form? Can this be...
  2. ckpeel

    HELP - Microsoft Office XP Developer (MOD)

    I have just installed this? I did have problems with it. I need to put on a "component" upgrade and it worked. I installed the MOD to allow for creation of Office COM DLL addin's. But as I launch the MOD enviroment I get "Element not Found" and it then open. NO project...
  3. ckpeel

    Syncronization of Outlook Contacts

    I ended up just using the contactitem in Outlook. I wrote a piece of code in VBA that connects to our application (via an COM object) - then opens the defualt contact folder/adds a folder an then adds the contact (with ContactItem).
  4. ckpeel

    Enabling Macros In Excel

    If don't need to distribute your sheets to the public you can generate your own cert with program called 'selfcert.exe'. This articles tells you how do it and the ups and downs of it http://www.microsoft.com/officedev/articles/opg2k17.htm Also you will find in that article if you place your...
  5. ckpeel

    Syncronization of Outlook Contacts

    Glenn, I don't find any 'share' option under my file menu? Where do I turn this on from?
  6. ckpeel

    Syncronization of Outlook Contacts

    Thanks Glenn - This will help with keeping everyone in sync with the system. But the problem I'm dealing with is not just sync with each person but keeping in sync with the our application DB (MS SQL Server). I've seen some tools that do this - I think Intellisync from Puma also offers some...
  7. ckpeel

    Syncronization of Outlook Contacts

    Hi, I've been asked to sync our application 'contacts' to local outlook contacts so that we can store user info in the application (DB) and push it out to eveyone's local Outlook. I see some utilities developed to do just this a.k.a. Intellisync. Can anyone point me to an article or...
  8. ckpeel

    Word toolbar - locking them down from Users

    I call the code from the following sub: Sub AutoExec() 'Code that checks for the toolbar and adds ' it if required End Sub Sub AutoExit() 'delete the toolbar on unload 'routines run on unload of addin End Sub
  9. ckpeel

    Word toolbar - locking them down from Users

    Sorry - been away for a few days... the code for delete is as follows: Dim rc As Variant ' general Return code variable On Error GoTo Err_fDeleteAvistaToolbar 'should be err_subname where sub name is the function 'sub name we are in...
  10. ckpeel

    Word toolbar - locking them down from Users

    Sure.. this is the code I use to construct the Toolbars: Function fCreateAvistaToolbar() as Boolean '==================================== Dim cbrCmdBar As CommandBar Dim strCBarName As String Dim sSubName As String 'current Subname we are in On Error GoTo...
  11. ckpeel

    Outlook Express Problem

    I'm not sure I know what the issue is - could be registry error or something. Have you tried removing Outlook Express and installing a clean version? That's about the only asnwer I can think of. I good Outlook Express site that may offer some real help is at: http://insideoe.tomsterdam.com...
  12. ckpeel

    Word toolbar - locking them down from Users

    hi This I hope is an easy answer.... but I haven't been able to figure out how to do this. I have a Word addin that I need a tool bar for ... I created code to add the toolbar and it works fine... I added it to the AutoExec routine. So when the addin is loaded I check for the tool bar and if...
  13. ckpeel

    Can I use the "app.eventlog" in VBA as you can in VB

    VB has the ability to use the App.Eventlog to log messages in the system log. Can we do this in VBA also? I can't find a reference to being able to do this in my VBA documents. Anyone doen this yet? Chris
  14. ckpeel

    can you open Word VBA from IE browser

    Is it at all possible to have a button on a web page (ASP)call and open word to launch a VBA. I'm trying to figure out if I can get a web button to take a customer number from the web page and open a Word document - launch a piece of VBA code (word vba addin) and produce a report with the data...
  15. ckpeel

    Use Windows Dialog for getting a path

    Excel has something called: Application.Dialogs(xlDialogOpen).Show but I can't seem to make it work like it does in Word?
  16. ckpeel

    Use Windows Dialog for getting a path

    Some one sent me the answe I was looking for.... Use the Copy File dialog: With Dialogs(wdDialogCopyFile) If .Display <> 0 Then MsgBox &quot;You chose &quot; & .Directory Else MsgBox &quot;Dialog cancelled&quot; End If End With The advantage is that it is quick &...
  17. ckpeel

    Use Windows Dialog for getting a path

    Thanks. This still requires the user to actually click on a file. then the code you provided displays the folder information. What i want is the ability to actually just click the folder and then ok. It's a little differnet - I need the user to specify a default directory and I don't want...
  18. ckpeel

    Use Windows Dialog for getting a path

    I want to create a class that will allow a user to navigate via a windows dialog to a directory simply hit enter and return that path to my main code. I have this with the comdlg32 and GetOpenFileNameA (lots of samples are around for this). I dug through MSDN around an API called GETPATH ...
  19. ckpeel

    Trying to concantenate a variable into SendKeys

    Try changing: NcamObject.SendKeys &quot;G:\MANU\153\M&quot; & manu_file & {ENTER} to NcamObject.SendKeys &quot;G:\MANU\153\M&quot; & manu_file & &quot;{ENTER}&quot;
  20. ckpeel

    report

    sades1: Have you checked that the table/query is connected to the report. Check under the report/Data (tab)/record source - make sure the table or query is listed. If it's not that explains whay all the fields are being prompted for.

Part and Inventory Search

Back
Top