Jump to content
UBot Underground

cob007

Members
  • Content Count

    352
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by cob007

  1. Hi Nick, 

    What command to save from datagrid to table? list or variable?

    i need saving datagrid to file

     

    thank you

    loop through the datagrid and get data from each row, thats what i did

     

    loop($plugin function("UltimateUI.dll", "$UI Get DataGrid Row Count", "dataGrid2")) {

        set table cell(&saveSearchResults,#track_TableRowForSaveVideoResults,0,$plugin function("HeopasCustom.dll", "$Heopas Xpath Parser", $plugin function("UltimateUI.dll", "$UI Get DataGrid Row", "dataGrid2", $subtract(#track_TableRowForSaveResults,1)), "//textcolumnmodel/text", "InnerText", 0))

        set table cell(&saveSearchVideosResults,#track_TableRowForSaveVideoResults,1,$plugin function("HeopasCustom.dll", "$Heopas Xpath Parser", $plugin function("UltimateUI.dll", "$UI Get DataGrid Row", "dataGrid2", $subtract(#track_TableRowForSaveResults,1)), "//textcolumnmodel/text", "InnerText", 1))

      

  2. nick is awesome human being and not just a programmer, the way he values his own time and that of his customers, probably no one does, ive been buying all his stuff since 2014 without fail and he over delivers his customer support as well. i don't think anyone can know html, JavaScript, regex, api, xaml and what not, he knows all this at the back of his hand.so i would say buy his stuff and if you don't have time go through it later, even after few years when you go back to it, you will realize that time maybe you did not understand it immediately after  purchase of course. that's what has happened to me  because nick is always quite ahead of his time.

    • Like 1
  3. thanks, also im not sure if this is possible but i thought i will ask.

    Let us say someone purchases 3 day trial, and now they get rebilled and there were lot of features restricted in 3 day trial, so now they we have compiled the full version of software, on the automatic rebill, that full version needs to get emailed with a new license key is that possible

    because otherwise we have to send it manually a new version

  4. these were some features requested in past on meters original thread, see if any of these make sense to implement or already implemented

     

    1.  Ability to offer 2 licenses - one with lifetime updates and one that runs by subscription. Option to turn off updates for specific usuers. I can turn off all updates for that user. This way they can still use the software they just don’t get the updates.

     

    2. Create projects where updates for a license gets disabled automatically when a subscription expires. The license is automatically revoked when the subscription is renewed.

     

    3. If someone’s subscription runs out when they launch the bot it tells them,”license disabled please renew subscription” bonus if we can add a link to subscribe as well.

    4. If someone signs up to my software membership site and I want him to download and run all the bots with one account license, so I or the system won’t have to create different licenses( one for each bot) for the same A/C holder ( single person). ---- i know your bundles feature does this but it does it offer same license for all but i dont think this is mandttory but im just posting for previously asked queries

     

    5. Allows for  2 checkout IPN

     

    6. On the dialog that comes up there’s a new version, it would be cool if there was a way to have a third button that was something like “update notes” and if they click on it ,it will leave the current dialog open but pop open another window that is a simple text dialog to show notes that could be included as a file with the update.zip file that way, the user can see the things that have been done on the update.

  5. Hi nick,

     

    is there anyway we can change individual cell value of datagrid after a row has been added, this can be useful, say we want to update only a single cell value  and not the other cells , because this way , let us say we have a button called analyze and user clicks the analyze button, then a single cell will update of that row of that datagrid showing a new value rather than updating the entire row of datagrid and this also means we don't need a fresh datagrid just to show updated values

    • Like 1
  6.  

    I made this from your sample code and it worked correctly for me here:

    plugin command("UltimateUI.dll", "UI Load XAML", "<Grid>
            <ListView x:Name=\"myList\" HorizontalAlignment=\"Left\" Height=\"185\" Margin=\"70,49,0,0\" VerticalAlignment=\"Top\" Width=\"256\">           
                <ListView.View>
                
            <GridView>
                        <GridViewColumn/>
                    </GridView>
                </ListView.View>
    
                <ListViewItem Content=\"Coffie\"></ListViewItem>
                <ListViewItem Content=\"Tea\"></ListViewItem>
                <ListViewItem Content=\"Orange Juice\"></ListViewItem>
                <ListViewItem Content=\"Milk\"></ListViewItem>
                <ListViewItem Content=\"Iced Tea\"></ListViewItem>
                <ListViewItem Content=\"Mango Shake\"></ListViewItem>
                
            </ListView>
    
        </Grid>", "False", "False", "False", "BaseLight", "Blue")
    plugin command("UltimateUI.dll", "UI Add ListView Event", "SelectionChanged", "myList", "listTest")
    define listTest {
        alert($plugin function("UltimateUI.dll", "$UI Get ListView Property", "SelectedIndex", "myList"))
    }

    thanks will check again

  7. This is great information. The reason I got this program was to help with automating my twitter post and to look for people to help with my business. From the looks of it, what I'm needing is not too advanced. I actually found a guy on YouTube who uses Ubot Studio the same way im planned on using it. His video was a recent one to, like this month. Since technology is changing so fast, it was great to see this product was still relevant today! There is still hope for me :D :D :D :D !

    maybe u already read this one but this is great post by nick, how to get better

     

    https://elitebotters.com/how-to-get-better-at-ubot/

  8. Hi

     

    I bought ubot in 2014 after waiting for a year and till that time i had joined is forum and reading all posts and i got straightaway dev edition because their presales support was awesome, having absolute zero programming language i had no clue what was going on, till today i regret not joining early like 2010. There is a wealth of information already in the forums, if you keep looking at old posts, u can see how much of activity was already there

    Yes people may have moved to new things as everything evolves but there is no other software like ubot and i can tell you you have made a great decision and for me my turning point was buying nick(hellinsominia) stuff, i have learnt a lot from him and if you look at his consistency  how many posts he has made since 2012 or so, how many free tutorials he has made,you can feel inspired and grateful and digging through all that info and implementing in your own bots itself will take you a lot of time.

    even yesterday i was reading one of the old posts shared in forums which ive not seen before and that helped me where i was stuck

    yes even there are other people like dan, tj, buddy. dan has done awesome job with exbrowser and you are not going to get all this in any other software like zenooposter or anything else.

    The hard part is things change very fast in the web marketing world and thats where u may feel a bit overwhelmed in the beginning because some will say use regex, some posts will say use xpath, some will say use http post  and over time im sure if u are already a expert in programming then u can easily understand all this and u will figure out where to use what

    • Like 1
  9. i have created listview like this but if i use get listview property selected index it returns 2 instead of the value which is at selected index

     

     

    plugin command("UltimateUI.dll", "UI Load XAML", "    <ListView Margin=\"10,10,0,13\" Name=\"ListView1\" HorizontalAlignment=\"Left\" VerticalAlignment=\"Top\" Width=\"194\" Height=\"200\">  
            <ListViewItem Content=\"Coffie\"></ListViewItem>  
            <ListViewItem Content=\"Tea\"></ListViewItem>  
            <ListViewItem Content=\"Orange Juice\"></ListViewItem>  
            <ListViewItem Content=\"Milk\"></ListViewItem>  
            <ListViewItem Content=\"Iced Tea\"></ListViewItem>  
            <ListViewItem Content=\"Mango Shake\"></ListViewItem>  
        </ListView>  ", "False", "False", "False", "BaseLight", "Blue")

     

  10. A few days ago upgraded Ubot to Dev just to be able to use Nick's plugin (picked this up too).

    Haven't got my hand in it yet except watching all 3 vids. I'm sure that this plugin never let me down as Nick created and supports it.

     

    Great job Nick and thanks for finding us a way to finally theme our bots in the best way (IMO) plus tons of features.  :)

    Yes it is one of the best plugins and many things must be hard to do because we are using ubot and not c language and nick has done a great job as usual like all his other products. Here are some small feature requests that are mostly related to datagrid if possible

     

    1. Be able to bold text of cells, currently we can do a few things like add colour, font family etc but there is no bold

    2. Stylize the column header w so that we can add a image instead of just text

    3. able to update the individual datagrid cell text even after we add a row(this can be useful in say we have to update a task inside of a cell say while submitting a job and neeed to update status inside of datagrid cell

    4. Able to stylize the buttons within the cells via xaml styling option and not just the options provided while adding a button now

    5. Be able to uncheck or check the checkbox column because as of now we cannot check or uncheck it once we set it to true or false

  11. i have these  list items and i want all of them to combine into one list item but there should be a space between them like as below , so how to do that

     

    Instant Loss: Eat Real, Lose Weight: How I Lost 125 Pounds—Includes 100+ Recipes
    Lose Weight Without Dieting
    Happy Gut: The Cleansing Program to Help You Lose Weight

     

    Just like below they should be, yes thats easy but then it always wont be 3 say it is 100 list items to ber merged in one single line and all next to each other with a space

     

     

     

    Instant Loss: Eat Real, Lose Weight: How I Lost 125 Pounds—Includes 100+ Recipes Lose Weight Without Dieting Happy Gut: The Cleansing Program to Help

×
×
  • Create New...