No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
You don't need to use a table to achieve that behavior. Table are not meant to be used for positioning. Try the following HTML: <div class="control-group"> <label class="label" for="gender"> Your Genger </label> <div class="controls"> <input type="radio" name="gender">Male</input> <br/> <input type="radio" name="gender">Female</input> </div> </div> Include the following CSS styles in the …
post your mark up just to make sure... usually using the 'float' css property does the trick, floating creates a left to right (float: left) or right to left (float: right) flow. The parent elemet of floating blocks does not changes height automatically according to children unless it has the …
Instead of just using form1.show, in the form module you could overload the New method of the form and create a new property indicating who was it called from: [CODE]Public Class privateOrder Inherits Form '... '... ' Use this property to store who is calling the form ' and call …
Hi: In the application I'm building i use a FileSystemWatcher to monitor changes in any inserted USB flash memory, a FileSystemWatcher is created and started every time a usb flash memory is inserted, my code correctly registers the devices to receive the DBT_DEVICEQUERYREMOVE event from windows so i can unregister …
The End.
Fernando_Gomez