Posts by carolzinha • 171 points
12 posts
-
0
votes1
answer70
viewsQ: Remove Background Checkbox Wpf Material Design
Folks I’m trying to leave the Checkbox only with the square mark and dash that says it’s marked. My code is this: <CheckBox Content="Teste"> <CheckBox.Resources> <SolidColorBrush…
-
0
votes1
answer95
viewsQ: How to add an icon inside a Textbox using Material Design?
I installed the Material Design Xaml package in my project, but I have a question of how to create an icon in Textbox. I have the following code: <StackPanel> <TextBox…
-
3
votes1
answer45
viewsQ: Enum class not accepting check
Well I’m having a doubt I’m starting now at C++ I’m using an Enum class: enum class TYPE_ENTER { ENTER_OK = 0x1, ENTER_WARNING = 0x2 }; but when I compile the function there is error C2678 in the…
-
1
votes1
answer200
viewsQ: How to hide folder in SFTP for a user
Well I create a new user on my host for access to devs, logging in through Putty with the account created only has access to their folder. but when entering SFTP the folders of the host user can be…
-
1
votes1
answer33
viewsQ: Change text when entering Amazon C2 host
I searched the site of Amazon and did not find how to change the text that shows when entering, is the one of the image below. Does anyone know the location that changes this text ?…
-
1
votes1
answer114
viewsQ: How to put score in a sql Row
Well I am looking for a way to put score on a score of Rows that is made from my mysql. If the returned value is above 1000 it insert scores, for example: 1000 = 1,000 1000000 = 1,000,000 The code…
-
3
votes1
answer111
viewsQ: Create reading of a bool function in lua
Well I’m learning moon and I’m having a doubt, I’m trying to create the reading of a bool function on moon. I have a function that disables or activates as I mark true or false. This function is…
-
1
votes2
answers93
viewsQ: Is it possible to change my server code without having to compile?
Well I was thinking of something, I have a program that is hosted on linux and through an executable, my clients have access, every modification I do in the server code I have to compile again to…
casked carolzinha 171 -
2
votes1
answer835
viewsQ: How to capture hardware id
I’m trying to find a way to capture the serial of the hard drive, CPU and motherboard, the CPU I found a mode that is using cpuid. h, now the motherboard and the hard drive I found no way to…
casked carolzinha 171 -
2
votes2
answers56
viewsQ: Linux using on Travis
So I’m wanting to add my project in Travis, I noticed that it makes use of Ubuntu, I wonder if there is any way to compile my project in Centos and Ubuntu using Travis ?
travis-ciasked carolzinha 171 -
1
votes1
answer237
viewsQ: Use string and integer in moon
Well I have a table as follows: { Number: 15007 Name: "Variance" Value: 35 } Before I used a txt format that was like this: 15007,Variance,35 The C-code looked something like this: void…
luaasked carolzinha 171 -
1
votes1
answer174
viewsQ: How to read a moon table in C as follows
Well I’m trying to create a moon reading that can read this table below, the table should only accept values and if add string, it warns the error location. Table = { 1000, 2000, 3000, 4000, 5000,…
luaasked carolzinha 171