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 > march 2007 > threads for friday march 16

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

new vb2005 apps wont load/initialize after upgrading hardware - he
Posted by Rich at 3/16/2007 11:29:10 PM
Hello, I just upgraded the motherboard and cpu on my computer (core2Duo). I also imaged the contents of my old harddrive to a new one(500g) - Windows XP sp2 (version2002). Everything appears fine, VS6 runs fine, VS2003 runs fine, but VS2005 won't load new projects. I can load old projec...more >>


problem with module
Posted by André at 3/16/2007 8:16:11 PM
Hi, I wrote this module in file "module.vb" and put it in App_Code of my asp.net application. Imports Microsoft.VisualBasic Public Module Mymodule Sub Main() MyFunction() End Sub Function MyFunction() Return "function in module" End Function End Modu...more >>

Receiving email in VB 2005
Posted by Martin at 3/16/2007 5:40:24 PM
Hi all, I can't find it. A long time ago I made in VB6 an alternative e-mail client, to receive and process e-mails. Now I need to do something similar, but of course in VB2005. I found a system.net.mail object, but it seems I can only send e-mails with this object. I need to receive e-mail...more >>

How to move a intptr in vb.net 2003
Posted by Robert Dufour at 3/16/2007 3:56:41 PM
As a simple example starting with a memory pointer location I need to do 10 operations, (like copying 10 values to an array for instance), then when that's done, move the pointer to the eleventh location so that I can then use the next ten values, etc Dim Ptr1 as IntPtr For x = 0 to 100 ...more >>

How can i turn off auto arrange icons?
Posted by Sofianos George at 3/16/2007 2:32:28 PM
How can i turn off auto arrange icons? ...more >>

Demo Software?
Posted by sstory at 3/16/2007 2:05:22 PM
Not a VB question, sorry.. Hope you will indulge me this once. I am looking for software to demo a VB app, as a Flash video, with audio. The Camtasia studio is about $399, does anyone know of something more affordable that does the same thing? TIA, Shane ...more >>

Make component aware of settings for target app?
Posted by teslar91 NO[at]SPAM hotmail.com at 3/16/2007 12:58:02 PM
I have a class library with a custom component (MyComponent). MyComponent requires several values to function properly. These will be different for each app it's used in; but for each app, these values will be the same for each instance of MyComponent. Is there any way I can define these va...more >>

Connection String with Crystal
Posted by pooba53 at 3/16/2007 12:40:50 PM
Posted this to vb.crystal and received no response. ---------------------------------------------------------------------------- I'm using VS 2003 and VB .NET along with the embedded version of Crystal Reports. When I build and deploy my application, the Access db that I use is stored in the dir...more >>



Auto Time Out
Posted by tclancey at 3/16/2007 12:37:42 PM
Hi all. I have a requirement to Auto Time Out an application after a certain amount on inactive time. If the user hasn't typed anything into the application, and hasn't clicked any control the app will close all open forms, apart from the main form and display the login. I'm OK with mos...more >>

Need Help Manipulating Strings (Remove/Replace)
Posted by pbd22 at 3/16/2007 11:54:36 AM
Hi. How Do I "UPDATE" a previously created string? I have a problem where an XML string created in an event handler fails because the string doesn't "UPDATE" each time the event hanlder fires, but "APPENDS", creating lots of repetition in the XML: Quote: XML Parsing Error: junk after docu...more >>

Send raw data to the printer
Posted by Iouri at 3/16/2007 10:47:33 AM
I have tried the code posted by Microsoft here http://support.microsoft.com/?scid=kb;EN-US;322090 It works fine in VS2003. But when I try the same code in VS2005 I am getting the following error PInvokeStackImbalance was detected Message: A call to PInvoke function 'WindowsApplication2!Wi...more >>

Disabling the enter key on a Web-form
Posted by almurph NO[at]SPAM altavista.com at 3/16/2007 9:56:21 AM
Hi everyone, You know the way pressing the return button inside a textbox in a Web form causes the page to be refreshed? Is there any way this can be disabled? Woudl appreciate any guidence on this one. Thanks, Al. ...more >>

Help creating a transparent screen lock like program
Posted by E C H (He of too much code) at 3/16/2007 9:43:53 AM
I am very weak in VB.NET, I am using VB.NET 2k5 Express. I have only created one program, and heck it was my first ;-) (URL below if it matters). I am trying to create a program that stays resident, and after a period of inactivity on the computer locks the screen, only it can't use the scre...more >>

DataBinding a TextBox to an Object
Posted by Dustin Davis at 3/16/2007 9:32:41 AM
I've been having problems with databinding. I've created a simple solution to emulate the problem I can't figure out. Basically, I have a TextBox bound to a property in an object. When the property is updated, how do I get the field to show the new value. I assumed that databinding would tak...more >>

vb.net - populate one listbox from another
Posted by lolly at 3/16/2007 5:30:06 AM
Hi all just wondering if any one has any idea on the following... I have two listboxes - one listbox populated from a database ListBox1.Items.Add(dr("NAME")) and the user can collect multiple items. The next listbox is populated from the selected items from Listbox1. I'm having troubl...more >>

Removing association between DataSet and XmlDataDocument
Posted by JD at 3/16/2007 4:32:53 AM
I have a DataGridView with a DataSet as DataSource. The user can update the contents of the DataGridView, and then click on a Save button to save the data to an XML file. When they click on Save, I call the subroutine below. The first time that I call it, it works fine. However, if the user ma...more >>

Dynamic Charts in Excel.
Posted by Jawad Rehman at 3/16/2007 4:02:02 AM
Hello everybody..... I have an excel file which is resided on server,there is some data on the cells .Now i want to generate dynamic graph on the basis of the data present in the excel file using ASP.NET. I have solution of this ,that i should use the Com component interop.microsoft.exc...more >>

Error while proccessing certificate.Load
Posted by balakrishnan.dinesh NO[at]SPAM gmail.com at 3/16/2007 3:26:03 AM
hi, Im getting a Error while importing a PFX using Certificate.Load method My code is VBscript const CAPICOM_KEY_STORAGE_EXPORTABLE=1 const CAPICOM_KEY_STORAGE_FLAG=1 const CAPICOM_KEY_STORAGE_DEFAULT=1 const CAPICOM_KEY_LOCATION=1 const CAPICOM_CURRENT_USER_KEY=1 Set st = Cr...more >>

VB.net, Combobox and keyboard function keys
Posted by Alam at 3/16/2007 3:09:55 AM
Hello All, Just couple of simple questions if someone can help: 1. I have a combobox and its properties are set as: Autocomplete mode = suggestappend Autocomplete source = List items Is there an event which will allow me to trap Value member detail when the user scrolling through the List item...more >>

Trouble getting timer tick to fire in Windows Service
Posted by Rico at 3/16/2007 2:18:11 AM
Hello, I'm trying run a process at regular intervals using a windows service. the problem is, the timer_tick event doesn't appear to be working. I've written the following code as a test; Public Class FileName Protected Overrides Sub OnStart(ByVal args() As String) Timer1.Interva...more >>

Create a DLL with VB.NET to use it in ASP pages
Posted by pons NO[at]SPAM rockit.it at 3/16/2007 1:56:37 AM
Hi, I have to make a DLL in Visual Studio using VB.NET, then I have to use it on a web application in ASP. This is my class: -------------------------------------------------------- Imports System Imports System.Net Imports System.IO Imports System.Text Imports System.Xml Imports System.D...more >>

Datagrid question
Posted by Q at 3/16/2007 12:00:00 AM
Hello to you all, Sorry for cross posting this question, but the other group is not that often visited as this one. Here's my question: I have an application with a datagrid. The user should only be able to update records in this datagrid. Additions should be impossible. I just can n...more >>

calling an event in code.
Posted by JDMils at 3/16/2007 12:00:00 AM
I have the following declaration: Private Sub CheckForInvalidData(ByVal Sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles _ tbTotalTests.Validating, _...more >>


DevelopmentNow Blog