Friday, July 29, 2016

Deselet all items in a listbox solved,Excel VBA Teacher Sourav Bhattacharya,Kolkata



Borrowed this code and it's working like a charm




Sub TestRun()

Call ListboxDeselectAllItems(MainForm.lstbxBrand_Converted)

End Sub


Public Sub ListboxDeselectAllItems(TheListBox As Object)
Dim TheItems As Variant

    If TheListBox.MultiSelect = 0 Then
        TheListBox = Null
    Else
        For Each TheItems In TheListBox.ItemsSelected
            TheListBox.Selected(TheItems) = False
        Next
    
    End If

End Sub
 
 
 

Shrinking ListBox VBA Solved,Excel VBA Teacher Sourav,Kolkata



I set the Integral height to False, and make a ListBox much higher



http://www.excelforum.com/excel-programming-vba-macros/695828-shrinking-list-box.html

Sunday, July 17, 2016

How to watch a side-by-side 3D video in 2D in media player classic and vlc


Open the MPC player and configure the Pan and Scan Settings .

In the MPC player menu. Select View->Pan&Scan->Edit then a Pan&Scan Preset window setting will appear. Select "New" button then rename "new" entry to "3D[SBS] to 2D" and configure the Pos and Zoom . Then click "set" button and then click "Save" button.


source:http://play3d-2d.blogspot.in/2014/02/3d-sdb-to-2d-movie-in-media-player.html

for vlc player

http://www.techswatch.com/2015/03/how-to-watch-3d-sbs-side-by-side-videos-on-vlc-player.html

Over ride add on signing in firefox,integrate IDM with firefox

You can temporarily override the setting to enforce the add-on signing requirement by changing the preference xpinstall.signatures.required to false in the Firefox Configuration Editor (about:config page).

source:https://support.mozilla.org/en-US/kb/add-on-signing-in-firefox?as=u&utm_source=inproduct