Posts by Dark Ducke • 75 points
13 posts
-
1
votes2
answers380
viewsQ: Asp.net core 2.0 authentication with cookies
I am making an authentication using cookies following the examples Custom Authentication in ASP.Net-Core Creating a simple login in ASP.NET Core 2 using Authentication and Authorization (NOT…
-
3
votes0
answers40
viewsQ: Facebook API - List of products for sale in a group
I searched the documentation and I couldn’t find it, so how do I get the list of products for sale from a Facebook group, those products that are posted on the "Sell an item"? I saw these two links,…
-
0
votes1
answer144
viewsA: Ajax function for MVC controller
Friend, change the GET method to POST, declare your Controller with [Httppost] and try it the following way.. var varArray = new Array(); //CRIE SEU ARRAY AQUI na varArray... $scope.gravaItem =…
-
1
votes3
answers1222
viewsA: Open Form2 side by side with Form1 simultaneously and close or minimize both simultaneously
Friend, use the component Jvformmagnet he does this job, for you, basically you put one in each form, arrow the property "Formmagnet" to true, and in the second form you arrow "Mainformmagnet" to…
delphianswered Dark Ducke 75 -
0
votes1
answer343
viewsA: Delphi JSON Encode with Tsslhttpcli (Overbyte ICS)
not configuration and component properties, just change xHtmlTemp := String(Data); for xHtmlTemp := UTF8Decode(Data); I wondered why in the other component I used I didn’t need this conversion.…
-
0
votes1
answer343
viewsQ: Delphi JSON Encode with Tsslhttpcli (Overbyte ICS)
I am using the Tsslhttpcli component of Overbyte www.overbyte.I and I’m having problems with formatting my return json, with special characters, I’m consuming the google’s Geolocation api, see…
-
0
votes2
answers910
viewsQ: Call a method every time a Controller is triggered Asp.net mvc
In my project I have a method that creates a menu on the layout page "_Layout.cshtml", for example, in my control HomeController.cs this method remains, and in ActionResult Index() I call this…
-
1
votes1
answer171
viewsQ: Adjust Constraintlayout
I’m trying to adjust a layout using the new ConstraintLayout, but I’m not getting it, could you give me a help? follows below my layout: <android.support.constraint.ConstraintLayout…
-
0
votes1
answer144
viewsQ: Unix Time for Tdatetime
I need to convert a received time into a json in the format 750382 for 00:12:41 in Delphi has the function Unixtodatetime() but it only works if I receive the full date and time, but in this case I…
-
0
votes1
answer164
viewsA: Twebbrowser and Httponly cookie
After a lot of searching I found the solution, go to whoever needs it: const INTERNET_COOKIE_HTTPONLY = 8192; var hModule: THandle; lp: Pointer; InternetGetCookieEx: function(lpszUrl,…
-
0
votes1
answer164
viewsQ: Twebbrowser and Httponly cookie
How to get the Httponly cookie from Twebbrowser? when logging into a page by IE, Firefox, or Chrome I see the following cookie: Cookie:_ga=GA1.3.2133370562.1518083464;…
-
1
votes0
answers59
viewsQ: Ihtmldocument2 and Windows and IE versions
Could someone give me a light of what the incompatibility of some versions of the Windows + IE with the use of IHTMLDocument2? Example: IDoc := CreateComObject(Class_HTMLDOcument) as IHTMLDocument2;…
-
0
votes0
answers31
viewsQ: Working with the result of a $post with jQuery
making a $post and getting the result json, until then everything ok, but I need to work this result outside the scope of $post(); only that the variable after the post, is empty... see the example:…