Home All Groups Group Topic Archive Search About

Visual Basic .NET

microsoft.public.dotnet.languages.vb
Score Access and GUID Column Type
Dennis - 2 Jul 2005 10:25 PM - 21 messages
I have created an access database table in code with the field "KeyId" as a GUID type.  What is the SQL syntax for updating a record matching this GUID, i.e., Dim myGUid as New GUID(....) mySQL = "UPDATE ITEMS SET Title="New Record No. 1", WHERE KeyID = myGUID) ...
Score Which to use, AllocCoTaskMem or AllocHGlobal
**Developer** - 2 Jul 2005 8:24 PM - 5 messages
If I need to allocate memory, maybe because I'm going to: Marshal.StructureToPtr Does it matter which of the following I use? Marshal.AllocCoTaskMem Marshal.AllocHGlobal I know the arguments are different which would make one more convient in a ...
Score Com port listing
EMW - 2 Jul 2005 6:54 PM - 3 messages
Hi, I'm looking for a way to get a list of all the com ports on a pc. It doesn't matter if they are free or not or if they are virtual of physical. Who can help me? ...
Score String to DateTime Problem
Lee - 2 Jul 2005 6:15 PM - 3 messages
Hello all, I'm trying to solve a problem with a string to datetime conversion. The problem arises when I try to convert a string from an XML doc into a .net DateTime.  I'm manually creating a dataset from scratch and ...
Score Adding points to a bitmap
John Dann - 2 Jul 2005 6:14 PM - 4 messages
I've never had much cause to read up in detail on GDI+ but there's a small piece of a project where I need to add some annotation (let's say just some small filled rectangles as markers) to a pre-existing ...
Score Access DB questions
james - 2 Jul 2005 5:02 PM - 4 messages
Hi, I am working on a conversion project from an older Database system (Dataflex), that stored each datatable in seperate files. I am trying to decide which is faster in Access. Continue to use the same method of data access, putting each table in seperate Access db files, or put all the tables in a single ...
Score VB6 to VB.NET - Whers MDI?
Rodrigo - 2 Jul 2005 4:34 PM - 3 messages
Hello, I'm starting now in VB.NET 2003, and I noticed that ther's no MDI   Form, that's kind of harsh when creating a program with multime windows... How can I do this without an MDI? or, Is there a MDI Form in ...
Score DataGrid scroll bars disappeared after the grid is filled
Robert G - 2 Jul 2005 11:27 AM - 2 messages
I'm using VB .net 2003. I have a grid where everything is working fine except when after the grid is filled with records (by setting the data source to a data view), both the horizontal and vertical scroll bars just won;t show up, eventhough ...
Score use ADOX for this :-)
m.posseth - 2 Jul 2005 8:23 AM - 7 messages
yep ,,,, You can do this ( verry easy ) with ADOX objADOXDatabase.Tables(oldName).Name = newName As DDL is not yet implemented in ADO.NET  MS recomends using ADOX to perform DDL Onderwerp: Re: Adding Columns to Jet/Access database Datum: woensdag 29 juni 2005 17:10 ...
Score How convert dataset to arraylist?
VB Programmer - 2 Jul 2005 4:26 AM - 4 messages
I have 1 table in a dataset.  How can I easily convert it to an arraylist (with structure arraylist elements)? ...
Score Win Forms Positioning
Shane Story - 2 Jul 2005 3:14 AM - 2 messages
I need to position a normal form at a certain position above another form....mainly I would like it to have a left of 0 (far left) and its top to start just below my toolbar. Other than using GetSystemMetrics API to determine height of menu and win ...
Score Does String mashal default to UnmanagedType.LPTStr
**Developer** - 2 Jul 2005 1:48 AM - 9 messages
Been reading some of the Marshal doc and am a little confused. Anyway, I've been using the following and it works OK. Public Declare Auto Function SHGetFolderPath Lib "shell32.dll" (ByVal hWnd As Integer, _ ByVal nFolder As Integer, ByVal nToken As Integer, _ ...
Score score object property values against a decision rule created from from database table record values
hazz - 2 Jul 2005 12:58 AM - 4 messages
if i have a table record called Rule 1 with 1. table name 2. table column name 3. operator   (>,< =) 4. value  (0 to n) 5. score how could I create code to create a rule automatically so that i could ...
Score Transparent Color in an Icon
Dennis - 1 Jul 2005 11:35 PM - 9 messages
How can I find the transparent color in an Icon and convert it into a Color type in VB.Net 2003? I want to convert it into a bitmap with the same color transparent.  I know that I can convert it to a bitmap then read the color of the pixel at 0,0 ...
Score questions about VB.NET, and uses in education
D H - 1 Jul 2005 10:27 PM - 3 messages
Hi,    Hi, I was looking for your opinion on VB.NET - its long-term prospects, etc.  Sorry this is vague, but it's not meant to be a troll.   It's a pro-VB.NET post actually. ...
Score Is there code to convert a c# module to VB?
Jim Bob - 1 Jul 2005 9:35 PM - 6 messages
I am primarily a VB writer but I have code written in C# I want to use. Is this feasible? jwc *** Sent via Developersdex [link] *** ...
Score Memory Usage
John - 1 Jul 2005 9:10 PM - 3 messages
I have a 325k VB.Net app that when loaded uses about 25Meg. There's SQL calls, etc. but how can it take up so much space and how can I reduce the memory footprint? John ...
Score (newbie warning) vb.net, stdregprov, deletekey - Invalid cast
Schroeder, AJ - 1 Jul 2005 8:51 PM - 8 messages
Hello, I am trying to delete keys via WMI using VB.NET. I have used the "EnumKeys" method before, but the "DeleteKey" method is obviously different. The error that I get is "The specified cast is invalid" on the GetMethodParameters ...
Score Loading two separate instance of the same assembly
ZaX - 1 Jul 2005 8:13 PM - 3 messages
Good day folks, I'm working with a third-party transactionnal SDK, packaged into a few DLL. In a particular scenario, I need to have two sessions opened on the infrastructure I access thru the SDK, and I need programmatical control over ...
Score Loop thru all subfolders and list all files under each
Bill Nguyen - 1 Jul 2005 6:45 PM - 10 messages
I need a VB routine to loop thru a select top folder to find all subfolders and list all subfolders/files under each of these subfolders. Any help is greatly appreciated. Bill ...
Score Error: Cast From String to type Integer not valid
Michael - 1 Jul 2005 5:47 PM - 3 messages
I need some help. I have the following code: cmSQL = New SqlCommand("nf_AddPurchaseOrder", cnSQL) cmsql.CommandType = CommandType.StoredProcedure cmsql.Parameters.Add("@PurchaseOrderId", sqldbtype.varchar, 10, "OrderNo").Value = txtPONum.Text cmsql.Parameters.Add("@OrderDesc", sqldbtype.VarChar , 50 , "OrderDesc").Value = txtOrderDescription.text ...
Score This Simple 2-Line Program Generates An Error! Why?
Eric Robinson - 1 Jul 2005 5:17 PM - 4 messages
I created a new Windows Application project in VB 2003. Aside from the Windows generated code, this is all I added to the form: Dim a as String a="foo" Believe it or not, the second line generates an error. VB underlines the "a" ...
Score Need a Strategy to store the Single Quotes in the Database
Solution Seeker - 1 Jul 2005 4:41 PM - 4 messages
I want to Store the String value with Single Quotes in the Field of Database where if i try to Store the String value with Single Quotes (as it is) then it is throwing the error as SQL String Truncated. ...
Score Two quick Questions
JoeCoolOH - 1 Jul 2005 3:30 PM - 8 messages
can some one tell me what the mod function does when you use a non integer I am away from my vb pc. Ex 19 Mod 6.7 =? Would VB round or truncate the 6.7? The other is When compiling your ap into native code which option should you not use ...
Score Controls created on one thread cannot (inoke setup)
pmclinn - 1 Jul 2005 3:16 PM - 2 messages
What is the best way to re-write this code to avoid the 'Controls created on one thread cannot be parented to a control on a different thread.' error? Private Sub SendCMTStoCore(ByVal Cmts As String)         Dim threadMillhouseBridge As New ...
Score Use another login
Rui Oliveira - 1 Jul 2005 2:39 PM - 2 messages
I want have access to restrict folders when inside one application. A general user using the browser does not have access to these folders, but using the application is supposed have access to those folders. Is possible the application use a specific login to have access to a ...
Score My.Settings.Add
Jason Kendall - 1 Jul 2005 1:27 PM - 4 messages
I've recently installed Beta 2 ov Visual Studio and an updating a few small applications as a way to get my feet wet with some of the new functionality.  There are many new features which are really going to ...
Score imagelist and bitmaps
Sam - 1 Jul 2005 1:05 PM - 10 messages
Hi, I've added two bitmaps to my project. Now I would like to create an imagelist (in the code) and add those two images to it (so no path, just the name). And I want those images to be compiled in the .dll. ...
Score building an Add-in in .NET for IE?
Brian Henry - 1 Jul 2005 12:43 PM - 2 messages
Is it possible to create an Add-In bar for IE that would interact with the current document in IE from VB.NET? thanks! ...
Score saved bitmap size
Peter Proost - 1 Jul 2005 12:36 PM - 10 messages
Hi group, I've got a question about the size of a saved bitmap. What I need to do is open a bitmap if it needs resizing, resize and save it. This isn't a problem, but the problem I have is that the original image has ...
Score How to convert error code to text??
**Developer** - 1 Jul 2005 12:08 PM - 9 messages
For  WinSpool.SetPrinter a zero return indicates an error. SetLastError defaults to True in VB so I can get the errorcode as follows: ErrorCode = Marshal.GetLastWin32Error() The value is 6 but that tells me very little. Where can I find some text to better describe the error?? ...
Score Design Question
marcmc - 1 Jul 2005 11:28 AM - 3 messages
I have a VB App that acts as a maintenance of a number of routines to be set up, edited and run on a SQL Server Db. The nature of this app is to return results from the routines(sProcs) and ...
Score Open forms
js1300 - 1 Jul 2005 7:34 AM - 3 messages
Hello, I have a large project containing many forms and classes and even more instances of them.  I'm looking for a way of listing all active instances in a project, i.e. all open forms and classes, basically anything that hasn't ...
Score Monitor process creation
Nikolay Petrov - 1 Jul 2005 7:25 AM - 7 messages
How to monitor the startup of processes and eventualy stop them to run? TIA ...
Score Send datagrid via email
sam - 1 Jul 2005 6:19 AM - 6 messages
Do anyone know how to apply send datagrid via email? Any website for reference? Please advise. ...
Score Change Value of Existing Element
Lee - 1 Jul 2005 4:01 AM - 3 messages
I have an xml Structure: <?xml version="1.0" encoding="utf-16"?> <Request>   <Operations>     <Command>       <OpType>login</OpType>       <Params> ...
Score Problem with Status Strip in VS2005b2
Smoke - 1 Jul 2005 3:37 AM - 2 messages
Im testing the new June CTP release of VS2005 and each time i try to use the Status Strip or Tool Strip control at design time i get and object reference not set to an instance of an object error, no matter where or when i added the item on the form. ...
Score How to use Windows Explorere's Thmbnails and/or Filmstrip "app"
Jerry H. - 1 Jul 2005 1:49 AM - 3 messages
Windows Explorer in XP has some handy image browsing features that I'd like to incorporate into my own app.  I'm referring to the "View" menu option that let's you selecte between Filmstrip, Thumbnail, List, and Details, among other modes. ...
Score How To? import vb net forms ???
GerryLowry1(905)825-9582{AbilityBusinessComputerServices) - 30 Jun 2005 10:23 PM - 4 messages
In Microsoft Access, importing and exporting forms from one .mdb to another is very, very easy to do. VB.NET seems to be quite difficult, probably because I am doing something wrong. Steps to recreate (Visual Studio 2003) ---------------------------------------- Create VB Project                       vb1 ...
Score Get names of opened windows and their process name
Nikolay Petrov - 30 Jun 2005 10:21 PM - 6 messages
I need to get the names of every opened window, its process name and the username of the user, which have started the process. Better if can somehow intercept the starting of new process. When I need is to make sure that the user opens only one instance of process ...
Score how pass data between forms
tcloud - 30 Jun 2005 10:05 PM - 6 messages
part of my application has a "Notepad" similar function with a separate "Find" form. -- how do I keep the Find form open yet have it pass data back to the Main form to do repetitive searches -- llike Notepad ?? I've tried both "Show()" (which doesn't work) and "ShowDialog() (which works ...
Score MessageBox coming up with blank message and blank buttons.
Mike L - 30 Jun 2005 9:21 PM - 4 messages
MessageBox coming up with blank message and blank buttons.  The title and icon show up, and the buttons work, if I click the first blank button, returns Yes.  Why is the message blank and the buttons are blank? ...
Score Need Help With Translation C#? to VB
Scott Gunn - 30 Jun 2005 8:36 PM - 4 messages
Hello all I'm trying to use the scrollwindowex api however I have the same problem as this guy had. There is an answer here in the reply. I just need some help converting it to VB.Net microsoft.public.dotnet.languages.csharp:30519 ...
Score Case conversion
John - 30 Jun 2005 4:42 PM - 3 messages
Hi How can one change a textbox's content to mixed case (first letter of each word cap, rest small) in vb.net? Thanks Regards ...
Score How to convert this code from C# to VB.NET?
Chris - 30 Jun 2005 4:36 PM - 7 messages
When I run this code in VB.NET, it hangs on the GeneratePerlinTexture call. I think it is because I am not calling it correctly. The C# code that works: [DllImport("PerlinDLL.dll")] static extern unsafe void GeneratePerlinTexture(void *ARGB32_pixels, int w, ...
Score "printf" style string method?
Robin Tucker - 30 Jun 2005 3:20 PM - 3 messages
Given the need to (possibly) alter the position of various elements in a string due to localisation, is it possible to build a string using a "printf" style function, such that the source string can also contain the position of the elements to follow?  Eg. : ...
Score Intellisense question
news.microsoft.com - 30 Jun 2005 2:55 PM - 7 messages
How can I create a method and attach a description to it so that if someone instantiates my object and references the object.method a description of the method shows up.... just like the vb methods do? I have tried things like ...
Score System.Web.Mail.Smtp namespace
marcmc - 30 Jun 2005 2:48 PM - 9 messages
Trying to send an eMail frommy vb.net App. Is there anybody out there that has successfully done this? I am having major problems and need a step by step guide into the world of system.web and IIS. The reading I have done(alot) has been pretty useless in ...
Score reference dependency warnings during build
marfi95 - 30 Jun 2005 2:21 PM - 4 messages
In the project I'm working on, I have a reference to another project of mine that is the base class objects for my system.  The problem I have is that when I build my project, it compiles, but I get following ...
Score Panel like Visual Studio .NET
André Nobre - 30 Jun 2005 2:20 PM - 3 messages
Hi all... i need to create a component like "Solution Explorer" or "Properties" from Visual Studio .NET. It´ll stay "closed" and when the cursor roll over this component it opens. It must have some buttons, textbox, etc inside. ...
Score is there way to send email throught outlook express without mapi controls ?
roni - 30 Jun 2005 11:34 AM - 5 messages
i dont like to use ocx controlx. is there new dll for vb.net that do the job ? or newer code, to send email throught outlook express. ...
Score Radio Button in Group Boxes
Helen Trim - 30 Jun 2005 11:17 AM - 2 messages
Is there a group box property that tells you which radio button was clicked? ...
Score manged alternative to get the complete text from each open window
gabe - 30 Jun 2005 10:34 AM - 5 messages
i have a solution to gather the text in each window that is open, but would rather use only managed code rather than unmanaged code my current solution relies on.  The purpose is to get the text in each open window ...
Score INI or XML
Daniel - 30 Jun 2005 10:27 AM - 10 messages
Hi Group, I need to store some app settings.  I always used an INI file in VB6 using WritePrivateProfileString but I have read that XML is now the way to do it with .NET Any suggestions as which to use?  I don't need to store anything ...
Score user control and events
Sam - 30 Jun 2005 9:21 AM - 4 messages
Hi, I've got a user control with a method called Collapse. I would like that when this method is called (it's only called inside the user control, never by the client), an event can be caught. So my client form can catch an event such as OnCollapse. ...
Score Developing in .Net 2.0
Nitin - 30 Jun 2005 6:30 AM - 2 messages
Hi, Should I start coding in .net 2.0 beta and give final release of the softwares on .Net 2.0 Beta. Its releasing on 17th Nov. ...
Score Adding desktop shortcuts and start program entries
Jack Russell - 30 Jun 2005 6:13 AM - 8 messages
Can anyone tell me if there is a .net way of doing these things. I have VB6 code but assume there is a new way. Thanks ...
Score ApplicationDomains
Jody L. Whitlock - 30 Jun 2005 5:58 AM - 5 messages
Can someone assist me in this quest?  I've been trying in vein for some time now to figure out how to use AppDomains as a way of making a plugin architecture.  Basically, here's my plan: 1) Load main assembly ...
Score dataset?
cb99999 - 30 Jun 2005 5:00 AM - 5 messages
I am new to vb.net and not new to db's.. I have form to accept data for collection from class. so the data is in the collection. i will be creating more classes and collections for soon. all of these will need to relate later. ...
Score Crystal reports SQL Server connection problem.
Marcos Beccar Varela - 30 Jun 2005 4:19 AM - 4 messages
Hello, does anyone knows how to make a SQL Server connection from a string not using the "wizard"? I have various reports and I need to make a connection that when the parameters are changed in that string, all connections in reports change too. ...
Score Calculating Time in VB .Net
Brian - 30 Jun 2005 3:09 AM - 6 messages
I'm learning to program with VB .Net.  I'm trying to write a program that will calculate jogging time.  I have Text boxes for Distance1, Distance2, Speed1, Speed2, Time1, Time2, and Total Time.  For example, say I run 2 miles ...
Score Imports being lost
Earl - 30 Jun 2005 2:50 AM - 2 messages
Continue to be troubled by referencing issues in this one app. My app references several external .DLL files that I created. Sometimes when I open the solution, I get Build errors that "Namespace or type ... for the Imports cannot be found". Yet if I close without save and re-open, the referenced ...
Score How to use OCX?
Terry Olsen - 30 Jun 2005 2:12 AM - 4 messages
I have an OCX that I used in VB6 (there is no .NET version of it).  There was an INI file with it.  I right-clicked the INI file and chose "Install" and rebooted.  I then created a new VB project and added a reference to the ...
Score WebBrowser control error
Shane Story - 30 Jun 2005 12:55 AM - 7 messages
I am trying to add the Microsoft Web Browseractive X control to a vb.net form. I always get an error on the EndInit line. Parts of the errors says: "Unknown error" "First Chance exception" I tried putting it in a user control but this failed also. ...
Score Deployment question
Bryan Dickerson - 29 Jun 2005 9:19 PM - 2 messages
I have a Class Library that I have exposed as a COM component for use in a VB6 program.  In the VB6 references, the pointer is to a TLB file.  Should this be the file that I deploy to a user's machine?  Does it need to be ...
Score How to link to a dll in vb.net
Chris - 29 Jun 2005 9:08 PM - 2 messages
I have a DLL that I would like to use in VB.NET but I am not sure how to link to it.  It is called PerlinDLL.dll and is a dll that spits out a bitmap of a fractal image.(link: ...
Score File loading
Dennis Jackson - 29 Jun 2005 8:00 PM - 3 messages
i want to load an external file from my console app. How can i do this? Dennis ...
Score Check if Stored Procedure already exists in Access Database?
Carl Fenley - 29 Jun 2005 7:44 PM - 10 messages
I am successfully adding stored procedures to an Access database.  However, I need to be able to check if the stored procedure of the same name already exists. Is there a way to do this other than waiting for the OleDbException caused ...
Score Checking to see if a database exists...
RSH - 29 Jun 2005 7:08 PM - 2 messages
I'm creating databases programatically in .Net and I want to verify that the database doesn't exist before creating it.  i found the SQL code: IF NOT EXISTS(SELECT * FROM <databasename>) But when I run the code against a known database, even in SQL Management ...
Score Directinput
Steve - 29 Jun 2005 6:59 PM - 6 messages
does anyone know where i can find an example of directinput for a joystick on VB.NET. all the examples i can find apply to vb 6.0. Thanks Steve ...
Score Dir Function just stopped working!
bidalah - 29 Jun 2005 6:57 PM - 3 messages
Hi, Following is a simple version of my now non-working code:         hihi = Dir("c:\burn2\*.*", FileAttribute.Normal)         Do While Len(hihi) > 0             hoho = hehe ...
Score "Selecting" from a data table
Ron L - 29 Jun 2005 6:43 PM - 12 messages
I have a data table that lists a series of items in my database.  In my user form, I want the user to be able to filter by a number of criteria (e.g. location, contract, date modified, etc).  Other than modified date, all my ...
Score Strangest damn error - database at fault?
Neo Geshel - 29 Jun 2005 6:23 PM - 8 messages
I am working with an Access database, and every now and again I get an error that forces me to shut down and restart the www service. The timing is random, and can occur when I am editing, entering or viewing ...
Score weird problem with XMLSerializer
Armond VanHeusen - 29 Jun 2005 5:05 PM - 2 messages
I have an application with a bunch of DLLs that are loaded in as plugins. In one of these I am trying to get XMLSerialization to work but with little success. I then tried some very simple code shown below as a quick and dirty ...
Score OpenFileDialog
marcmc - 29 Jun 2005 4:41 PM - 2 messages
I can't get the following msdn code below to actually open the .txt file i select It seems         Return DlgOpenFile.OpenFile() or         Return New FileStream(Path, System.IO.FileMode.Open, _ ...
Score Loading an external file (beginner post)
Dennis Jackson - 29 Jun 2005 4:23 PM - 2 messages
I have just started to learn VB. I have console program which loads another ..exe file. How can i get it to do this i have tried searching help but that is only returning how to make web service load one. ...
Score Finding the Column Name
Thomas Beyerlein - 29 Jun 2005 4:17 PM - 3 messages
Hello, I am looking it for a way of getting the column name, from a datagrid when the user clicks on one of the cells. I can get the value and the row Number and column Number, but can not seem to find the event ...
Score Run Dynamic Code
Manuel - 29 Jun 2005 3:57 PM - 3 messages
I'm using Visual Basic 2005, is there a way to run dynamic code? Ex: Dim strToRun as String ="" strToRun &= "dim s as string = ""Hello World!""" & vbcrlf strToRun &= "Messagebox.Show(s)" [SomeClass].Execute(strToRun) ...
Score total playtime
Samuel - 29 Jun 2005 3:45 PM - 2 messages
hi! how can i get the total playtime of any audio format (especially mp3s)? ...
Score CRC checksum algorithm
ValK - 29 Jun 2005 2:41 PM - 16 messages
Hello, I’m working with handheld device that communicates with windows service thru the serial port. Transaction between device and my application looks like this: Handshaking: Device sends    ENQ Service responds   DLE 0 Device sends    DLESOH4168840000SR01L01DLEETX4á ...
Score Finding a webservice server
Aussie Rules - 29 Jun 2005 2:35 PM - 3 messages
Hi, I have a classic client server app. When the client is installed on the PC I would like the client application to some how 'find' the server or servers that host the server logic. Kind of like how the SQL tools, can list all the SQL servers in the network. ...
Score Closing event
N! Xau - 29 Jun 2005 2:30 PM - 3 messages
Hi, I want to avoid an user closes the form clicking on the upper right side "X" button. So, for the Closing event, I set: e.cancel = true The problem is, this way the user can't even close the form using the ...
Score 2 different numbers.....
Supra - 29 Jun 2005 1:09 PM - 14 messages
how do i get 2 different number in same  row? using random example: 4   2 5   6 7   4 1   7 9   8 3   3  <===== i want different number but not same as opposite ...
Score persistent data source (light footprint, secure, supports sql query engine)
Jesse Aufiero - 29 Jun 2005 1:08 PM - 3 messages
I am creating a vb.net app that displays historical financial data in various ways (grids, charts, etc.).  This data is sensitive and should only be accessible through the vb.net application.  The vb.net application must also be able to issue sql select stmnts against the persistant data source ...
Score Control (prgressbar) not visible
JR - 29 Jun 2005 12:01 PM - 3 messages
Hi, i use a progressbar in my program but it isn't visible the possition is 10;40 (almost exact under the menu). The property visible is true. it is there in design-mode but not in Run-mode. in runmode I can change its propertys max min value whitout an error. ...
Score Array of Value/Ref type
wg - 29 Jun 2005 11:23 AM - 5 messages
I am attempting to create an array of value types but seem to be haveing a problem referencing it. I have created a class Public Class Tags     Private _Name As String     Private _Address As String ...
Score Colori dinamici
N! Xau - 29 Jun 2005 11:18 AM - 3 messages
Ciao, e' possibile modificare il colore della proprieta' Text di un bottone a runtime? grazie ...
Score Versions
Peter Waugh - 29 Jun 2005 10:35 AM - 13 messages
Hi, A quick question (not a programmer) The verisons for VB are (in decending order) VB 2005 VB .NET 2003 VB .NET 2002 VB 6.0 VB 5.0 Thank you in advance Peter ...
Score TreeView Question
Boni - 29 Jun 2005 8:15 AM - 6 messages
Dear all, is it possible to implement a tree node so that double click on the tree node does some operation and double click on "+" of this tree node only expands tree without doing this operation. Unfortunately I only know ...
Score Load class library at runtime
Nikolay Petrov - 29 Jun 2005 8:04 AM - 6 messages
Can I load a class library at runtime? Plugins, etc? ...
Score Passing parameters to 2nd form issue
marcmc - 29 Jun 2005 8:01 AM - 5 messages
Error = (Too many arguments to Public Sub New()' I have done this before but this project is giving me trouble. At the declaration point of my Login screen I have Windows Form Designer Code... Dim UName as String I then query the database with a datareader to set UName from the login name ...
Score get mouseeventargs
Sam - 29 Jun 2005 7:58 AM - 6 messages
Hi, Protected Overrides Sub OnControlAdded(ByVal e As System.Windows.Forms.ControlEventArgs)         AddHandler e.Control.MouseMove, DirectCast(CheckCursor(), System.Windows.Forms.MouseEventHandler) End Sub The above code is to redirect the MouseMove event of any controls added ...
Score panel always on top
Sam - 29 Jun 2005 7:25 AM - 6 messages
Hi, How can I have a panel that would be on top of any other controls all the time ? Thx ...
Score UnloadMode
Lespaul36 - 29 Jun 2005 6:26 AM - 4 messages
I want to make a unloadmode like what was in vb6.  I have seen some code using the stack, but I would prefer to use window messages.  I am trying to find the calls used for the tast manager shutting down the window.  Any ...
Score how to reference strognly typed dataset up mulitple projects
moondaddy - 29 Jun 2005 4:49 AM - 6 messages
I'm writing an winforms app in vb.net 1.1 and am having trouble referencing a strongly typed dataset in the UI project.  The dataset's source is behind a web service and the data project (client side) gets a reference to the ...
Score Populate Dataset with Parameterized Stored Procedure
Sheldon Penner - 29 Jun 2005 4:25 AM - 2 messages
I have been trying to build a web form using the SQL Data Adapter Configuration Wizard to create a dataset based on a parameterized stored procedure.  I find that if I select "Use existing stored procedure" on the "Choose a query type" screen, the following screen allows me to choose only ...
Score Adding Columns to Jet/Access database
johnb41 - 29 Jun 2005 4:08 AM - 12 messages
I need to Add, delete, rename, etc columns in my Jet/Access database in my app. I know I can add columns for a dataset, and work with it, but as far as I know there is no way to push the added table to the original database ...
Score Monitoring Pop3 & IMAP emails on servers.
Thief_ - 29 Jun 2005 3:57 AM - 3 messages
I need to monitor POP3 & IMAP servers for new emails. Ideally my app needs to sit in the system tray. Has anyone done this before? ...
Score Deployment packages
Jack Russell - 29 Jun 2005 3:38 AM - 7 messages
Thanks to a lot of help from this group I am at the point where I have to consider the best way to deploy my clients package. Some of the PC using it may not have web access so it will be on CD. ...
Score avicap32.dll issues (Is Ken Tucker Around?)
Jeremy - 29 Jun 2005 2:59 AM - 3 messages
Hello I am using a web cam service that saves images every five minutes based off the example given by Ken Tucker. (hopefully I can catch him!) It works great for the most part. I need to handle a situation if the camera, or connection to the camera ...
Next » 2 3 4 5 6 7 8 9 10