Gui Posted December 6, 2009 Posted December 6, 2009 (edited) Aye guys, I have a basic script that gathers random words and phrases. It navigates to a site that generates em', and pulls the words and phrases off, then adds them to a listview. Some words and phrases are duplicates, so is there a way to remove the duplicates , so that there is basically only one of each? Thanks. GUI. Script to Help a little : Func start() While $running $ma = _INetGetSource('***The URL***') ; Don't worry why it's _INetGetSource, that is just the way you can get them. It works trust me. _GUICtrlListbox_AddString($words,$ma) _GUICtrlStatusBar_SetText($StatusBar1,'Items Aquired : ' & _GUICtrlListBox_GetCount($words)) WEnd EndFunc Edited December 6, 2009 by Gui
Moderators Melba23 Posted December 6, 2009 Moderators Posted December 6, 2009 Gui,A simple way that springs to mind would be to use _GUICtrlListView_GetItemCount and _GUICtrlListView_GetItemText to get the current contents of the ListView into an array. Then either add the new data and use _ArrayUnique to remove an eventual duplicate, or use _ArraySearch to find a matches before adding the new data. The only drawback would be the size of the array in memory, but you could always Dim and ReDim the array to reduce its size between fetches - depending on the time interval. If the interval is very short, your ListView is going to get to a fair size pretty quickly anyway. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
speck Posted March 3, 2010 Posted March 3, 2010 Thnx this help me too!! A great Thnx to Melba the finest Blues Jazz Rock by VL and SpecKtotallynoob.com tutorials about SysAdmins NetAdmins SecAdmins
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now