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 dencom 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 jgo333n

  1. jgo333n

    Control Array Vuible property not being set

    Thank you for your help.
  2. jgo333n

    Control Array Vuible property not being set

    I have achieved the behaviour I require by using a different approach. Thank you every body for your help. I never got the issue resolved.
  3. jgo333n

    Control Array Vuible property not being set

    Here is the complete method, the container for these control arrays is DEFINITLY Visible. When we iterate the SG15Blbl is contained inside the picSG15But. and when we set the .Visible property of the SG15Blbl is DOES get set to True, even though its container picSG15But is set to false. As to...
  4. jgo333n

    Control Array Vuible property not being set

    sorry it should have read: Dim cntrol As control For Each cntrol In Me.Controls And yes I did copy and paste not type , as I am not that dim.
  5. jgo333n

    Control Array Vuible property not being set

    Option explicit is turned on and the control as declared as a control. in fact I say dim control as control for each control in Me.controls . . If Len(Trim(cntrol.Caption)) > 0 Then With frm.picSG15But(intCounter) intButtonCounter = intButtonCounter + 1 .Visible = True .Enabled = True...
  6. jgo333n

    Control Array Vuible property not being set

    Windows Vista VB6 SP6 I have a control array where all properties are being set except for Visible I try to set it. When the line executes it setps over and appears to execute successfully, the line below (Enabled) behaves the save except that the Enabled value is set and the Visible property...
  7. jgo333n

    vb6 outlook 2013 automation

    ActiveX Component Can't Create Object" error when trying to create an outlook object in IDE is resolved by turning of the compatibility mode, for the VB6 ide. Once this is done all works as it should, and the source code behaves as per the exe does. So thank you everyone this issue is now resolved.
  8. jgo333n

    vb6 outlook 2013 automation

    Fixed my Display as HTML issue, stupid developer issue, however IDE source code fails even though the EXE works.
  9. jgo333n

    vb6 outlook 2013 automation

    When I build the application the EXE behaves itself and sends an email but running in the IDE it fails. A secondary issue is now I need to get outlook 2013 to display html. and following the instructions to 'Display as HTML' does not work. !!
  10. jgo333n

    vb6 outlook 2013 automation

    I know but my company want to do it this way. However I think they are going to have to change their minds. I will look up your thread on CDO for tomorrow.
  11. jgo333n

    vb6 outlook 2013 automation

    The source code is good as it works with other editions off outlook, the PC is a dev box. It appears that outlook 2013 does not ship with all the older dlls required to allow vb6 to automate sending emails. I am experimenting further.
  12. jgo333n

    vb6 outlook 2013 automation

    using Windows 8 running VB6 as admin and compatibility as XP sp3
  13. jgo333n

    vb6 outlook 2013 automation

    This is not difficult to do, but I am getting ActiveX Component Can't create object when I try to create an object. I have added a reference to Microsoft Word 15 Object Library. and here is the code: Dim objOutlookApp As Outlook.Application Dim objNameSpace As Outlook.NameSpace...
  14. jgo333n

    Serial Comm communication Issue

    Tedsmith, I have almost resolved the issue, firstly when looking at the hex output i need to send a cr and lf which in text mode was not showing up when the original software sent its signel, secondly i need to check what is returned and wait for an acknowledgement return string, where as i was...
  15. jgo333n

    Serial Comm communication Issue

    strongm Yes i am using portmon and what a cool tool it is. You may be right as on further investigfation there are two non priable characters the current software sends i thin htese are <cr><lf>. When i get some instrument time (instrument is in use most of day) I am going to record the...

Part and Inventory Search

Back
Top