Posts by Eduardo de Santana • 217 points
12 posts
-
0
votes1
answer88
viewsA: Datetimepicker considering day as month
Try using the following format: 'dd/MM/yyyy' in your javascript.
-
0
votes0
answers165
viewsQ: Magento API V2 SOAP - Get only sold products
Is there any API method that returns me only the products that were sold, or had changes in the price/stock attribute?
magentoasked Eduardo de Santana 217 -
1
votes0
answers188
viewsQ: error obtaining Printer information VB6
When I will perform a print through a Data Report when opening the windows printer screen the following error occurs: error obtaining Printer information. Any suggestions?
-
0
votes3
answers226
viewsA: How to use Getsetting/Savesetting in Windows Services
I solved my problem using a file XML to store the data I will use later. Certainly not the best way, but as mine serviço is as LocalSystem and has Service User permissions so I can’t have access to…
-
2
votes3
answers226
viewsQ: How to use Getsetting/Savesetting in Windows Services
I created a service and configured it as Localsystem. In the implementation I try to search for a record saved on REGEDIT by another programme. The method GetSetting always returns me empty. Is…
-
4
votes2
answers10087
viewsQ: Change an Edittext mask at runtime
I have a EditText which is used for CPF and CNPJ. I need to use it time as CNPJ and time as CPF. I need to change the mask at runtime according to the selected type (CNPJ/CPF), but in doing so, a…
-
0
votes1
answer151
viewsQ: Enable click on Listview
When I insert a ImageButton in the layout of my ListView, it is no longer possible to click on ListView, ie, the click is disabled. Is there any way to enable the click ListView when you have a…
-
0
votes1
answer726
viewsQ: Popular Spinner
In my application I have a method returns a list of customers. How do I popular a Spinner only with the names of customers contained in the List?
-
0
votes1
answer767
viewsQ: Grab image from gallery and save to a certain folder
How do I take an image from the gallery (using Imageview) and save it in a folder I created in me Sdcard?
-
0
votes2
answers502
viewsA: How to make a Textbox field only receive integer values on VB6?
At the event KeyPress of your Textbox add the following check: Private Sub TextBox1_KeyPress(KeyAscii As Integer) if not IsNumeric(Chr$(KeyAscii)) then KeyAscii= 0 exit sub end if End Sub…
visual-basic-6answered Eduardo de Santana 217 -
0
votes1
answer2177
viewsQ: Refresh Listview
When I click on my Listview, I open a dialog with 3 buttons (Edit, Delete and Return). By clicking delete, I would like to have Listview updated. At what point I must do this? public class…
-
2
votes2
answers2690
viewsQ: incompatible types when assigning to type 'int *[]' from type 'int'
I created a size vector defined by a constant, and when calling a function that returns me an integer vector, this error is generated: incompatible types when assigning to type 'int *[]' from type…