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 > december 2005 > threads for thursday december 15

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

how to prepare for MCSD 070-300 VB.NET
Posted by Patrick at 12/15/2005 11:30:15 PM
I'd like to sit for the subject exam. But have no idea what i need to study or how to prepare for this. Please can someone point me in the right direction. ...more >>


Excel Solver macro from VB.NET
Posted by Mr.Doubt at 12/15/2005 8:09:38 PM
I'm trying to run a Excel macro, which uses SOLVER.XLA Add-In, in VB.NET application. When the macro is executed I get the following error message "Solver: An unexpected internal error occured, or available memeory was exhausted" Any suggestions whats causing this error and how...more >>

Move to the next control
Posted by Vayse at 12/15/2005 5:45:31 PM
I have a text box, with a command button next to it. When the button is pressed, I want to run some code. Then pass the focus to the next control. How do I do this? Thanks Vayse ...more >>

vs2005 - Parent-Child dataGridViews with tableAdapters
Posted by dbuchanan at 12/15/2005 5:21:55 PM
Hello, How do I create a Parent-Child relationship between two DataGridView in a form using TableAdapters. The two tables already have a relationship defined in the dataset. What event do I use to update the child dgv? The RowEnter event? Thank you, dbuchanan ...more >>

Crystal report tricks
Posted by Bill Nguyen at 12/15/2005 5:17:43 PM
I posted this on public.vb.crystal forum and nobody cares to answer. Since CR is part of .NEt, I hope i can get better help her: VB.NET 2003 Reports created in CR10 Using CrystalReportViewer, I would like 1. to print directly to a default printer without prompting which printer to select ...more >>

Creating a Service with Systray icon
Posted by Rotzooi at 12/15/2005 5:07:51 PM
Hi, I have a VB.NET Service application that's running fine under the Local System account. But for configuration purposes I don't want to be dependent on modifying the registry manually or using an seperate application (like I do now). I want to implement a system tray icon when someone...more >>

easy way of creating update commands?
Posted by cj at 12/15/2005 4:35:37 PM
I have lots of tables to copy from one server to another. The new tables have been created to match the old ones. I practiced with one table. I created the select command (select * from tableA) and Visual Basic .NET created an update command--very long as there are a lot of fields. Now...more >>

Crystal problem
Posted by Chubbly Geezer at 12/15/2005 3:39:14 PM
I have the following function in my app (2005) that should be loading a form and populating a crystal report contained by a crystal report viewer. I have an almost identical piece of code in another app (.Net) which works fine, however when this report is displayed it contains no data. Can't...more >>



What a nightmare
Posted by Chris Botha at 12/15/2005 2:26:16 PM
Hi, I have to get the signal strength of the connected wireless access point on an XP box. I can iterate through all wireless access points and get the signal strength of each (using WMI), but don't know which is the connected one. I don't care if I have to use any language including C++ or an...more >>

catch key press
Posted by iwdu15 at 12/15/2005 1:41:21 PM
hi, i was wondering how my form could catch key press events when its like minimized to the system tray? thanks -- -iwdu15...more >>

problem binding filtered dataview to listbox
Posted by s at 12/15/2005 1:38:02 PM
I'm able to get the count of the filtered rows of the dataview from within the With view block, but when I try to bind the view to the listbox I don't get any count within the With lb1 block and my listbox is empty. What's wrong? Dim view As New DataView(tbl) With view ...more >>

What can Express Edition 2005 NOT do?
Posted by johnb41 at 12/15/2005 1:31:48 PM
I'm hesitant to work with the new 2005 Express Edition because i don't know when i'll run into something that it doesn't support. Is there somewhere that I can see a list of things that the Express Edition has omitted (vs the pay version), so i can potentially work around them? Or if I can't ...more >>

Button in dynamic table cell
Posted by Owen Mortensen at 12/15/2005 1:16:47 PM
How do I get a dynamically created button control to appear in a dynamically created table cell? Here's what I've tried: While objDR1.Read() Dim objButton As New Button Dim objTableRow As New TableRow Dim objTableCell As New TableCell Dim strURL As String = objDR1("URL").To...more >>

empty a collection list
Posted by pmelanso NO[at]SPAM uwaterloo.ca at 12/15/2005 12:32:10 PM
hello, I am working on a web application and would like to empty a list collection when the browser window closes... is there any way to do this??? Pam ...more >>

Does anyone look at online help?
Posted by tomb at 12/15/2005 12:19:21 PM
Some of these questions make it pretty clear the questioner hasn't even made an attempt at finding the answer in the help pages that come with ..Net. What is UP WITH THAT!?!?!? Tom...more >>

How to make a copy of a datatable?
Posted by cj at 12/15/2005 12:03:45 PM
If I have a dataset with a datatable and I want to make a copy of this in a different datatable. I've tried: MyDt = MyDs.Tables("testTable") Problem is when I later in code issue: MyDt.clear() it clears MyDs.Tables("testTable") also. How can this be accomplished?...more >>

mutlithreading between different classes
Posted by PCI at 12/15/2005 11:52:01 AM
A Thread is created on form1 that addresses a sub in another class. When attempting to invoke and sub on the main form I recieve an error about a Window Handler needing to be created first. Is there a special procedure that is needed to be followed while invoking a sub from and different ...more >>

Edit a Forms control data from a second thread?
Posted by JamesB at 12/15/2005 11:50:01 AM
Hello I have a form which contains a Listview control that is filled with data as the program runs. This all works fine, but I want to also then do a certain process on this data at the same time. Because of the way the data is received into the control (from an event out of my hands) my p...more >>

search with probability
Posted by Pieter at 12/15/2005 11:33:11 AM
Hi, I need some search system, that will return me the records with in indicator of probability. This is for a VB.NET 2005 application with a SQL Server 2000 DataBase. I have a table with different columns in which the user needs to search. In case the search-routine finds the exact match ...more >>

XP Themed controls on a Tab Control?
Posted by Terry Olsen at 12/15/2005 10:43:58 AM
I decided to use a tab control for my latest project. On Windows XP, the tab control itself is themed (tabs are themed), but the tab pages and any controls I put on them are not themed (except for textboxes). Done a bit of googling on this subject and I found a lot of people with the same prob...more >>

OT: Debugger is killing process when done
Posted by Marina at 12/15/2005 10:31:52 AM
It seems that in VS 2005 after attaching to a process and then stopping the debugger, the process being debugged is killed. Why? And how do I stop this from happening? I couldn't find an option for this. In 2003 the debugger would simply detach from the process. ...more >>

Code only executes on Step Through
Posted by Mike Barrett at 12/15/2005 9:03:31 AM
I am using VS 2005, VB.Net. I need to connect to an FTP server and get a list of files. I plundered the following code from MSDN to accomplish this task. It was part of a class called clsFTP: Public Function GetFileList(ByVal sMask As String) As String() Dim cSocket As Socket ...more >>

Replacement for Resume Next
Posted by Michael at 12/15/2005 8:55:04 AM
Hi Everyone, I'm using VS 2005 now and would like to know if .Net has a replacement for the Resume Next clause. I would like to do something like the following: On Error Resume Next value = My.Computer.FileSystem.GetDirectories(Path & "\" & tbl.Name ) if value.Count > ...more >>

SendKeys - Beep - Suppress
Posted by Michael Maes at 12/15/2005 7:09:02 AM
Hello, I'm invoking successive SendKeys.SendWait("{BACKSPACE}") SendKeys.SendWait("{DELETE}") in a loop. The issue is that it causes a Beep on every Pass. Setting the 'Handled = True' on the Control does prevent the Beep, but messes-up the Backspace-Delete Seque...more >>

Custom Form Properties
Posted by Wade at 12/15/2005 5:49:02 AM
I am having an issue where I have added a custom property to one of my forms, but it doesn't show up in the properties window in the designer window. The property shows up in the intellisense in the code window. Any help is appreciated....more >>

How to use Getprinter in vb.net ?
Posted by Zok at 12/15/2005 5:29:41 AM
hello all, I am trying for a long time now to get the information of a printer. i have such cide in vb6 but having troubles moving it into vb.net. can anyone please provide me with the correct vb.net declaration (there are so many different versions online) and example of how to use th...more >>

one instance of application on network
Posted by Sam at 12/15/2005 4:12:53 AM
Hi, I know how to allow only one instance of my .net application per user using mutex. Now I want to warn the user if someone else is using the application on another pc of the same network. How can I implement that ? Thanks ...more >>

Capture user changing screen res
Posted by mabond at 12/15/2005 3:55:02 AM
Hi My app requires to run in a minumum of 1024 X 768. There are plenty of users who for their own comfort continue to work in 800 X 600. The res is checked at start-up. If res is less than required the user will be advised and the app will close. I need to take care of the user who chan...more >>

Problem with Inherited user control
Posted by vitgi NO[at]SPAM libero.it at 12/15/2005 2:30:46 AM
Hi, I created a base user control and then I crated others user controls inheretited from the base one. Any times I modifying my base user control (it's enough add a variable!) I have same errors in the user controls Inherited, seem this controls lose same declarations of variables or methods: ...more >>

Reference Embedded WAV file
Posted by AC at 12/15/2005 12:40:31 AM
I am able to add a WAV file to the VB.NET project. BuildAction = Content (properties window) How do I reference the embedded WAV file so it's part of the EXE when compiled ? I'm trying to avoid the : rc = PlaySound(FileName, 0, SND_NOWAIT) scenerio. I'd prefer to use the wav file much like...more >>

Datagrid Column Text
Posted by Li Pang at 12/15/2005 12:21:02 AM
Hi, I created a datagrid with several columns, one has text align right, however, the last letter of the column head is hard to see. I tried to add some spaces but they are supressed at the run time, I want to know how to add some spaces at the end of the head text, or is it possible to set...more >>


DevelopmentNow Blog