I was working on a small assignment on access and trying to export an Access report to Excel. Everything worked when until i opened the exported Excel, to my surprise font colour of all the lines in the excel was very light. I tried to change the field color, font weight and all possible properties, nothing seems to be working. But finally i got the solution. The trick was 1. Make the back style of the the fields to "Transparent" which was default "Normal" 2. Make the Fore Color as Automatic black from the eclipse next to the property. Spent few hours trying to make things work so sharing it for the people. Happy Coding, Parshuram
Lets build a simple conversation bot who will decode our emotions & will try to cheer us. Basic Idea is to get, how the user is feeling now, then pass the feelings to Cognitive services & get the sentiment score. If the sentiment score is high or neutral then pop a joke to the user. If the sentiment score is low, try to show a motivational message. Hope everyone has the environment setup for the bot app, else just check my earlier blog post First we need to create a new bot project. Choose Bot Application Give it a name & lets start exploring. The project will create a controller - MessagesController.cs which is the starting point for our bot. Controller consists of a task Post which handles the messages received by the bot. It should look like below. I am just trying to pass the flow to a RootDialog which is bot framework dialog. The RootDialog looks like this RootDialog welcomes the user & asks about how he/she is feeling now. Those fee...
Comments