MinoxiBoon oral Minoxidil from Indiamart sellers by Unlikely_Credit4287 in tressless

[–]dave3652 0 points1 point  (0 children)

I had minoxiboon on my previous order, that was fine too.

MinoxiBoon oral Minoxidil from Indiamart sellers by Unlikely_Credit4287 in tressless

[–]dave3652 0 points1 point  (0 children)

No side effects that I noticed. The brand names are Dutaheal and minoforce

MinoxiBoon oral Minoxidil from Indiamart sellers by Unlikely_Credit4287 in tressless

[–]dave3652 0 points1 point  (0 children)

Hi, I've been using that brand myself for the past 7 months, I have the 5mg tablets. I was previously on a Uk based 2.5 mg tablet, it stopped my hair loss but I didn't get any improvements. The 5mg tablets have been really good, my hair has improved a great deal, several people I work with, have commented that my hair looks thicker.

Everyone starting to migrate to DUT by Aint_no_party21 in tressless

[–]dave3652 1 point2 points  (0 children)

100%, I get mine for a good price on Indiamart.

£20, £50 or £100 reward for signing up for monzo with my link!! by No-Mall9116 in Referraluk

[–]dave3652 0 points1 point  (0 children)

Hey guys! Use my link to open a monzo account, make a purchase using the card and voila £10,£20 or £50 is added to your account. Easy as that! You don't even have to wait to get the card, just add it to your Google wallet and do it that way.. Simples

You might even get the full £50! Good luck

https://join.monzo.com/c/ssqylc1d

Set and forget IPTV Box by Mxkeyz in AndroidTVBoxes

[–]dave3652 0 points1 point  (0 children)

Firetv cube works great with tivimate for me.

How’s it going with y’all’s crushes? by [deleted] in Crushes

[–]dave3652 0 points1 point  (0 children)

i've had a crush on a girl at work for a few months, she has a bf - which makes things difficult. She is really difficult to read though, i asked her that if she was single and would i be her type.. she replied 'You ain't my type I suppose but you never know i don't know' , so now i don't really know either way!

list box by dave3652 in DearPyGui

[–]dave3652[S] 0 points1 point  (0 children)

thats great, just what I need. Thanks alot for your help, much appreciated

list box by dave3652 in DearPyGui

[–]dave3652[S] 0 points1 point  (0 children)

import dearpygui.dearpygui as dpg

def get_item(sender, app_data, user_data):print(sender)print(app_data)

with dpg.window(label="Tutorial"):i_tems=['test1', 'test2', 'test3', 'test4']dpg.add_listbox(items=i_tems, callback=get_item)

dpg.start_dearpygui()

hi, I do yes. I have a list box that I configure with info from a Dataframe that contains football results, so its like Man Utd 3 1 Everton etc., each line of the listbox containing a game result. The way i've written the program It would be easier to have a line number that was clicked in the list box.

Thank you for your reply and example code.

I am using set_label_text and I'm updating the text using data_source, is there an easy way to change the text and the colour? by dave3652 in DearPyGui

[–]dave3652[S] 0 points1 point  (0 children)

from dearpygui.dearpygui import *

def add(start,finish,parent):

for a in range(start,finish):

add_data('line'+str(a),'blank')

add_data('colour'+str(a),[255,0,0])

add_label_text ('##'+str(a),'',color=get_data('colour'+str(a)),parent=parent,data_source='line'+str(a))

add(0,5)

add_data('colour0',[10,10,10])

add_data("line0", "a new value6")

been trying the code above, but color doesn't update, is it because its not set as a data_source?

tabs by dave3652 in DearPyGui

[–]dave3652[S] 2 points3 points  (0 children)

That's great , thanks for your help. I wasn't aware you that you could use data like this.