Ok I am pretty new to .net and need some help. I have created a Web App that does most everything I need it to do. But my interface is horrid. What are some...
Hey There, I've been using Visual Basic 6 for a while and got Visual Basic .Net which hasn't seemed too hard to learn. However I was looking forward to putting...
... ex. ... before ... Microsoft's ... http://www.devasp.net http://www.dotnet247.com http://www.vbcity.net Go there and find something .. because i wont...
Dear Moderator and All Visual Basic Official Friends, Pls stop this SPAM mails regarding JOBS ( for eg. dear_zuby ). B'coz our group is purely dedicated to VB,...
That would be great if it were that easy. Forward the offending email to abuse@... and tell them what happened. To take it a step futher, look at the...
can anyone tell me how to add records into the exchange server 2000 thru programatically using vb6.0 any code/information on dlls/objects welcome thanks...
Hi, I have one problem regarding read/write text file. The problem is mentioned below: I want to update the text file, i.e., for example Before updation of...
hey can anyone help me with a database problem in vg.net. i have a main witha button that opens a second form where the user inputs the info and click on a ok...
Dear Members, I was wondering if anyone could help. Basically I have conceived a project where you have an image/picture control and I want to display certain...
I have thought about making some simple slot program a few times, but I have never got it off the ground. I have been experimenting lately with a VU meter...
Okay, I spent an hour or so last night having a look at what you got me thinking about... Since this group doesn't allow attachments and at the time I tried to...
Just thought I would add, I just tested it on a Celeron 500 (a laptop) and got an itteration of 0.05 secs and run times varying between 20.5 to 21.25 secs. The...
Hi, I need to know what the differences are between using the following four storage methods: stream socket, file system, ADO.NET with database, and XML, and...
Hi Anybody knows how to FTP a file (get and put) using VB.net. With Regards Karthick V HCL Peripherals(A unit of HCL Infosystems) 299, Arcot Road, Vadapalani, ...
... You can't save the application as a file, you can only save documents. Try replacing the SaveAs call with: WordApp.ActiveDocument.SaveAs "C:\brown.doc" ...
Maybe your code should have "WordApp.Documents.New" instead of WordApp.Documents.Add ... From: jmnathan234 [mailto:yoda234@...] Sent: Monday, May 12,...
Option Strict Off Option Explicit On Module FTPModule Public Const MAX_PATH As Short = 260 Public Const INTERNET_FLAG_RELOAD As Integer = &H80000000 Public...
Thanks, I have done a similar thing. However, I was looking at implementing FTP using the .net framework. That's where I got stuck With Regards Karthick V HCL...
From my research it is not implemented in the framework and must be called from dll's Theron ... From: Karthick V To: visualbasic_official@yahoogroups.com Cc:...
Is it possible to access controls on a form from another module in the same project as the form? ie. Change the value of a text box Thanks for any help. Johnny...
Yes... it is but you need a reference to the form object to do so. Theron ... From: John J. Stenson To: visualbasic_official@yahoogroups.com Sent: Tuesday, May...
I'm getting a runtime error on my code. It involved this: ' get the info and show it in the txtbox Do While Not rs.EOF txtDisplay.Text = txtDisplay.Text & _ ...
If any of the column which u are concatenating is having null values in that u might be getting that error. So change your code to this and see whether it...