Third Party Source Control

Hi there, I'm in the process of versioning the files that
RoboHelp uses into our Source Control. We're using RoboHelp version
5.xx. Is there a document out there that outlines which files are
required to be versioned, and which files are created during
compile time and are not required?
Any information you could send my way would be appreciated.
Thanks.

See my last response in
this
thread.

Similar Messages

  • Connections with third-party source control - will they be retained?

    I have RoboHelp installed on my hard drive. Company is swapping out my hard drive and I will need to reinstall it.
    All my RH projects are connected to a third-party source control mechanism (Visual SourceSafe).
    When I reinstall RH, will the connections to Visual SourceSafe be retained for all my projects?

    Hi,
    Just getting the latest version should work. I had a similar problem after a crash. RoboHelp can't detect which projects are in the VSS database, but after getting them, it all worked fine.
    You may however still want to backup your projects on a removable media to be sure. After the reinstall, just make sure the VSS client in installed, copy your project from the media and get back to work -- Could it be that simple? Well, it was for me.
    Greet,
    Willam

  • Installation hangs with Third Party Source component

    Hi,
    The installation hangs when it is installing Third Party Source (57%) in my environment.
    This is my environment:
    1. Solaris 10 x86 5/08
    2. SunStudio12ml-solaris-x86-200709-pkg.tar
    3. Installation method: single user, graphical user interface
    4. Hardware: VMware Workstation 6.0.2, CPU 1.5G, memory 400M
    I searched in SunStudio12ml-solaris-x86-200709-pkg.tar, and I could not find SPROrdbks package which belongs to Third Party Source component.
    I suspect this is the root cause of my installation problem. I restart the installation, and I do not select to install Third Party Source component. But the installation process now hangs when it is installing Performance Library (56%). I don't what is the root cause :P
    Can anyone help me?
    Thank you very much!
    Regards,
    O2Cabin

    Hi,
    You could find log in the /var/sadm/install/logs directory. Probably it helps you.
    (for example: /var/sadm/install/logs/Sun_Studio_Ceres_software_install.B09161643)
    Unfortunately the SunStudio12 installer could have problems with virtual environments.
    The Sun Studio is distributed as tar.bz2 archive (for latest Express it is wrapped into sh script).
    You could just unpack it. The only difference is that there no packages are created.
    Could this helps you?
    Also if you use OpenSolaris you could install Sun Studio from IPS.
    Thank you

  • How to use a 3rd party source control tool with RoboHelp?

    Hello,
    I would like to set our RoboHelp users up with source control.  They are using RoboHelp HTML 8.0.
    Our software developers are using the AccuRev scm system; I'd like the doc team to use AccuRev, too.
    Can someone direct me to RoboHelp documentation that explains how to set up and use a 3rd party scm system with RoboHelp?
    Thank you,
    Marilyn

    It appears that RoboHelp 7 only sees the first SCC provider listed in the Windows Registry and ignores the rest. I was able to get RoboHelp to display the File | Version Control menu for SourceGear Vault by setting the following two Registry keys and removing keys for other SCC providers (SourceSafe, Surround SCM, and others I am evaluating).
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider
         ProviderRegKey = \Software\SourceGear\Vault Client
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders
         SourceGear Vault VS2003 Compatible Client = SOFTWARE\SourceGear\Vault Client
    If I create a new RoboHelp project, save it, then select File | Version Control | Add to Version Control, RoboHelp does the following:
         - pops up the Select Version Control Provider dialog and displays SourceGear Vault Classic Client.
         - I select that, check "Make this my default selection" checkbox, and click OK.
         - RoboHelp crashes.
    I'm using SourceGear Vault 5.02 under Windows 7 Ultimate 32-bit. A search of the SourceGear Vault knowledge base reveals that they do not support RoboHelp because of its incorrect behavior and instability. It's so sad that RoboHelp can't work properly with industry standard SCC providers. Vault is by far the best SourceSafe replacement out there, and very affordable.

  • Third Party Application Control

    How can I gain control of the windows of a third party application.
    For example, if I write a program to startup Freecell, how would I go about starting a new game, goinf to file on the menubar and saying new game.

    You get yourself a reference book on how to use the Windows APIs. Then you write some JNI code that uses those APIs. There is no pure Java method of doing that.

  • Debug third party source code

    Hello Friends,
    I have jar files from a third party and the corresponding source code. I wanted to know how I could add the jar files to my weblogic runtime and then debug it by pointing to the source code. I don't want to directly add the source code to the project because that will mean compiling all of them when doing a clean build. I am unable to find a way to do this in workshop?

    I'm guessing you're referring to the Workshop for WebLogic 8.1, and not the 9.x series. If not, there'd be a different answer.
    You may have to debug your third-party code with a different debugger, like Eclipse or NetBeans. In the IDE project, just add the source code for your third-party code, and connect remotely to the server (make sure you have the correct "-Xdebug ..." parameters on the server). You may not be able to debug the app in both IDEs at the same time.

  • Third party source is trying to change my homepage.

    I get a pop-up box stating that 'myfuncards' has blocked a third party attempt to change my homepage, then a 'Firefox' message saying someone is trying to trick it into downloading and update.

    Your System Details List shows some extension that can be considered as malware and MyFunCards is among them
    You can disable or uninstall all suspicious extensions that you didn't install yourself or that you aren't sure of.
    *http://kb.mozillazine.org/Uninstalling_add-ons
    *http://kb.mozillazine.org/Uninstalling_toolbars

  • Issue creating Item Activated Events for a third party form Control in Windows Powershell

    I was asked at work to look into converting some of our VB.Net Applications to PowerShell. We use the
    QIOS dev Suite for some of the controls to make it more visually appealing. I have been testing to controls out and I can load and create forms with no issue in powershell but I'm stumped on the error I'm
    receiving when I add and ItemActivated event. I need to make it so when a user clicks on a given menu Item the form gets which menu item is clicked. 
    Below is the code to my test form.
    [VOID][reflection.assembly]::Load('System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089')
    [VOID][reflection.assembly]::LoadFile("C:\Code\Qios.DevSuite.Components.dll")
    [System.Windows.Forms.Application]::EnableVisualStyles()
    $form1 = New-Object 'System.Windows.Forms.Form'
    $Menu = New-Object 'Qios.DevSuite.Components.QCompositeControl'
    $item = New-Object 'Qios.DevSuite.Components.QCompositeMenuItem'
    $DOSOMETHING={Write-Host "DO SOMETHING"}
    # form1
    $form1.Controls.Add($Menu)
    $form1.ClientSize = '202, 262'
    $form1.Name = "form1"
    $form1.Text = "Form"
    $form1.add_Load($form1_Load)
    #MenuItem
    $Item.ItemName = "Test Item"
    $Item.Title = "Test Item"
    # Menu
    $Menu.Location = '13, 12'
    $Menu.Name = "panel1"
    $Menu.Size = '177, 238'
    $Menu.Items.Add($Item)
    $Menu.Add_ItemActivated($DOSOMETHING)
    $form1.ShowDialog()
    If someone could take a look and tell me what I'm doing wrong that would be great. If you need the dll file below is a link to my copy.

    I was able to get the attached code to work in windows 7 with powershell version 2. I have to see why it dosent like windows 8 and powershell version 4.
    Update: I just did powershell -version 2 in windows 8 and I was able to run the code. 
    [void][reflection.assembly]::Load('System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089')
    [void][reflection.assembly]::LoadFile("C:\Users\xAdmin\Desktop\Qios.DevSuite.Components.dll")
    $frmMain = New-Object 'System.Windows.Forms.Form'
    $ccMenu = New-Object 'Qios.DevSuite.Components.QCompositeControl'
    $ccitem = New-Object 'Qios.DevSuite.Components.QCompositeMenuItem'
    $Function = {
    param ($sender, $e)
    [System.Windows.Forms.MessageBox]::Show($e.Item.ItemName)
    $frmMain.Controls.Add($ccMenu)
    $frmMain.ClientSize = '202, 262'
    $frmMain.Name = "form1"
    $frmMain.Text = "Form"
    $frmMain.add_Load($form1_Load)
    $ccMenu.Location = '13, 12'
    $ccMenu.Name = "panel1"
    $ccMenu.Size = '177, 238'
    $ccMenu.Items.Add($ccitem) | Out-Null
    $ccMenu.Add_ItemActivated($Function)
    $ccitem.ItemName = "Test Item"
    $ccitem.Title = "Test Item"
    $ccitem.Configuration.StretchHorizontal = $true
    $frmMain.ShowDialog()

  • Third party PO control over quantity?

    Dear Gurus,
    Firstly, user is creating a sales order with quantity as 98 units..
    After this, he is creating PO with 98 units and after that he is changing the quantity to 100 units.
    Now, he wants to control over this quantity so that it will not allow him to change the quantity.
    how can i restrict user to not allow to change quantity so that the sales order qty and po qty will be same?
    Thanks..

    Hi
    Once you have created the PO you can only change the PO quantity manually.
    You can block as it was explained here but it will affect all POs.
    Do you create the PO against a SO?
    What you can do is use an user exit to control that. But you need to know the SO which generates your PO.
    Regards
    Eduardo

  • Third party ocx controls with oracle 6i forms

         I would appreciate if anyone can get the solution on how to work with the ocx controls on the oracle forms.i am doing the same thing and when I embed the ocx control on the form during design time and then execute it then the ocx control is lost during run time as I have to insert the object on the oracle form during the run time again and then how do I call the functions of the ocx ?please guide me at the earliest.thank you.

    Firstly upgrade to the latest patch of 6i, early version of 6i have a bug where OCX licence information is not correctly stored with the container, so in some cases the control will not instanciate at runtime.
    To call functions in the control, the simplest thing to do is to use the OLE Importer (MENU: Program -> Import OLE Library Interfaces). Choose the class of your control and Forms will generate you a PL/SQL package to call all the functions in the control.
    The rest is up to you - you have to know the API of the control you are using.

  • Integrating SAP HCM with third party Access Control System

    Hi Experts,
    We have client using SAP HCM and intend procuring an Access Control Solution to manage her people.
    What the client wants to avoid though is having to create a new employee in SAP HCM and manually creating same in the Access Control Software. Is there a way this can be automated such that upon recruitment of new staff, the data is updated in the Access Control DB which uses MS SQL? If this is possible, what is required to get this working well.
    Thanks for your support in this regard.
    Regards
    John

    For time management with the help of transaction pt80 you can download the information about employees with the help of idoc. And there are some programs a.k.a connectors that link access control systems and SAP so that you do not hire the same employee in the access control problem. You hire the employee in SAP and SAP sends the information (HR Minimaster DATA) to the related program.
    It is also do the same thing for the employees who resign. I mean if an employee is fired or resigned from the company than it is sent to the related system.
    These can be found under PDC integrated systems. You can find information about the systems from Ecohub. http://ecohub.sap.com/
    I hope this answer will help.

  • Robohelp 8 integration via the Microsoft Source Control API (Perforce/Subversion)

    Robohelp 8 claims to support the Micorsoft Source Control API, which allows third party source control systems to be used with it. Unfortunately, it seems to work great with Subversion (third party plug-in required) and Perforce until we rename a file. Then it fails. For Perforce, it fails with no error. The file just doesn't get renamed. For Subversion, we get an ugly error from the plug-in, but after consulting with the plug-in's developers (PushOK) and given the same problem in Perforce, I think this is an RH8 bug.
    Has anyone else seen this, or does anyone else have experience with this?
    Thanks in advance!
    Jason

    was routing problem

  • Third party control in oracle developer6i

    hello,
    i want to use third party grid control in developer 6i, can anybody help me regarding this request i wil b very thankful its an urgent
    thanx

    Please re-ask your question on an OHS forum; see https://forums.oracle.com/forums/category.jspa?categoryID=193

  • Visual Studio 2013 Pro - Winforms toolbox icons beside items are missing for some 3rd party vendors controls

    I noticed last weekend after installing VS 2013.4 update that the Winforms toolbox, while showing all items, did not display the icons beside the items for any custom/third party Winform controls. The only icon
    showing in the toolboxes are the Pointer icon. I can select and drop any control onto a project, and as soon as I move mouse into the design surface the icon shows. Neither the
    builtin Winforms controls nor the WPF toolbox exhibit the same symptom. It is specific to Winforms third party controls (ActiPro and DevExpress). At first I thought it was due to the update, then I found that my laptop was
    already exhibiting this symptom, running 2013.3 (I had not dropped any controls from the toolbox in the past few weeks so I did not notice).
    The two machines (laptop and workstation) are running Windows 7 64-bit Professional and Ultimate, respectively. These machines are dedicated to development, and are secured, also running Norton Antivirus.
    I also have VS 2010 and VS 2012 which don't exhibit the symptom, though I finally removed 2012 last night during my adventures. I had all three VS side by side, running well for months (I added VS 2013 in June). VS
    2013 had been functioning well on a daily basis for the dozen or so Winforms projects and the odd WPF or MVC project.
    I use DevExpress v2014 and ActiPro controls; I have been using them for years now.
    I've spent 2 days trying remedies that include:
    Resetting Toolbox
    Removal of *.spd files in %APPDATA%, restarting VS
    Uninstall Visual Studio, remove and delete of any Visual Studio remnant in the registry, Program Files(x86), %APPDATA% and %PROGRAMDATA%, reinstall.
    Repeat step 3 with VS 2013.1 and .3
    Downgraded .NET to 4.5.1 to match my third, correctly functioning computer (also running Windows 7 x64 Ultimate).
    DevExpress has told me this isn't a problem they have seen. At first I agreed, since my ActiPro controls also are missing their icons, but then I noted that other vendor controls display fine. Not sure what else to do but to nuke the workstation and install
    from OS up.

    DevExpress is discussing this issue in the thread here : https://www.devexpress.com/support/center/Question/Details/T174133#comment-a98eedf1-ca54-4920-a2d6-49506ddae5b5
    The small sample they provided in the thread actually reproduces the bug in my environment.
    Since I cannot post screenshots here on MSDN forum (I explained above, when I try to attach pictures I
    receive an error that my account is not verified). There is nothing more I can do.
    This appears to be a bug in Visual Studio 2013. VS 2010 and 2012 are on the same machine and do not exhibit
    the problem. It is frustrating how unresponsive Microsoft is to my issue. I am a long-time MSDN subscriber, as well as customer of multiple seats of the retail copies of Visual Studio. It looks like the only way to get attention is to pay for a incident. If
    Microsoft is interested in actually seeing this bug in action, I have 2 machines that are preserved. I have installed a fresh environment on my backup PC.

  • How to integrate single sign on with third party system

    we are in the process of implementing istore application. we already have home grown isupport application to contact support personnal for any issues. Now we are wondering how do we integrate oracle applications single sign on with our third pary system. Is there any recommendation provided by oracle to achieve the same.

    We too are in the process of implementing iStore with SSO features.
    And if you believe me it seems to me as nightmare.
    In our scenerio we are intgrating this SSO with Third party access control too (AD and Siteminder). I would request you to please respond me on the following mail id , so we can share our experince which will help us in our implementation
    [email protected]
    regards and thanks in advance
    Vikas Deep

Maybe you are looking for

  • Hiding a program with no dock icon

    I am looking for a way to hide an application which is running without a dock icon. I have tried using spirited away but as soon as I hide the dock icon(space suit is the app in question)spirited away can no longer find the application. The reason fo

  • Error while creating document in cv01n

    In cv01n while attaching excel,word etc.file,at the time of saving error massege given is document can not change.Please provide me solution

  • Error while updating the Assignment details using 'hr_assignment_api'

    An exception message is thrown while updating the assignment details through 'hr_assignment_api.update_emp_asg'. The message is 'ORA-20001: HR_FLEX_VALUE_MISSING: N, COLUMN, ASS_ATTRIBUTE6, N, PROMPT'. Even though a valid value is being passed to the

  • Error trying to drag/drop import .mov FCP movie to DVD Studio Pro...?

    I exported a video from FCP 7 as a .mov with chapter markers to use in DVD studio pro and it gives me this error: Help =[ Process:     DVD Studio Pro [1263] Path:        /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro Identifier:  com.

  • Using SSI in Dreamweaver

    Hi I became webmaster for a site and received files created in Front Page. Many of the links are set up as 'includes.' As I try to view the FP 'includes', they don't open for editing. I'm thinking I might have to recreate all the FP pages as Dreamwea