microsoft.public.dotnet.languages.vb Archive - January 2004
Post a message to this list
Messages
Page: 1234567891011121314151617181920
2122232425262728293031323334353637383940
4142434445464748495051525354555657585960
616263646566676869707172737475767778
Stoopid Q (4 replies, VIP)
microsoft.public.dotnet.languages.vb
And here I thought I had a handle on things. Well, maybe not. Here's my scenerio, I have a form I need to reuse, so I thought, let's throw the sucker in a DLL. Well, running into a problem, I can't seem to cast my form, Form1, as a form. Kinda strange. Here's the Function in the DLL: Public Function ReturnForm as Form Dim frm As Form frm New Form1 Return frm End Function I put it in a class within...
Newbie to OOP needs basic help (8 replies, VIP)
microsoft.public.dotnet.languages.vb
I am trying to write my program following OOP the way it is meant to be and am creating a class to represent an object representing a project that the users will work on. Here is my code: Public Class clsProject Structure myProject Dim myProjectID As Integer Dim myCustomerID As Integer Dim myProjectStatus As String End Structure Property ProjectID() Get myProjectID End Get Set(ByVal Value) myProje...
Is this possible too? (5 replies)
microsoft.public.dotnet.languages.vb
Hi Is it possible to add a com class to a vb.net exe app so other com apps can interact with the vb.net app? Thanks Regards
VS.Net for dummies (10 replies, VIP)
microsoft.public.dotnet.languages.vb
I just finished a class on Visual Studio dot Net. I am not a programmer. I am still learning. I completed all of these projects but I am still in the dark. I am still digesting all that I have learned. All of these projects had lots of folders and other files created. I know if you click on the ..sln file the VS.NET programs runs. When I look at the Property Page of the project in the Solution Exp...
formating strings into 2 columns (4 replies, VIP)
microsoft.public.dotnet.languages.vb
I draw the following string in a picturebox LocaleInfo Msg.PadRight(50, "."c) & buf It's as close as I can get to having two columns. Because all characters are not the same width what I get is a ragged second column Is there a simple way to get two columns. I could measure Msg and work from there but I'd hate to do that and then find out DotNet could do it for me. Thanks Cal
Is thsi OK or do I need a Dispose (5 replies, VIP)
microsoft.public.dotnet.languages.vb
Private Sub AdjustBitmap() If b1 Is Nothing Then Exit Sub Dim b New Drawing.Bitmap(picData.Width, picData.Height) Dim g As Graphics Graphics.FromImage(b) g.DrawImage(b1, 0, 0) b1 b g.Dispose() End Sub Is the above OK? I think I need to Dispose the old Bitmap but don't know how. Do I need to Dispose it or will garbage collection take care of it? If I do, how. Would the following be sufficient? At t...
Garbage collector and excel (2 replies, VIP)
microsoft.public.dotnet.languages.vb
Hello all, I would like to open for discussion the following scenario. I have a .Net 2003 app that will run on an application server (Win2k OS) that runs many other apps of varying technologies (not all Microsoft). My application has two ways of creating Excel objects on its host server. One by creating a new workbook, and two , by opening an existing workbook. In development, I never see the GC d...
print multiple images in vb.net (5 replies, VIP)
microsoft.public.dotnet.languages.vb
how can i print images selected from listview control by using vb.net?? any samples? thanks
OT: Happy New Year (13 replies, VIP)
microsoft.public.dotnet.languages.vb
Happy New Year To All Ken
Form position (8 replies, VIP)
microsoft.public.dotnet.languages.vb
Hi I have a panel to which I have added several forms as follows; form1 New frmone form1.TopLevel False Me.MyPanel.Controls.Add(form1) form1.BringToFront() form2 New frmtwo form2.TopLevel False Me.MyPanel.Controls.Add(form2) form2.BringToFront() Is there a way to know which form is currently at the top? Thanks Regards
Merry Christmas To ALL (11 replies, VIP)
microsoft.public.dotnet.languages.vb
To All, For those who have helped me, thank you !. For those who have helped others, may good fortune shine upon you. For those who have been helped, do well to reward those who gave their time to you. Have a great Christmas. Regards OHM#
INKEY$ equivilant (5 replies, VIP)
microsoft.public.dotnet.languages.vb
Is there a .Net equiv of the old BASIC INKEY$ function?
Word (Cindy!) (3 replies, VIP)
microsoft.public.dotnet.languages.vb
Please tell me how we could write an array to a word table. I am able to do it in excel at http://www.kjmsolutions.com/datasetarray.htm Is there a comparable way you know in Word?
Event not raising if it's fired within constructor? (5 replies, VIP)
microsoft.public.dotnet.languages.vb
Hello, I only have a simple question...If an event is fired in the contractor of a class, it seeems that it isn't raised? Is this a normal behaviour? Regards, Ozden
Passing value to word (4 replies)
microsoft.public.dotnet.languages.vb
Hi How can I do this from within a vb.net app; 1. Create a word document from a word template and, 2 Pass a value to a variable defined within the document's VBA module? Thanks Regards
Curious problem with casting (5 replies)
microsoft.public.dotnet.languages.vb
A couple snippets for you: Module ETSPSAttrMod1 Public LDAPAttribs As Scripting.Dictionary New Scripting.Dictionary Sub Main() ' snip * LDAPAttribs GetLDAPAttribList() PopulateAttrs() End Sub Function GetLDAPAttribList() As Scripting.Dictionary() ' loads dictionary with attributenames from file Dim dicAttrs As Scripting.Dictionary New Scripting.Dictionary ' snip While AttrFile.Peek 1 i i 1 strLine...
Array of specific indices (2 replies, VIP)
microsoft.public.dotnet.languages.vb
Hi Is there a way to create an array that has only specific indices e.g arr[12], arr[127] etc.etc.? Thanks Regards
Which form? (4 replies, VIP)
microsoft.public.dotnet.languages.vb
Hi I am using a variable f (of type form) which would either refer to form1 or form2 depending on which form is on top. How can I now using f as handle call a procedure which exists in both form1 & form2? The reason for using f is so procedure is automatically called for the form which is on top. Thanks Regards
crystal version (4 replies, VIP)
microsoft.public.dotnet.languages.vb
what is the crystal reports version in .net?
USB Connectivity (9 replies)
microsoft.public.dotnet.languages.vb
Has anyone done any coding in this area ?, I dont want to be pointed in the direction of a link unless it has specific examples of what I am trying to do. Basically, I have decided to connect to a serial device plugged into one of my USB ports. But I dont know where to start really and dont want to wade through a hundred and one pages of c*&p before I understand how to code it. Any samples, free c...
font in the vs ide (3 replies)
microsoft.public.dotnet.languages.vb
How do you (can you?) change to basic font in the vs .net ide? Bernie Yaeger
Hi Newsgroup, (3 replies, VIP)
microsoft.public.dotnet.languages.vb
Hi all, For some days, we see now long threads concerning Ironman in this newsgroup. Is it not possible that only one person answers him (not me)? The answers I see are all the same and repeated. I like it when regulars have a fight, because mostly that ends with agreements, but this is Nothing. Only my thought, Please do not answer this message, it is direct EOT, otherwise we have probably a long...
Determine the numbers of lines in a textbox (8 replies, VIP)
microsoft.public.dotnet.languages.vb
How can I determine the numbers of lines of text that are visible in a textbox? Tom
Adding a new column to a dataset (2 replies)
microsoft.public.dotnet.languages.vb
Hi, I have added a new column to my dataset, but how do I save this to the database? I can only make "Oledbdataadapter.update(dataset)" write rows to the database. Thanks in advance! Lasse
Using a webservice through a proxy server. (3 replies, VIP)
microsoft.public.dotnet.languages.vb
I gave a VB.NET client which comsumes a webservices. The VB.Net client is behind a proxy server. The problem is when the VB.NET client i behind a proxy is goes very slow. It does get response from the webservice but it comsumes very much time (60 90 seconds). When the client is not behind the proxy server then everything runs smooth. So my question how can I "workaround" this extra timedelay when ...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification