Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
all groups > vb.net > june 2006 > threads for wednesday june 7

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

Help using multiple languages
Posted by Zeke Zinzul at 6/7/2006 11:06:06 PM
Hi, I am writing a simple graphics program to generate a Yin Yang logo. I need to implement a flood fill routine and am trying to write a stack class in C#. My main program is in VB. My solution is called "Yin-Yang", containing the two projects. My C# project is called coordstack with a...more >>


Opening a new window
Posted by Bonzol at 6/7/2006 9:05:09 PM
Vb.Net 2003, 1.1. Web application. Hey there I have this, Response.Redirect("FileFiew.aspx") to go to a new page, but how do I open that page in a new window? So I will have 2 pages open,, the original page, and the page I opened. thanx in advance ...more >>

Anyone know a good tutorial for..
Posted by Bonzol at 6/7/2006 8:13:46 PM
VB.NET 2003, 1.1, Web Application Hey there, I'm looking to add a login function to my page using a database, does anyone know any good tutorials for this? ...more >>

comboboxcolumn in datagridview
Posted by noob at 6/7/2006 7:03:01 PM
Hi I am having issues with a combobox column in a datagridview with virtual mode enabled. I am binding data to both the datagrid and combobox from an sql database. Everything works fine however when I select an item in the combobox and move onto the next row, the item dissapears from the co...more >>

a vb.net equivalent to the sql IN function?
Posted by hazz at 6/7/2006 6:22:14 PM
I need to get a set of comma delimited client ids from a config file to test against while running through my main processing loop. If a given clientid matches any of the ids in the list, I don't want to send email to them. What is the best way to code that? I was thinking of the idea of ...more >>

Create a TreeView to display content like Explorer
Posted by xaviero NO[at]SPAM gmail.com at 6/7/2006 6:01:03 PM
I would would like to display the conent of the computer exactly like it is displayed in the Explorer window: Desktop -My Documents -My Computer -**Drives "A" through "Z"** -Shared Documents -My Network Places -Recycle Bin -**All Folders On Desktop** I know how to build th...more >>

Convert date to number of week
Posted by Manekurt at 6/7/2006 5:49:24 PM
Hello, does anyone knows how to convert a date, into a number of week of an year? for example mm/dd/yyyy 01/04/2006 convert to 1 (week number 1 of the year) Thanik you ...more >>

***vb 2003 y word***
Posted by Jose at 6/7/2006 5:04:14 PM
Hello. I have a word document vinculed with a .csv file. How open this document for merge with mi csv file from vb 2003? Thanks a lot. ...more >>



le nom 'vb6' n'est pas déclaré
Posted by Pascal at 6/7/2006 5:01:27 PM
bonjour vb2005 m'annonce : le nom 'vb6' n'est pas déclaré que dois je déclarer pour utliser VB6.SetItemData ? For lPointer = 0 To lCount VB6.SetItemData(Me.lstMots, lPointer, 0) '.SelectedItem (lpointer). Next merci http://www.scalpa.info ...more >>

UDF from VB.NET
Posted by Uri Dimant at 6/7/2006 4:43:12 PM
Hello I'd like to call UDF with parameter from vb.net that retruns datatable , any ideas? I have been already trying Public Function ExecuteUDFReturnDT(ByVal SPName As String, ByRef ParamArr As spParam()) As DataTable Dim cmd As New SqlCommand Dim dt As New DataTable Dim da As New ...more >>

datagridview, using calendar control selecting a date for column
Posted by Bob at 6/7/2006 4:31:01 PM
How do I show a calendar control or another appropriate control to pick a date and time for a cell in a column in a datagridview? Thanks for any help. Bob ...more >>

File Name Validator
Posted by Brahm at 6/7/2006 3:37:09 PM
Hi Folks, do you know a file name validator ? I am reading a text file and I am creating new files in runtime. In some cases it is found string with invalid characters so. I have errors. I was able to avoid the problem with this character "/" Is there anything peace of ...more >>

KB 915038 How to get the HOTFIX ??
Posted by Peter Stojkovic at 6/7/2006 3:35:06 PM
In KB 915038 there is mentioned a hotfix. How can I get this hotfix ???? msvb7.dll 8.0.50727.73 3,103,744 15-Feb-2006 03:32 x86 ...more >>

Autogenerated code disappear
Posted by Manekurt at 6/7/2006 3:19:33 PM
Hello, does anyone know why it may disappear the hidden autogenerated code? thank you ...more >>

Object-to-Relational Tool
Posted by sh at 6/7/2006 2:20:35 PM
I am working on a database project, and I'm trying to think "objectively". Are there any tools that will map my "objects" to relational tables? I'd prefer a freebie, or something faily low-cost to start off. Thanks for any assistance....more >>

Local Report with Object DataSource: BindingList in Table?
Posted by Pieter at 6/7/2006 1:31:57 PM
Hi, I'm using VB.NET 2005 with a Local Report, and I used an Object as DataSource. The problem is: this Objects contains a Generic List (MyArticles, Inherist from BindingList), which contains other objects (Articles). I want a list of these Articles to appear in a table in my report, but I...more >>

Function versus ReadOnly Property
Posted by eric.goforth NO[at]SPAM gmail.com at 6/7/2006 1:29:09 PM
Is there any reason to use: Private newPropertyValue As Integer Public ReadOnly Property MyProperty(ByRef MyParam as Integer) As Integer Get Return newPropertyValue End Get End Property instead of: Dim MyValue as Integer Public Function M...more >>

VB.NET Threading CPU Issue
Posted by Luc at 6/7/2006 11:49:43 AM
Hi, I am writing software to automate some testing. I have one main form to set up the tests, and once this is complete, I open 4 identical forms to monitor each different device that I am automating. Because there are many fast timers on each, I have placed each one of these forms in their ...more >>

Unmanaged C++ Void*
Posted by Frustrated at 6/7/2006 9:51:07 AM
I have a C++ DLL that I need to access from VB.NET. The function I am trying to call is declared like this: void* PASCAL iidc_lockdata( HIIDC, long frame = -1 ) This function returns a pointer to unsigned chars I am able to find the size of the array out. It is usually 128800 to use as ...more >>

Memory Manipulation
Posted by simchajoy2000 NO[at]SPAM yahoo.com at 6/7/2006 8:26:45 AM
Hi, I have found that sometimes and usually on an inconsistent basis, VB.NET projects will hold onto objects after I have disposed of them in code doing something like: object.close object = nothing A good example of this is an connection object to an Excel spreadsheet - even after disp...more >>

Use HideDragon to Quick hide window, the best Boss key!
Posted by dongdapeng8 NO[at]SPAM gmail.com at 6/7/2006 8:19:59 AM
HideDragon is powerful software that can hide the desktop windows rapidly. You can hide any windows on your desktop easily by clicking the mouse's left and right keys together (or use the hotkey).To resume these hidden windows whenever you like by re-clicking the mouse key (or hotkey), and those...more >>

Overload resolution failed
Posted by Kevin Burton at 6/7/2006 7:56:03 AM
I have a base (MustInherit/abstact) class that looks like: Public MustInherit Class BaseClass End Class Then I have three derived classes: Public Class DerivedA Inherits BaseClass End Class Public Class DerivedB Inherits BaseClass End Class Public Class DerivedC Inherits B...more >>

All I'm looking for is a simple answer to a simple question
Posted by pcnerd at 6/7/2006 7:47:02 AM
I originally asked this question in the "classic" VB forum. It occured to me after I had sent it that I sent it to the wrong forum. Anyway! Here's the situation. I have VB.NET 2005 Express Edition. I have a 19" LCD monitor with the resolution set at 1280 by 1024. I want to create a graphics...more >>

DataGrid Control
Posted by Peter Newman at 6/7/2006 6:58:02 AM
Im just toying with vb.net and am trying to find out howw things work. i have managed to come up with the following code that will access a table in a sql2005 server . what id like to do is populate 'DataGrid1' with the results can anybody explain how this is done STR_SQLQuery =...more >>

How do I use a class, when the class requires functions in the main form?
Posted by Bmack500 at 6/7/2006 6:32:07 AM
I'm using visual studio 2003. I have much of my code in my main form, called 'frmMain'. When I create a class to perform string ops and such, it sometimes needs to refer to functions in the main form. However, when I use "inherits frmMain" in the class, as soon as I try to build/run the pro...more >>

Trouble using System.Web.Mail
Posted by Terry Olsen at 6/7/2006 6:06:21 AM
When trying to send an email, I get the following exception. It says that the sender address is invalid, but it is perfectly valid. Any suggestions? Error sending email using mail1.us.ups.com To: aaa@ups.com;bbb@ups.com From: aaa@ups.com Bcc: aaa@ups.com ==================== System.Web.Htt...more >>

Error while file copying over network.
Posted by neeraj at 6/7/2006 5:39:09 AM
I have one Problem while File copying in ASP.net , When I trid to copy my file to other system on the same network I am getting the "Acces Denied" Error. Whereas I have have given all the permissions on the remote system's shared directory. Whereas I am able to copy the same file on my local sys...more >>

converting xml to ms excel using vb.net ?
Posted by renaissance1983 at 6/7/2006 3:45:31 AM
i need to convert xml file to ms excel worksheet using vb.net... ...more >>

How to connect to database
Posted by at 6/7/2006 2:09:58 AM
I created a database using vb express 2005 and now am trying to access it using a sql connection. Here is the connection string: ConnString = "Data Source= .\SQLEXPRESS;Initial Catalog = |Data Directory|\trail-db.mdf;Integrated Security=SSPI;Persist Security Info=True;" When I try to debug, it ...more >>

HelpCursor on ToolStripMenuItem
Posted by Sugan at 6/7/2006 12:06:03 AM
Hi all, I need to enable context sensitive help in my application. For this when user clicks on a menu item( "Whatis this"), i would change the cursor to a help cursor. I used system.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Help As this code did not help in changing ...more >>

How to Automatically Update UI When Data Changes
Posted by Charles Law at 6/7/2006 12:00:00 AM
Here's one that should probably have the sub-heading "I'm sure I asked this once before, but ...". Two users are both looking at the same data, from a database. One user changes the data and commits it. How does the other user get the updated view without polling for changes? Is there some ...more >>

Shortening my source.
Posted by Kardon Coupé at 6/7/2006 12:00:00 AM
Dear All, I've been advised by a friend of mind that in VB you can shorten your source (he doesn't know how to do it, it said someone told him), for example I could have 'Microsoft.DirectX.Direct3D' in my source alot, but he said I could, at the beginning on my source, define a short handle...more >>

Shell IE ?
Posted by Doug Bell at 6/7/2006 12:00:00 AM
Hi How can I use VB.Net Application to open IE and get it to display; 1. a JPEG image from a file? 2. a JPEG image held in memory? Any guidance appreciated, Doug ...more >>


DevelopmentNow Blog