Search results for query: *

  1. P

    Question Automatically Save the File and NOT Display the Save Dialog of a WebBrowser Control

    Would like to see how to get around this as I don't have the direct URL of the image... Below is the code I am using to get to the image file but the Save Dialog gets in the way... Sub Get_LGF_Wx() wbMain.Navigate("http://www.avmet.ae/metproducts.aspx?prod=LOCAL%20AREA%20FORECAST")...
  2. P

    Resolved Bad Data Error - Decryptor

    I have realized after posting that I have not set the TripleDes.Key/IV... That's why it works fine during the same run time and not after relaunching the app... thanks for the reply though...
  3. P

    Resolved Bad Data Error - Decryptor

    The following encrypting/decrypting code works well during saving/opening a text file/stream. But when I close and re-launch my the application, open the previously saved text file through streamreader, and during decryption, error is encountered at decStream.FlushFinalBlock() line saying "Bad...
  4. P

    Question Background Worker Cross Thread Operation on Active MDI Child

    If anybody could help me please how to put this on a background worker without getting cross thread errors??? trying to upload a childform object values to an access db... I don't work in IT, I'm just another employee working to make things easier in the office, so my apologies for asking...
  5. P

    Question MRZ OCR Decoder

    Anybody worked with a third party "FREE" OCR for ePassport Machine Readable Zone decoding? Struggling to obtain OCRs in VB.net that does not charge anything... thanks!
  6. P

    Problem changing toolstrip button backcolor on click using toolstriprenderer

    sorry to bother, i found out that the size of my toolstrip is the same as with the rct width and height... my bad... Protected Overrides Sub OnRenderButtonBackground(ByVal e As System.Windows.Forms.ToolStripItemRenderEventArgs) Dim button As ToolStripButton = e.Item If...
  7. P

    Problem changing toolstrip button backcolor on click using toolstriprenderer

    Lower and Right Side of Rectangle not drawn... sorry to reuse your code guys, but it seems the rectangle is not fully drawn once the mouse hovers over any of the buttons... black line is drawn only at the top and left side of the button ... any suggestion? Public Class TestRenderer...
  8. P

    Question GET THE INDEX of the SELECTED SubItem of a Listview

    EXAMPLE: listview of 8 columns and 13 rows... on selection, my mouse is over item row 10 column 6, how will i be able to get the index of that sub item??? so far no sample codes available over the net yet... < lsv1.SelectedItems.Item(0).Index > only works showing index of the main item in a...
  9. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    dragdrop row from datagridview of a childform to another datagridview of a childform I finally got it working... by trying to rename the datagrid on creation of the child form... Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs) Handles NewToolStripMenuItem.Click...
  10. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    ... im trying to handle the events by determining the child form's name and working on such, apparently, im ending up getting the same datagrid source for "source and destination"... hopefully, someone could point me to the right direction.... Private Sub frmManifest_Load(ByVal sender As...
  11. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    newguy, thanks... but i tried this already... but the problem is, i have a single form with a datagrid (let's call it DGV1)... and the same form is being relaunched everytime i create a new child... as with this code... Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs)...
  12. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    anybody else care to help??? pls???
  13. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    thanks new guy... im off to work, ill check it tomorrow if it works... appreciate the help...
  14. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    grmbl, i tried but somehow, it doesnt drop the data unto the datagrid of the other form... i want to drag a row completely by the way... i reached a point where i used textboxes to replace the datagrid for the drag drop functionality where i was able to do so... but somehow having all textboxes...
  15. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    thanks or the quick response, ill try this one out and will let you know... thanks|!!!!!
  16. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    thanks ill try that one out when i come home... thanks again... btw, im trying to drag a row from one datagrid in a child form to another... and the dataset was filled from a query...
  17. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    any body? please... a tip will do... thanks :( :( :(
  18. P

    Question Drag & Drop Between 2 Datagrids Between 2 MDI Child Forms

    Ive been working on this project of mine for some time now... though im not involved in IT in my current company, im just trying to help to at least have their system computerized (they are still doing it manually by paper & calculator)... I have one problem though which made me stick for 2 days...
  19. P

    "Generic" Drag and Drop Difficulties

    to Further the question about this topic, how to drag-drop between two datagrids on 2 different MDI Child forms??? i tried, but it took me... whew... thanks...
Back
Top