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 > january 2007 > threads for wednesday january 17

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

Get index in datagridview
Posted by Andy at 1/17/2007 10:34:11 PM
Hi I have an app with an datagrid that I will replace with a datagridview controll. In the old datagrid I could use datagrid.currentrowIndex to get the index value for the current datarow, but I'm not able to find anything similar for the datagridview controll. Any ideas, anyone? /A...more >>


'Faking' input to QBasic program with VB .NET 2005 application
Posted by Danielle at 1/17/2007 8:12:05 PM
All - I was asked to work on a project converting some weather data. The program used to convert the data is written in Quick Basic. I am only a novice programmer and while I can see from the .BAS file what is happening, I don't have the time bandwidth to rewrite the program in VB ..NET and I...more >>

Binary Reader and DBF files
Posted by JimmyKoolPantz at 1/17/2007 7:35:03 PM
I came across a problem today and I'm not sure what my possible solutions are. The situation is I am am using a binary reader to read data from a filestream. The data source is a dbf file. While reading characters from the stream, I came across a problem. The problem is "Prot=E9G=E9" . Thi...more >>

Text cast to Date & Time
Posted by Cor Ligthert [MVP] at 1/17/2007 6:29:07 PM
Outlook time correction ...more >>

intellisense and icons
Posted by Andy at 1/17/2007 6:20:53 PM
Hi When I program in VB intellisense is active and displays the variouse methods, properties etc. I wonder if there are any overview over what icons represent what. I know which represent properties, but are a bit uncertain about methods etc. /A. ...more >>

references in runtime
Posted by Miguel Atilio Godoy Gadea at 1/17/2007 5:45:47 PM
Can I add reference of a dll in runtime ?? how? ...more >>

Can't run 2005 app from network
Posted by cj at 1/17/2007 4:36:45 PM
A year or so ago I had this problem with a vb 2003 app that it gave me an error "Application attempted to perform an operation not allowed by the security policy......." I had to go in to "control panel/administrative tools/microsoft .net framework 1.1 wizards" and adjust the .net securi...more >>

date from different countries
Posted by Darin at 1/17/2007 3:54:05 PM
I have an applicatoin that works 100% perfect when running on a machine setup for English (United States), but when I change it to Spanish (Mexico), the dates start giving me fits. THe reason is USA is mm/dd/yyyy and mexico is dd/mm/yyyy. So, with the computer set to mexico, any standard CDATE...more >>



Determining user that caused FileSystemWatcher event to fire within a Windows Service
Posted by chad.poplawski NO[at]SPAM gmail.com at 1/17/2007 1:02:01 PM
Hi All, I'm working on a Windows Service that uses FileSystemWatcher components to capture and log data when certain actions (such as files being deleted) take place in the file system. I am trying to figure out how to obtain the WindowsIdentity (User Name, Login, etc.) of the actual user th...more >>

Connection String Issues
Posted by Sankalp at 1/17/2007 11:42:41 AM
Currently I am developing a advanced VB 2005 application which Display's/ Updates / (Creates New ) data in the database. For this purpose I am using databound controls, i.e. all my datagrids, textboxes etc.. are directly linked to the database. Initially I was using My.Settings.Con ,( where C...more >>

writing multi dimensional array of data to text file
Posted by daqmaneng NO[at]SPAM yahoo.com at 1/17/2007 11:07:34 AM
does anyone have any suggestions for writing a two dimensional array of data to a file. Currently, I have an array of 5 columns, with 1000 elements per array. I know that I can use a for next loop to go through each data point in the array and use the streamwriter class for each individual dat...more >>

Reading a single field from table
Posted by John at 1/17/2007 10:35:29 AM
Hi I need to run a simple select query like below; select field1 from mytable where id = 123 and assign the returned value of field1 to a variable. What is an easy way to do this? Thanks Regards ...more >>

Reference form objects from a module
Posted by Andy.I at 1/17/2007 9:52:48 AM
Hi I have a module where I put all my functions and sub procedures. How do I from the module best reference objects in other forms? I have a form with a datagrid, and in the module I have a procedure to fill this datagrid. The datagrid is called dg, the form frmEventMain Would this be ...more >>

API Call to determine value of ComboBox?
Posted by Joe HM at 1/17/2007 9:17:42 AM
Hello - I just figured out how to determine the window title and classes of running applications via the EnumWindows() and GetWindowTitle() API calls (thanks to some very knowledgeable people in this group). My next question is now whether there is a call so I can determine the value of a C...more >>

Changing path of web service?
Posted by Smokey Grindle at 1/17/2007 8:48:30 AM
I have 2 report services servers one for development and one for live, I need to add a reference to the web service in my app, but during development it has to refernce development server, during deployment it has to reference what ever the end user calls their server, can you change the refer...more >>

How to write this simple program? converting to numbers???
Posted by Ron at 1/17/2007 8:25:01 AM
I want to calculate the surface area of a sphere from an inputed radius with option strict on. I guess I am not converting something correctly. Here is what I am doing: I have a textbox txtradius that I enter a radius into. I then have a lable that I want the surface area to be displayed i...more >>

Menu (web) - Setting colors on the drop down menu
Posted by empire5 at 1/17/2007 7:19:01 AM
Menu: foo bar foo1 bar1 foo2 bar2 foo3 bar3 When the mouse is over foo2 I want foo2 to be green. When the mouse is over bar2 I want bar2 it to be orange. How can I do this? I know about setting the hover properties which works if I wan...more >>

Startup from Module instead from form? (VS2005)
Posted by mtczx232 NO[at]SPAM yahoo.com at 1/17/2007 12:32:19 AM
I not see on project property way to config my project to start from module or class instead from Form on Win App? ...more >>

Databse problem
Posted by explode at 1/17/2007 12:21:21 AM
Can anybody help me? I'm trying to make a program that uses a access database with VB 2005.I made one base table and by draging it to a form (form2) VB made tableadapter,dataset,bindingsource and tablenavigator. When I try to change te name of the Table1 by clicking on a button on form1 and open...more >>

Error Reporting
Posted by Melissa Nava at 1/17/2007 12:11:44 AM
Have an online system. Currently the error reporting either does: A) logs to a file, B) databases errors or C) emails individual errors. Also have phone notifications for systematically calling the programmer on-call. There are pros and cons of each, of course... I'm curious as to what othe...more >>


DevelopmentNow Blog