Posts by Shari Sharu • 19 points
6 posts
-
0
votes1
answer27
viewsA: problem while removing tab from a tabcontrol c#
I resolved so if (tabControl1.InvokeRequired) tabControl1.BeginInvoke((MethodInvoker)delegate { tabControl1.Controls.Remove(_instanceTabPage); });…
-
0
votes1
answer27
viewsQ: problem while removing tab from a tabcontrol c#
I’m trying to remove a tabcontrol, this tabcontrol is with the cef open (browser with google Chrome engine) in it I have a button called exit. He’s raised that way: TabPage nova = new TabPage();…
-
-2
votes2
answers668
viewsQ: I can’t parse json with brackets in c#
I am using the Newtonsoft.Json.Linq library to parse json in c#. Until now it worked beauty, when I have a string json like this: { 'chave':'valor' } But when I have a json like this: [ {…
-
0
votes1
answer92
viewsQ: Decode javascript-encoded string in c#
Hey, here’s the deal. On the site that I’m building, I write information in the database, this information is a json, to be able to send this data to the database, I code it by javascript like this:…
-
0
votes2
answers131
viewsQ: Which component can I use as a table in c#?
[SOLVED] I got two information in the database, table products: ID and name. I need to show the user the ID and the name of all registered products.. The problem is that the listbox is just a list,…
-
2
votes1
answer239
viewsQ: How to get the origin of a form in cgi python?
Hello, I’m using python with cgi, for my forms. I need to get origin to make sure my website is safe, but I couldn’t find any information on it. The only thing I am doing for now is to recover the…