all groups > vb.net > january 2004 > threads for saturday january 31
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
TopMost
Posted by Jason Garland (Secure Access Pty Ltd) at 1/31/2004 9:50:02 PM
Does anyone know a way of making an item the highest form ? (eg nothing can
go above it, stays on top ?)
I have used the
TopMost = True
But if users hit the Start Button, it then goes over the top. Anyway of
keeping it higher or another way around the problem ?
... more >>
Where to put images
Posted by MC D at 1/31/2004 9:45:14 PM
I'm new to win forms programming, and am having a bit of trouble figuring
out where to place images that will accompany the program. Do you place
them in the bin directory?? What if you are making a control library to
accompany the app, and there are images that accompany the controls? Do you
... more >>
...., Optional ByVal avarText2() As String =?????)
Posted by SamSpade at 1/31/2004 5:23:16 PM
....., Optional ByVal avarText2() As String =?????)
The above is an argument in a function declaration.
I can't finish it because I don't know how to spcify a literal string array.
I tried {""} but the compiler complains.
Nothing seens to wotk but I'd like a one dinensional array with ... more >>
Convert Structure to Byte Array
Posted by Charles Law at 1/31/2004 4:15:51 PM
Suppose I have a structure
Private Structure MyStruct
Dim el1 As Byte
Dim el2 As Int16
Dim el3 As Byte
End Structure
I want to convert this into a byte array where
Dim st as MyStruct
Dim arr(3) As Byte
arr(0) = st.el1
arr(1) = st.el2 >> 8
arr(2) = s... more >>
DirectoryServices Problem on Windows NT Workstation
Posted by Günther Rühmann at 1/31/2004 4:05:02 PM
Hi,
I´m not sure if i´m right int this group...
My problem:
I made a vb .net application that reads from AD via
System.Directoryservices.Directoryentry.
The appliocation enumerates group members.
It works fine on W2k - machines. It works on a WinNT 4 - server, too, but it
stops with a runtime... more >>
Issues with .NET
Posted by Shelly at 1/31/2004 4:03:29 PM
Hi
I understand that there is nothing like disabled image list in toolbar of
VB.NET
Also, there is no placeholder button on it.
Why have these features been removed. Any plans of MS to incorporate them in
future versions of .NET?
Regards.
... more >>
H
Posted by Günther Rühmann at 1/31/2004 3:59:59 PM
Hi,
I´m not sure if i´m right int this group...
My problem:
I made a vb .net application that reads from AD via
System.Directoryservices.Directoryentry.
The appliocation enumerates group members.
It works fine on W2k - machines. It works on a WinNT 4 - server, too, but it
stops with a runtime... more >>
getting file position
Posted by Vicky at 1/31/2004 3:45:11 PM
is there any function of any class avilable which do the same work as
internetsetfilepointer win32 api function does.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
text height problem
Posted by liups at 1/31/2004 3:22:09 PM
Hi,
I have a multi-line textbox that accepts text input, I want it to
adjust its height according to the text it holds, so I use a
SendMessage API to get the line count of the text, then set the
TextBox.Height to (linecount * font.Height), but there is something
wrong with this calculation, the... more >>
MOD question
Posted by Edward Mogel at 1/31/2004 1:31:07 PM
What would be the correct code when entering a number between 102 and 676 and having it find the average of all the even numbers between 1 and the supplied number using the looping construct.
Also how do I code the program to use the Escape Key to exit and the Enter Key to perform a computation?
... more >>
hashTable.RemoveAll
Posted by msnews.microsoft.com at 1/31/2004 12:56:27 PM
So what is the best way to iterate through the hash table to remove all the
members?
i tried using the enumerator but it gets an exception as it removes each
element.
dim de as dictionaryEntry
for each de in xHashTable
xHashTable.remove(de.key)
next
I am missing the vb6 scripting.... more >>
global picturebox
Posted by Bernie Yaeger at 1/31/2004 12:48:01 PM
I place a picturebox with an icon (my client's logo) in it on every form of
an enterprise app. This takes just a little space but I have 150 forms, so
the .exe is larger than I'd like. Is there any way of making this control
global, such that it only ends up costing the .exe 5k instead of 750k?... more >>
Sample Code - VB or C#?
Posted by Chad Z. Hower aka Kudzu at 1/31/2004 12:13:36 PM
I need to provide a series of demos for an assembly. There are potentialy
several dozen of them. None of them are very complex, however maintaining two
versions of them will be very maintainance intensive.
Some of the very basic ones I have provided in both C# and VB. However moving
forward... more >>
ReadProcessMemory
Posted by Luke at 1/31/2004 10:38:44 AM
I am trying to convert some VB6 projects to VB.NET, however I'm having
trouble finding documentation of a new format for some functions, in
specific ReadProcessMemory. Since .NET no longer supports the 'as any'
declare I found myself trying integers & longs, however all attempts throw
back the e... more >>
UDP File Transfer
Posted by MrMind_15 NO[at]SPAM Hotmail.com at 1/31/2004 10:17:41 AM
I want any sample technique ,code or any idea regarding file transfer
using UDP socket. Please send me some info.
Thanx.... more >>
Data Display Please help
Posted by natalie.clarke3 NO[at]SPAM ntlworld.com at 1/31/2004 10:13:24 AM
I'm new to VB6. I've only been using it for about 2 days.
I've had to write a cti application.
I've got a phone number that a client has rung in on, what I now need
to do is to get it to display the name of the line. i.e Customer
service
Idealy I would like to do all this inside vb r... more >>
cboCombBox.Items.Clear doesn't trigger any events?
Posted by Rob R. Ainscough at 1/31/2004 10:00:56 AM
What I'm trying to accomplish is:
Disable a ComboBox (not bound to any data) when a .Clear method is
executed.
So far a cboComboBox.Items.Clear does NOT trigger any of the events I
expected it would. I've placed break points in the following events and
still they are not triggered:
Cli... more >>
When to add a component versus a class
Posted by John Granade at 1/31/2004 9:11:58 AM
I'm sure this has been asked but after searching the Internet, I just can
find a clear answer. When should you add a component versus a class to you
Windows Forms application?
The timer is a good example. I'm planning to add a customer system.timer to
run that should be accessible from sever... more >>
date and timer on a form
Posted by aelhhattabi at 1/31/2004 6:19:30 AM
hi,
I'm new to vb.net . I have a problem waking up early. I usually miss my
morning classes. I downloaded some alarm clocks of the internet but most of
them are huge and have extra functionalities. so I decided to make my own
alarm clock. i created my project and made the form. I could display... more >>
HTTPS connections
Posted by Masahiro Ito at 1/31/2004 5:38:04 AM
I need to be login to several websites and download files that are https
connections. I just tried IPWorks demo, but it does not seem to offer
https.
Does anyone know an https capable product, or a way I can do this myself?
Thank you.
Masahiro... more >>
Invoke standard mail client
Posted by John Lafrowda at 1/31/2004 5:06:32 AM
Hello experts,
I'm coding a routine which should open a new mail form of the mail standard
mail client installed on a system (e.g. outlook, outlook express, netscape
mail, etc.) for support reasons. The routine should fill in some textual
information. It should, however, not mail the informati... more >>
Form and Crystal
Posted by RichK at 1/31/2004 12:23:02 AM
I have a rather newbie question.......
How do I have Dotnet (VB) call up a Crystal report I have written and have
it display
in my form?
Hope you can help and TIA!
... more >>
|