Jump to content
UBot Underground

HelloInsomnia

Moderators
  • Content Count

    3168
  • Joined

  • Last visited

  • Days Won

    309

HelloInsomnia last won the day on February 5 2021

HelloInsomnia had the most liked content!

Community Reputation

1103 Excellent

2 Followers

About HelloInsomnia

  • Rank
    Advanced Member

Contact Methods

  • Website URL
    https://elitebotters.com/

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 10
  • Total Memory
    More Than 9Gb
  • Framework
    unsure
  • License
    Developer Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Convert to md5 hash and compare that. Probably, you could lookup some javascript or python function that does it if you can't find a plugin. Here is an example using MD5 Encryption plugin from UbotDev: set(#img,$plugin function("MD5.dll", "$MD5 from file", "{$special folder("Desktop")}\\cookies.jpg"),"Global")
  2. Set this header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Upgrade-Insecure-Requests plugin command("HTTP post.dll", "http set headers", "Upgrade-Insecure-Requests", 1) Can see how it affects it by sending a get to this page: https://www.howsmyssl.com/
  3. The new version looks like that but updating would break things for everyone so I'll have to see if there is another way.
  4. Update v 1.15 - over 7,000+ icons added Added Material IconsFontAwesome IconsModern IconsMetro Demo With Icons demo projectFixedMetro Demo Project change static resources to dynamicMetro Demo Project fix issue with load xaml How To Use Icons In your VS project add these packages: https://www.nuget.org/packages/MahApps.Metro.IconPacks.FontAwesome/ https://www.nuget.org/packages/MahApps.Metro.IconPacks.Material/ https://www.nuget.org/packages/MahApps.Metro.IconPacks.Modern/ Then add the following namespaces: xmlns:Material="clr-namespace:MahApps.Metro.IconPacks;assembly=MahApps.Metro.I
  5. It just runs the first tab code, so if you have defined some code in another tab then you would call that from the first tab by going to custom commands and dragging the node out. When it runs incognito its as if the user opened it into the first tab and pressed the Run button.
  6. Put the code to run into a define: http://wiki.ubotstudio.com/wiki/Define
  7. Can you post some code that is always helpful to replicate an issue.
  8. I think this is what you mean: plugin command("UltimateUI.dll", "UI Load XAML", "<DataGrid x:Name=\"dg\"/>", "False", "False", "False", "BaseLight", "Blue") plugin command("UltimateUI.dll", "UI Initialize DataGrid", "dg", "{$plugin function("UltimateUI.dll", "$UI Add DataGrid Text Column", "Name")}{$plugin function("UltimateUI.dll", "$UI Add DataGrid Text Column", "Age")}", 16, "Arial", "", "") plugin command("UltimateUI.dll", "UI Add DataGrid Row", "dg", "{$plugin function("UltimateUI.dll", "$UI DataGrid Text Cell", "Bob", "", "Arial", 12, "", "", "Center", "Center")}{$plugin functio
  9. The datagrid can use images yes. Table to datagrid cannot though right now.
  10. Update V 1.14 Added Padding, Font Family, Font Size, Foreground, Background, Horizontal Alignment, Vertical Alignment parameters to Table To DataGridFixedBug where Change DataGrid Text Cell would throw an error when using Table To DataGridRemoved extra space at bottom of DataGridBreaking ChangesTable To DataGrid has added properties which will break that command so you will need to update it
  11. Update V 1.13 AddedPadding, Font Family, Font Size, Foreground, Background, Horizontal Alignment, Vertical Alignment parameters to Change DataGrid Text CellMax Width, Max Height, Horizontal Alignment, Vertical Alignment parameters to Change DataGrid Image CellPadding, Font Family, Font Size, Foreground, Background, Horizontal Alignment, Vertical Alignment parameters to Change DataGrid Button CellBreaking ChangesRename: Change DataGrid Button Cell Value -> Change DataGrid Button CellRename: Change DataGrid CheckBox Cell Value -> Change DataGrid CheckBox CellRename: Change DataGrid Image
  12. Somebody was asking about the TreeView commands, they work the same as most of the others but here is a brief example of some of them: plugin command("UltimateUI.dll", "UI Load XAML", "<TreeView Name=\"myTreeViewEvent\"> <TreeViewItem Header=\"Employee1\" x:Name=\"emp1\"> <TreeViewItem Header=\"Jesper Aaberg\" x:Name=\"jesper\" /> <TreeViewItem Header=\"Employee Number\"> <TreeViewItem Header=\"12345\" /> </TreeViewItem> <TreeViewItem Header=\"Work Days\">
  13. Update V 1.12 AddedChange DataGrid CheckBox Cell ValueSet TreeViewItem PropertyGet TreeViewItem PropertyAdd TreeViewItem Event
  14. I can possibly see an image that isn't clickable but how would the button work?
  15. Update V 1.11 AddedChange DataGrid Text Cell ValueChange DataGrid Image Cell ValueChange DataGrid Button Cell ValueAdd DataGrid Header Click EventThe ability to run a command when the datagrid header is clicked means that you can implement a sorting algorithm for the datagrid. In the UltimateUI Demo folder that comes with the plugin you will see DataGrid With Sort Example to see a basic example of how to use Add DataGrid Header Click Event and sort a table.
×
×
  • Create New...