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 > recent posts

RE: Problem with Framework
Posted by Jay at 4/22/2008 6:43:34 PM
I wasn't using the SQL Server Mobile Edition at all and ran into this same issue. I uninstalled the SQL Server Mobile Edition from add/remove programs and it appears to have fixed the issue for me. I'm hoping it doesn't affect anything else, but it was better than my alternative which was a comple...more >>


im dumb with this using 2007 excel need help with how to with command box
Posted by erci at 3/31/2008 6:46:48 PM
I am useing a user form with loads of information to add to the spreadsheet. Specific question is what is the coding or way to set up command buttons to insert numbers (like telephone #'s ) into a field ( perhaps text box that) that I can link to my spread sheet? any help would be greatly appreciat...more >>

how to build queries without programming...just customizing
Posted by Nelson at 2/26/2008 2:17:07 PM
I want to make queries with differents criteria (columns,sums) without programming, just customizing. do you know any tool. From http://www.developmentnow.com/g/38_2007_11_0_0_0/dotnet-languages-vb.htm Posted via DevelopmentNow.com Groups http://www.developmentnow.com...more >>

Application.OpenForms equivalent in VB 2003
Posted by Dabi Sardà at 2/13/2008 9:01:35 AM
Hi, In VB6 I remember I could iterate through all open forms using the Application.Forms collection. In VB 2005 there is the Application.OpenForms collection. But I have not been able to find any equivalent in VB 2003. Anyone know of a better alternative than maintaining a manual collect...more >>

RE: deploy prerequisite program with application - problem
Posted by Nick at 2/6/2008 10:57:16 PM
Hey Rich ... Never mind. I see it now. Thanks for the post. Nick From http://www.developmentnow.com/g/38_2006_10_0_0_839405/deploy-prerequisite-program-with-application--problem.htm Posted via DevelopmentNow.com Groups http://www.developmentnow.com...more >>

Re: Wizard control advise
Posted by Yury Averkiev at 2/6/2008 7:40:48 PM
We have been using Actipro Wizard in our SmartCode VNC Manager (www.s-code.com) for about three years now. The wizard control works really well and we don't really have any complaints about it PS: with use Wizard for .Net 2.0 version , they also have WPF version. Regards, Yury "John" ...more >>

Repeating graph in VB.net 2005 Report viewer
Posted by Steve at 2/6/2008 5:54:32 PM
Hi ALl Using VB.net 2005 to create reports using MS Report Viewer I create a .rdlc file with a graph component on it I pass it a data table consisting of each product sold and the sum(qty) When the number of products gets greater than approx 40, the graph is bunched up and looks terrib...more >>

Re: Instance object directly to disk not to memory
Posted by Stephany Young at 2/6/2008 2:02:51 PM
I think it's time to put things in perspective. It would appear that you are looking for a magic bullet, but, at the same time, hamstringing yourself by ruling out the most obvious mechanisms. In addition, you are not giving us much to go on, in that you are continually referring to these ...more >>



how to declare a button
Posted by Tony WONG at 2/6/2008 1:18:13 PM
i write the following program to detect workstation ON or OFF but i do not know how to paste the parameter from Timer1_Tick to pingwork it comes to error in these lines -- WorkName Private Sub pingwork(ByVal WorkIP, ByVal WorkName) Dim WorkName As New Button Could you teach me...more >>

DefaultValue attribute for a property with an enum type
Posted by Johnny Jörgensen at 2/6/2008 12:22:27 PM
Does anybody know how to correctly specify the defaultvalue attribute for a property whose type is an enum. Example: Public Enum TestValues Value1=1 Value2=2 End Enum <DefaultValue(TestValues.Value1)> _ Public Property TestValue() As TestValues 'Get and set here End Propert...more >>

Re: Using Object Oriented Programming to revolutionize physics?
Posted by Andrew Morton at 2/6/2008 10:25:20 AM
I think you'd be better off with spaghetti code to simulate a teenager- then you can have really twisted code that won't do what it's told, and you can't figure out why, and it won't tell you :-) Andrew ...more >>

Re: Prevent change or edit data using bindingsource
Posted by Cor Ligthert[MVP] at 2/6/2008 7:02:10 AM
\\\ theControl.enabled = false /// .. >...more >>

Re: How to convert FILE:///<PATH> to just <PATH>, using built-in classes.
Posted by Cor Ligthert[MVP] at 2/6/2008 6:59:14 AM
Andrew, You can hava a look at the uri, however I would just do \\\ mystring = mystring.tolower.replace(file:///,"") /// Cor...more >>

Re: Locating record on form by key
Posted by Cor Ligthert[MVP] at 2/6/2008 6:54:41 AM
John, In vb 2008 you have more possibilities for what you did, however for sure you can find it in the underlying dataset or dbml class. But you have to access the underlying instanced class (object), whatever it is. Cor "John" <John@nospam.infovis.co.uk> schreef in bericht news:...more >>

Re: .net framework 1.1 application takes very long time running on VISTA
Posted by Cor Ligthert[MVP] at 2/6/2008 6:49:46 AM
>This program is a Visual Studio .NET 2003 application, I can not build >development environment on VISTA, so I can not run debug mode on >VISTA. Official, however you can, but if there are problems, then you are on your own so it is not advised to do (including by me). But in this case,...more >>

Re: Adding to a collection in Net vs VB6 ...
Posted by Cor Ligthert[MVP] at 2/6/2008 6:41:11 AM
Mike, In VB6 you have one collection (which is as well in VB for Net and not in C#). However most of us here have the opinion that it is the only thing that should be as possible avoided from the Net namespace Microsoft.VisualBasic (this is a true part of Net). In .Net there are endless ...more >>

Re: Using values in non-databound listboxes
Posted by Cor Ligthert[MVP] at 2/6/2008 6:32:16 AM
Scott, Why can you not use a dataview with a rowfilter to solve your problem. Cor...more >>

Re: Object scope issue...
Posted by Cor Ligthert[MVP] at 2/6/2008 6:30:01 AM
Brad, In addition to Scott his message, as you are programming OOP then first try to set things in the methode itself, then globaly in a class and as last in a module. Setting it in a module means that it is forever in the main part of your program, globaly means that it is forever in yo...more >>

Re: Encoding E-Mail - System.Net vs System.Web
Posted by Cor Ligthert[MVP] at 2/6/2008 6:23:30 AM
Ed, As long as you use true ASCII (the first 7 bits of every code page), then you will only have problems if the other side is expecting not the basic 26 characters of most West European languages (in upper and lower) characters and modern Arabian cifers. However then never sent your messa...more >>

Re: DefaultValue attribute for a property with an enum type
Posted by rowe_newsgroups at 2/6/2008 4:26:50 AM
On Feb 6, 6:22 am, "Johnny J=F6rgensen" <j...@altcom.se> wrote: > Does anybody know how to correctly specify the defaultvalue attribute for = a > property whose type is an enum. > > Example: > > Public Enum TestValues > Value1=3D1 > Value2=3D2 > End Enum > > <DefaultValue(TestValue...more >>

Re: detecting other a window
Posted by rowe_newsgroups at 2/6/2008 4:25:21 AM
> ///////// > Imports System.Runtime.Interop > ///////// err... I mean ///////// Imports System.Runtime.InteropServices ///////// Thanks, Seth Rowe ...more >>

Re: detecting other a window
Posted by rowe_newsgroups at 2/6/2008 4:24:33 AM
On Feb 6, 5:30 am, kimiraikkonen <kimiraikkone...@gmail.com> wrote: > On Feb 5, 2:24 pm, rowe_newsgroups <rowe_em...@yahoo.com> wrote: > > > > > On Feb 5, 4:43 am, shawrie <neil.s...@sanderson.com> wrote: > > > > Hi > > > > i am currently having problems automating our fax software. Basica...more >>

VB.Net Interop Classes with Namespace
Posted by Sai Prakash at 2/6/2008 2:44:10 AM
Hi All, Is it possible to define a vb.net interop usercontrol class within a namespace For Eg. Namespace MyNameSpace <InterfaceType(ComInterfaceType.InterfaceIsIDispatch)> Public Interface _MyNameSpace Function connected() As String End Interface <ClassInterface(ClassInt...more >>

Re: Adding to a collection in Net vs VB6 ...
Posted by kimiraikkonen at 2/6/2008 2:36:45 AM
With .NET 3.5 Linq queries were added as feature. Maybe you can benefit: Linq to objects is used for your object (string): http://www.hookedonlinq.com/LINQtoObjects.ashx...more >>

Re: detecting other a window
Posted by kimiraikkonen at 2/6/2008 2:30:24 AM
On Feb 5, 2:24 pm, rowe_newsgroups <rowe_em...@yahoo.com> wrote: > On Feb 5, 4:43 am, shawrie <neil.s...@sanderson.com> wrote: > > > Hi > > > i am currently having problems automating our fax software. Basically > > when faxing a html document the print dialog window comes up. > > Microsoft ...more >>

Re: how to declare a button
Posted by kimiraikkonen at 2/6/2008 2:22:35 AM
On Feb 6, 7:18 am, "Tony WONG" <x...@netvigator.com> wrote: > i write the following program to detect workstation ON or OFF > > but i do not know how to paste the parameter from Timer1_Tick to pingwork > > it comes to error in these lines -- WorkName > Private Sub pingwork(ByVal WorkIP, By...more >>

Re: Instance object directly to disk not to memory
Posted by Spam Catcher at 2/6/2008 2:16:37 AM
thomas.w@live.com.au wrote in news:9fba1a8e-1cc7-408d-80fd-9cedd53fe427 @m34g2000hsb.googlegroups.com: > Thanks but I'm really trying only to use a .net forms app with no > other application dependencies. The query data also come from non MS > DBMS's which will make syncronisation too complex...more >>

Re: Pressing an "external" button
Posted by Thijs at 2/6/2008 1:35:17 AM
Thanks, stupid I didn=B4t see it before. Thijs > Look at the answer to the post "detecting other a window" a few messages a= go. > The same approach is necessary....more >>

Using Object Oriented Programming to revolutionize physics?
Posted by Michael Helland at 2/6/2008 12:55:16 AM
Hello everyone, I've got an abstract idea for ya. It sort of follows some of the ideas that Leibniz had: http://en.wikipedia.org/wiki/Leibniz#Information_technology Imagine using an object in a program to depict some fundamental substance. The fundamental substance isn't an atom, or ...more >>

Re: Prevent change or edit data using bindingsource
Posted by sennopati at 2/6/2008 12:36:21 AM
1. thecontrol.enabled = false --> what this mean?? 2. myBindingSource.AllowEdit = False ===> Cannot assign value into allowedit, because this is a Readonly Property. does anyone can answer my question?...more >>


DevelopmentNow Blog