Search results for query: *

  1. S

    Problem with comparing dates and times

    Hi All, I have a problem trying to compare two dates in vb.net... is there a bug in .net?? Please see attached code... you can see the values in the two date variables, but the result of the if statement is going to 'else'... i thought = 0 means the two are equal??? Any help would be very much...
  2. S

    Question Drag drop from vb.net app TO other windows apps

    Hi, Thanks for the reply. I have used DoDragDrop as shown below and this works fine within my App, but doesn't work anywhere outside of my app - it just has the 'can not drop' mouse cursor!! Private Sub PictureBox1_MouseDown(ByVal sender As Object, ByVal e As...
  3. S

    Question Drag drop from vb.net app TO other windows apps

    Hi all... please can someone help me!! There is heaps of vb code out there about dragging from windows in to a vb app.. but pritty much nothing about going the other way!! Please can some one help me - all i want to do is drag a string out of my vb.net app to windows notepad, word, webbrowser...
  4. S

    Changing structure of an arraylist

    Thanks for quick reply. Im bit confused. The Class Library Module has this: Public InstanceofStructure as MyStructure Structure Mystructure public name as string public age as integer end structure In my main program i want it to use this structure for the instanceofstructure.... In main...
  5. S

    Changing structure of an arraylist

    Hi all, thanks for any help in advance! I have created a Class Library (dll) with a module and a class in it. The module declares a structure, and an instance of this structure. In the class, there is an arraylist declared. My main program calls a function in the class library class. The...
  6. S

    Sharing Structures of Arrays in multiple MDIchilds

    Thanks for the reply - and no i dont mean clones, but multiple instances of mdichild. I have the following... In the Module1: Public MyArrayList as new Arraylist Public MyInstance as MyStructure Structure MyStructure Public Value1 as string Public Value2 as string End Structure In the...
  7. S

    Sharing Structures of Arrays in multiple MDIchilds

    Hi All, Thanks in advance for any help given. I have created an MDIparent form and a MDIchild. There is a button on the parent which makes multiple 'clones' of the child form, each time its clicked. I also want (maybe with a module) a set of variables, and array of a structure but these are...
  8. S

    Datagridview keeps adding unwanted new column

    Hi all.... if anyone can help me with this i would be very greatfull! Im using VB08 Express Edition I have simply made a new project (windows form application). Put 2 dataviewgrids on the form. Added 3 columns to each grid (at design time). I then added one line of code as follows to the rows...
Back
Top