Posts by Ivo Queiroz • 83 points
4 posts
-
0
votes2
answers1431
viewsA: Remove duplicate Mongodb records
I recommend you use the Upsert function when entering the data. It will search in mongodb if the chosen data already exists, if yes, the existing object will be deleted and a new one will be…
mongodbanswered Ivo Queiroz 83 -
2
votes1
answer147
viewsA: How to change the position of the bitmap button?
I added the pos=(300.0) attribute and it worked. button = wx.Bitmapbutton(panel,id=wx.ID_ANY, pos=(300,0), bitmap=bmp, size=(bmp.Getwidth()+10, bmp.Getheight()+10))
-
3
votes1
answer147
viewsQ: How to change the position of the bitmap button?
I inserted a button with an image in my menu. But I can’t change its position. How do I change its position? because I need to insert 2 more buttons and organize them.I’m using the python wx…
-
3
votes1
answer170
viewsQ: How to add an image in the menu?
I need to add an image to the menu of my program in Python. I am using the wxpython library. The menu is like this: The code: #!/usr/bin/env python # -*- coding: utf-8 -*- import wx class…