User control used in user control - controls

I made user control(example - User control 1) in my project and successfully added to my toolbox.
After that I use same user control (which I already added to my toolbox - User control 1) for another new user control (User control 2).
I follow same procedure for adding User control 2 in my toolbox but the User control 2 do not shows at my toolbox. I do not receive any errors. Using 2008 version.
Pls. help.

Related

Issue commiting to Genexus Server

I'm following this tutorial: https://training-legacy.genexus.com/en/training/global/courses/smart-devices-en/introduction-to-genexus-16
and i have the Genexus 16-trial version.
In the end of the "First Transaction design" lesson, you have to send the changes to Genexus server,
but this is what happens when i open the "Team Development" page
If i enter the link in the message, from my browser https://sandbox.genexusserver.com/v16/ i can login normally, authenticating with Genexus Account and i can see my knowledge base in there.
I have pending commits, following the steps of the tutorial but i can't commit them. I wrote a commit message and pressed commit at the right bottom corner of the window and it rerturns a similar message:
error: GAM11: The user or password is incorrect.
Failed: Commit
The only 3 user and password i found were:
When creating the KB (if you disable Windows NT integrated security) but i couldn't find a valid user id and password for that, also the tutorial doesn't do this so i doubt this is it.
At tools -> Genexus Account, i can enter my email and password, and i think the IDE asks you to do this when sending the KB to the Server the first time, but when i fill it with the same credentials i use to login in to the website and press "sign in" now, it doesn't give any response.
Lastly There's the Windows Generic credential that is created but i don't even know how, just found it browsing at the genexus wiki and i have no idea what interaction it has with all this (if it does).
it is below preferences. If you do not have the view near KB explorer then you should go to the menu toolbar —> View —> Other tool windows --> preferences in order to activate it.
Team Development properties in Full Version
Note: Trial has no properties available below TeamDevelopment Tab
Team Development properties in Trial Version
Could you double check if you have the correct credentials below TeamDevelopment node?
Team Development

How do I change what a registry does in Windows (10)?

I have been trying to take a new tab in edge open right to google. I have tried adding a string value called NewTabPageURL and setting the value to www.google.com in numerous locations, but this hasn't worked. In MicrosoftEdge\ServiceUI, I can see the registry that controls what a new tab will be (their 3 options, blank page, feed, feed and your top websites it is called NewTabPageDisplayOption). I have the value set to 1 which will open a new page with top websites. Can I change what the value 1 does to open to google, or add a new value after 2 that can do this?
I suggest you to do not modify the registry settings. If you modify the registry settings incorrectly than it can lead MS Edge to get crashed or not work properly.
It is best practice to apply the settings via group policy. group policy will create/ modify registry keys properly.
If we talk about your requirement than it looks like you want to open Google.com in new tab.
You can refer steps below to achieve your requirement via group policy.
(1) Open Run Window in your Win 10 OS.
(2) Type GPEDIT.MSE in it and press Enter key.
(3) Navigate to location below.
Computer Configuration > Administrative Templates > Windows Components > Microsoft Edge
(4) Find a policy setting called Set New Tab Page URL and double click on it.
(5) Click on Enabled radio button.
(6) Set a new URL for New Tab page like below.
(7) Click on Apply button and close the Window.
Note that this policy is depended upon other policy called Allow Web Content on New Page.
So you also need to find this policy from the similar location and Enabled it. Otherwise your above policy setting will get ignored.
For more information, You can refer the link below.
New Tab page
You also need to check that above settings are not controlled by your administrator/ organization. Due to that reason, This policy settings also get ignored.

Display informational message to user when installation finished for install Shield Suite project

I have created setup.exe using install Shield Suite project. I want to display informational message to user when installation finished i.e when user clicks on finish. How to achieve this?
There are few way to achieve this. For Basic MSI project, probably the simplest way is to add Custom Action (CA) which will display the dialog with information you want to show. This CA may also launch for example "Notepad" to display text or some other application. After call this CA on click of the "Finish" button. To attach your CA to this event use IDE to go to the following path ...
User Interface "Dialogs" -> SetupCompleteSuccess "Behavior" -> OK Push Button "DoAction"
Inside DoAction pick the CA you've created, add conditions if needed. Other than DoAction you may also choose to SpawnDialog which will gives you new modal dialog (Displaying Dialogs During Basic MSI Installations).
The note from myself: I don't believe this is all good idea. As the user I would expect the setup wizard to quit when I press "Finish" button. Users (including myself) don't like any popups or even worth, additional dialogs after finishing installation. On other hand, probably this is your requirements and this is what you want to do.

In VS2015 how & where do I configure the account that accesses the SharePoint Site/agile team functions?

Locally installed TFS2013, VS2015 and VS2013 using SharePoint services.
So far the development system is kind of OK, meaning I can create a collection, create a team project within a collection, add a new solution to that, run it, do a Check In and the SharePoint site shows the project code, etc. I can also create work items at the SharePoint site and from within Visual Studio.
But I'm having difficulty understanding how the user accounts are interacting. On my development workstation I logged in with a normal domain account. But I do not see work items assigned to that user name. I only see work items if they are assigned to the system Admin account.
I would have expected VS would be operating under the user account that I logged into Win10 with, but it seems to be operating as though VS is logged in as the system Admin.
Why is that? Is there a place where VS sets data that tells TFS what user name it is operating under? And, of course, I may be asking the wrong question because I don't understand the problem, but this is how it appears.
Added after initial post for clarity
This panel shot shows where the Work Items were not showing up for the user under Available Work Items. Because of the issue identified in the answer below, only work items assigned to Admin were present. But after clearing the cached credentials the work items displayed correctly according to the proper account, no longer acting as Admin.
This may due to the VS had cached your system Admin account.
The simplest way is to delete the related credentials which stored in control panel > Credential Manager> Windows Credentials
Then reopen the VS and try to connect to TFS server. It will pops up a credential window, just type your login domain account.

Installer project with 2 primary output files

I created a multi tiered .net application which includes the Client and the Server projects. I want to create setup for it so that during installation, the user may choose to install the Server or the Client (by selecting appropriate radio button). I created an interface for the selection but it always installs both the Server and the Client no matter which option I select. How can I choose to install only Server or Client based on the selection?? Thanks.
You need to set the Condition property on the appropriate output files based on the radio button selections. Here is an article that shows step-by-step instructions:
http://msdn.microsoft.com/en-us/library/9x23561f(VS.80).aspx
It's quite simple. Assume that you have 'ServerInstall' and 'ClientInstall' (let those be simplified terms for file systems etc. corresponding to each version you want to install). Now, having a RadioButton(2) dialog box in your installation, you gain access to a condition (in the example - BUTTON2), which has to be set in each file to value 1 or 2 depending whether the file is specific for client or server.

Resources