70-305 -deals with Developing and Implementing Web Applications with Microsoft Visual Basic .NET and Microsoft Visual Studio .NET 70-306 -deals with...
Not Understanding your loops. I dont think you need so many loops. Think something else. Ask numbers in one loop having count iterations. Check for each value...
I need to know why i am doing wrong. I need to calculate balance in the listbox it self pdblBalance = pdblCredit - pdblDebit + pdblCredit// this is not ...
i installed visual studio 2003 and i wanna try to open asp.net but i encounter an error that my asp.net should be in version 1.0 or higher how can i upgrade my...
Hi All, I have this problem with sending email through application. The application works fine in the sense that the mails are delivered to addresses. My...
HI I need to convert ms word tables into HTML format. These tables will have rows and columns merged and the same needs to be done while converting to HTML. ...
I'd like to make a full screen menu with an alphablended wallpaper and mouse-over buttons and everything. I'd like to make it as an active-x ocx control that I...
Hi I need to convert a tables in a ms word file to HTML tables. These tables in ms word will have rows and columns merged, the same to be done while converting...
Trying to move information from one workbook to another. Having a problem with finding the name of the worksheet. Worksheets are not in particular order. When...
if your in a single workbook and want to move from one sheet to another use Sheets("sheet2").Select if you have several workbooks and want to move around use...
Thanks for the quick reply. I'm tring to go from one workbook to another. The code below I've tried. Windows("book1.xls").Activate ... Seems the name for the...
I hope this might be of atleast some help : Public g_ActiveWorkBookName As String 'set name of workbook g_ActiveWorkBookName = ThisWorkbook.Name ' can always...
I dont know what exactly you lookinf for but did you tried saving the word document having tables as html pages. ? the conversion would be done implicitly ....
Thank you for the responses and help. I think I have at least found where I am running into a problem. It seems to be either in the variable declaration or set...
Hi All, I need help. I have been working on this project for a month. It involves a FormView and a DataGrid connected to an SQL server. The code is written...
Hi Friends How we can add function description in vb.net 2002 / 2003. I have a class, class has some public function and properties. I want to add some...
Hi Friends, I want to filter our data on following cataria DataView1.RowFilter = "name not like '[a-z]%' " But it throw error, where am i wrong?, Is any other...
hi every one! I Need Infrasgistic vesion for ASP.Net 1.1. if any one have or just tell me path where i can find it. on infragistic own site. old version is...
Sorry, Rahul, Try this: dataView1.RowFilter WHERE [name] not like '[a-z]%' I know the SQL part is right; I am not sure about the dataView1.RowFilter. I'm...
Using .net How to change the owner of the window to the desktop of the current user's login? I want to write a windows service which starts many exes which...
Hi friends, I developed the system with VB & Sql server 2000. Its an multiuser system. Some clients have windows 95 or 98 also. I want to send mail through VB....
There is a mail component to SQL server 2000 that uses an extended stored procedure to send mail through an exchange server. xp_sendmail is the stored...
I have the following code to create data set and load to combo box... I am wandering if anyone knows how to display blank in combo box drop down. da.Fill(ds,...
Hi, How to send mail from VB using Microsoft Outlook object<http://codeitbetter.co.nr/vb6/code/Vb6Code00041.html> ___________________ CS ... -- visit my...
Set the SelectedIndex to -1 or you can go to your database and set a empty row as the first row in the table.... cboDistricNamt.SelectedIndex = -1 Latina...