How do I align my images and my text? XAML – Photoshop
So I have a few buttons on my project and I would like to align the images and the text so that it looks something like this. (Made in Photoshop) And this is what mine looks like What would be…
So I have a few buttons on my project and I would like to align the images and the text so that it looks something like this. (Made in Photoshop) And this is what mine looks like What would be…
I am using the eBay Trading API with C# .NET SDK I created a ReturnPolicyType ReturnPolicyType policy=new ReturnPolicyType(); I set the policy properties and everything seems to work except the restocking fee policy.RestockingFeeValue = "Percent_15"; And: policy.RestockingFeeValueOption = "Percent_15"; I've…
I created a mobile app with Cordova, with 2 Login methods Facebook and Google. I after I authenticate the token (FB or Google) I want to use one of them to secure my Web API 2 and communicate with my…
I'm playing around with the sandbox api for ebay, but I keep running into errors. So you can use the API test tool here. Now I have products which are on the sand box my ebay active listings page. But…
I created new ASP.Net core project with WebAPI. Using the below link. jwt-authentication-with-aspnet-core-2-web-api-angular-5-net-core-identity-and-facebook-login I have to use add-migration update-database manually. Here I add one thing more that I don't know how to debug app in VS Code. After created my…
I'm trying to figure out a way to parse JSON error messages in C#. I can receive a response that looks like this: { "errors": { "title": ["can't be blank"] } } or { "errors": { "inventory_policy": ["is not included…
I have some data from Facebook API and I need to store them on Azure SQL Db. I created the models and I'm trying to set Foreign Keys to link the tables but I always have some errors. My models:…
Trying to make out this call https://www.zoho.com/creator/help/api/rest-api/rest-api-edit-records.html I did tried everything but seems i need basic knowledge. Can anyone give me directions what is wrong with my code Public Sub updateRecord(ByVal ht As Hashtable, ByVal criteriaField As String) Dim apiUrl…
I'm trying to return objects based on query strings. For example, I would like api/users/{id}?fields=username,email,reputation to return an object of type User that contains only the three included properties (username, email, reputation). On a side note, comma separated query strings…
I am writing an application that generates a huge amount of images. Each frame is 1280x800 pixels large and has 1 byte per pixel for color information (greyscale). Each of the frames must be written to disk. Currently I simply…