all groups > vb.net > may 2004 > threads for sunday may 16
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Auto-creation of Interface members
Posted by Brian Mitchell at 5/16/2004 11:10:56 PM
What's the secret to getting the text editor to automatically create the
interface members when you use an implements?
I am implementing an interface in my class, which has about 20 functions, 2
events, and 34 properties.
Thanks!!!
... more >>
Region property - applied in user control ?
Posted by M West at 5/16/2004 10:48:47 PM
hello,
currently trying to write a custom control that will display an image in
true transparent form, e.g. can actually see the background images placed
behind the control rather than the background graphic held on the form.
Have produced a region which will hold the outline of an image tha... more >>
Arrays and freeing memory
Posted by .:: MaStErDoN ::. at 5/16/2004 10:48:44 PM
Hi!
I'm working with arrays, saving on them information about files. All works
fine but the problem is that when i finish using them and i remove all the
information using:
for index = array.count to 0 step -1
array.remove(index);
next
i check the task manager and my program is still using 32... more >>
AddressOf/Delegate question clarified - VB6.0, .NET question
Posted by BoloBaby at 5/16/2004 9:27:12 PM
OK, I've managed to clarify my question (whew).
I'll show two blocks of code - one in VB6.0 and one in VB.NET. The VB6.0
code manages to execute the callback function, the VB.NET does not. The
question is "how do I get the .NET code to execute the callback function?"
(Note - the declared f... more >>
BackColor of MDI parent
Posted by Lance at 5/16/2004 8:41:04 PM
Is there any way to change the color of the background region of a form with its IsMdiContainer property set to True
Thanks
Lance... more >>
radiobuttonlist: omit label when .DataBind()
Posted by hellrazor at 5/16/2004 7:54:31 PM
Hi there,
I'm successfully streaming a list of items into a radiobuttonlist. I am
using an ArrayList as a data source, which I have built from a table of
values in a MySQL table. It's working great. My only issue is that it is
printing the label along the rendering of the radio objects. How... more >>
AddressOf, .NET, and VB6.0 interoperability
Posted by BoloBaby at 5/16/2004 7:07:49 PM
OK, here's the problem...
I have a digital input/output card that exposes IRQs (digital input
change-of-state) through a DLL function.
In VB6.0, I can use this ability through code that looks like this:
[Class1]
Public sub test()
DIO_INT1_EventMessage 0, 0, 0, 0, AddressOf BE_ReadPo... more >>
Printing
Posted by Stephen Martinelli at 5/16/2004 5:30:00 PM
Hello all
How can i right justify numeric field on a report. Currently, all my numbers
are left justified and i cant figure out how to change them to right.
Thanks
steve
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Auto incrementing not working
Posted by John at 5/16/2004 4:16:26 PM
Hi
I am using Application.ProductVersion.ToString to get the app build number
but the problem is that it does not auto increment. I have even replaced the
content of AssemblyInfo.vb file from a new project in case it was corrupt or
something but no luck. What elements effect the auto-increment... more >>
[data binding ] set the date format in the textbox.
Posted by Agnes at 5/16/2004 3:44:54 PM
In my tables, there are invoicedate, as i use databinding, bind the
invoicedate to the textbox,
It show mm-dd-yyyy time. I need to change it into date dd-mm-yyyy only
without time .
how can i do that ???
I think I should not change it into string.
Please help.
... more >>
view in browser
Posted by Frank at 5/16/2004 3:07:56 PM
Hi,
I'm experimenting with aspx. When I build a form with code-behind code it's
possible to run with a mouse right-click and menu 'view in browser'. A
browser window is opened within VB.NET. Works fine. But after making
adjustments in the vb file the changes are not available after again using
... more >>
Thrown Exception
Posted by Steve Hord at 5/16/2004 11:48:27 AM
Has anyone seen the following behavior in VB.NET: when I attempt to add a textbox to a form I receive a popup stating, "External component has thrown an exception.", and the textbox never appears on the form. I can add a Rich Textbox however, with no problem. I am using Visual Studio.NET 2002 if ... more >>
How to share embedded resource?
Posted by Larry Serflaten at 5/16/2004 10:42:13 AM
I am making a DLL that has a class that will be made into
several similar objects for the user. I have a .gif file that
has all the parts those objects need. I am wondering what
the proper way to share that image across all the objects is
so I don't end up with that single .gif loaded multiple... more >>
KB Article KB311284
Posted by Tobias Winter at 5/16/2004 3:31:02 AM
Hi
I have a problem with the sample-application in the KB articl
http://support.microsoft.com/default.aspx?scid=kb;en-us;31128
When the page www.microsoft.com has loaded, it is not possible to type anything into the textbox at the top-right corner
Do you have the problem too or do you know how ... more >>
Print of a document
Posted by JoskeXP at 5/16/2004 2:31:03 AM
Hi
How can I print a form.On this form are textboxen and a picturebox
In the textboxen is information with databindings en the picture come's from a file
Th
JoskeX
... more >>
getting the bytes of an image
Posted by dudzcom at 5/16/2004 12:11:03 AM
i need to do some intense manipulation of an image/bitmap object, and i would like to outsource the heavy work to a c++ dll. the problem is, i'm having trouble finding a memory address to pass the dll as to where the data is really located (i assume it's in a bitmap format *fingers crossed*).
i'v... more >>
|