Search results for query: *

  1. S

    Question Drag and Drop to External Application

    I've implemented Drag and Drop in my application that works well within the application... I can Move, Copy & Link fine. But I've discovered an issue when I run the application on a different computer. I've implemented Drag and Drop within the same form, to other instances of the form and to...
  2. S

    Question Deploying a referenced .dll to a subdirectory

    I'm writing a windows application that is using some .dll files. I'm wanting it to be "portable" so wont be including an installer with it, and it seems to work OK like that at the moment: can unzip anywhere and run the exe fine. The issue I have is the .dll files I'm using in the project. In...
  3. S

    FYI NANY 2010 - Annual Event at DonationCoder.com

    DonationCoder have just opened the doors on this year's NANY Event. N.A.N.Y. stands for "New Apps for the New Year", and is an event where coders of all levels release a brand new FREEWARE/DONATIONWARE application to celebrate the coming of the new year. The NANY event is a celebration of...
  4. S

    Drag and Drop image

    Thanks, I wondered if that was going to be the best avenue, though it seems a shame to download the image again if it already has been and displayed, eh?
  5. S

    Drag and Drop image

    This one has me quite stumped. ElseIf thisFormat = DataFormats.Dib.ToString Then Dim im As Image im = thisData.GetData(DataFormats.Bitmap, True) Me.pictureboxData.Image = im When dragging an image (from webpage) onto win form the above code is executed eventually, but the Image is always...
  6. S

    Question Custom Button & Custom Tab on Property Grid

    ...this works... but? OK, I've added a handler to the Toolstrip's LayoutCompleted event: AddHandler oToolStrip.LayoutCompleted, AddressOf ToolStripLayoutComplete ToolStripLayoutComplete checks for the presence of the Save Button and adds it if it's not there. Is there a better way to do this?
  7. S

    Question Custom Button & Custom Tab on Property Grid

    I had a custom button on a Property Grid (on a Win Form): For Each oControl As Control In Me.propertygridProduct.Controls Dim oToolStrip As ToolStrip = TryCast(oControl, ToolStrip) If oToolStrip IsNot Nothing Then oToolStrip.Items.Add(btnSave)...
  8. S

    Question Tags and Objects

    OK, what I have to do is like a clone in reverse then? So instead of TreeNode.tab = editedObject it needs to be: TreeNode.tag.Text = editedObject.Text Makes much more sense now, thanks
  9. S

    Question Tags and Objects

    I thought this would work, but it doesn't seem to... I have an List of Objects called myList I have a TreeView that I populate using the list, something like: for each a in myList Dim n as new TreeNode n.Tag = a n.Text = a.Text TreeView.Add(n) next When I edit an object, I create a...
Back
Top