AllExperts > Experts 
Search      

VB.NET

Volunteer
Answers to thousands of questions
 Home · More Questions · Question Library  · Free Encyclopedia ·
More VB.NET Answers
Question Library

Ask a question about VB.NET
Volunteer
Experts of the Month
Expert Login

Awards

About Us
Tell friends
Link to Us
Disclaimer

 
 
 
About Syed Rizwan Muhammad Rizvi
(Top Expert on this page)

Expertise
I can answers questions regarding web based and desktop based programming in VB.Net. Which can include SOAP, XML, Custom Controls, COM Interoperability etc.

Experience
Have been working in this specific area for last 2 years previously I was a VB 6 Developer with experties in other languages as well. Total 10 years of programming experience.

   

You are here:  Experts > Computing/Technology > Basic > VB.NET

SubjectDate AskedExpert

DataGridView with Combo8/4/2006Brandon Drake
  Q: Again Hari Here. Just i want to know how to get the left and top of the cell ( I think i will give ...
  A: Hari Kumar, I have never had to do this so I am not sure EXACTLY how to do it but I can give you ...
Resizing external windows8/4/2006Brandon Drake
  Q: I'm working on an "helper" application. When load/run this application, then I would like this form ...
  A: Aubrey, I think Norton Commander uses a "Splitter" control that is available in the tool box. You ...
page setup dialogue control8/3/2006Brandon Drake
  Q: How can I modify the page setup dialogue control-through inheritance? Or should I even try? ...
  A: Mark, First, you can't inherit the page setup dialog because it is marked "Not Inheritable". I ...
DataGridView with Combo8/2/2006Brandon Drake
  Q: I am Hari Kumar. I am facing one problem in Datagridview of VB.NET 2005. Can u help me. Problem 1: ...
  A: Hari Kumar, I think what you will want to do is create a ComboBox outside of the DataGrid. When ...
about running the program on workstation8/2/2006Brandon Drake
  Q: im arnold from philippines,im a bit beginner to VB.NET and i had a difficulty in deploying my ...
  A: Arnold, The first thing I would suspect is that your machine with Windows 2000 does not have the ...
DateTimePicker7/31/2006Brandon Drake
  Q: I'm using the DateTimePicker and I set the default date to: "DateTimePicker1.Value = New ...
  A: Tony, In order to change the format of the date that is displayed you need to set the "Format" ...
XML WebServices through SOAP error7/31/2006Syed Rizwan Muhammad Rizvi
  Q: After enabling the GET and POST Protocol it now generates the proxy file. There are two matters now: ...
  A: does the proxy contain references to all required namespaces for data manipulation (System.Data)? ...
hi7/29/2006Brandon Drake
  Q: i have to know how to set a progress bar in vb.net with timer control interval
  A: Edwin, A timer control has a tick event. The tick event occurs every x milliseconds where x is the ...
Progress Bar7/28/2006Brandon Drake
  Q: How can we have the progress bar in operation before the initial form starts? I mean i want the ...
  A: Bibek, You could make a form with a progress bar on it and make that your start-up form. That form ...
what is ASP.NET and VB.NET?7/26/2006Brandon Drake
  Q: Iam planning to join a course in .net, a institute in my locality offers both asp.net and vb.net. ...
  A: Sam, The two languages, ASP.net and VB.net, are used to do two completely different things. ...
Multiple visual changes to form in one sub7/22/2006Brandon Drake
  Q: Ok that explains what I'm seeing. Thank you. If I could ask you one more question then on delays. ...
  A: Naimah, There is no easy way to pause while IN a sub. The Timer control is used to run a piece of ...
Multiple visual changes to form in one sub7/21/2006Brandon Drake
  Q: Hey Brandon, I'm trying to change the background color of an image box repeatedly by just clicking ...
  A: Naimah, First, when a Sub executes, it executes line by line, as fast as the processor can do ...
Listboxes7/21/2006Syed Rizwan Muhammad Rizvi
  Q: I’m starting to learn VB.net and am trying to move items from listbox1 to listbox2 when you double ...
  A: on the double click event of listbox1 type: Listbox2.Items.Add(listbox1.selectedItem) ...
Combobox adding item7/20/2006Brandon Drake
  Q: "When I write in Microsoft Visual basic.net combobox1.Items.Add(TextBox1.Text) it adds an item to ...
  A: Khalil, First, when you use the Add() method at runtime the changes to a combo box are not supposed ...
Office XP Add-in7/10/2006Brandon Drake
  Q: I was wondering how to add a button to MS Word tool bar or to create a new tool bar with a button in ...
  A: Danny, Go to Tools->Customize and select the tab "Toolbars". Click the "New" button and type in a ...
Error in VB.net7/10/2006Brandon Drake
  Q: I'm working with code at the minute which I keep getting the following error, but dont know how to ...
  A: Amanda, I think what has happened is that you declared the variable x twice. Something like: Dim ...
VB.NET and XML7/5/2006Brandon Drake
  Q: I'm new to vb.net but am trying to extract data and save it in .xml format, the answer you gave to ...
  A: Amanda, The filter is the code that allows the file dialog to show only xml documents, or word ...
VB.NET and XML7/4/2006Brandon Drake
  Q: I'm new to vb.net but am trying to extract data and save it in .xml format, the answer you gave to ...
  A: Amanda, The "objMyAddresses" is a DataSet which should be in the toolbox (where the buttons, ...
multi-threaded xml posts in vb.net6/30/2006Syed Rizwan Muhammad Rizvi
  Q: I'm trying to port a project for work into multi-threading in hopes to make it faster, however the ...
  A: You cant send more than strings at a time, but you can devise some way to send all the data ...
VB.net Object6/13/2006Syed Rizwan Muhammad Rizvi
  Q: Goodmorning! I want to set and read from a Label or TextBox the value, but the name of this object ...
  A: dim tmpCtrl as Control dim tmpLabel as Label dim tmpTextBox as textbox for each tmpCtrl in ...
Another question6/6/2006Syed Rizwan Muhammad Rizvi
  Q: I have another question for you. My project requires me now to add an additional GridView to the one ...
  A: Rather than what you are doing I would simply add a column au_id in GridView1 as the first column ...
Deployment with MS SQL database6/4/2006Syed Rizwan Muhammad Rizvi
  Q: assalamualaikum! Dear Sir, I'm working upon a project in which I need to enter some initial data ...
  A: SQL Server needs to installed on client machine or as a sep. server at client side to run the ...
VB.NET Project (some code to help)6/2/2006Syed Rizwan Muhammad Rizvi
  Q: I set AutoPostBack to true, but upon execution of the program got the following error(I got the ...
  A: you cant modify the signature of the DropDown's SelectedIndex change event. The header for the ...
Parsing information out of a string5/29/2006Syed Rizwan Muhammad Rizvi
  Q: If I was to put the output of the first and last name into a 2 dimensonal array and the age into a 1 ...
  A: I suggest that you create a type in VB e.g. Type Person FirstName as string SecondName as ...
Datagrid5/25/2006Syed Rizwan Muhammad Rizvi
  Q: I want to customize datagrid so that when i click on it ,a full row be selected . thanks Babak ...
  A: First of all the the row has to be selected for that you can use the select button or set the row to ...
boolean function5/23/2006Syed Rizwan Muhammad Rizvi
  Q: still have doubt..Thanks.. If Not ValidateData() Then Return so you mean - if Not [False] , then ...
  A: the If condition expects a boolean value to perform its task consider the following eg. if true ...
boolean function5/23/2006Brandon Drake
  Q: still have doubt..Thanks.. If Not ValidateData() Then Return so you mean - if Not [False] , ...
  A: callisto, Sorry I clicked a wrong button and sent you another message--I can answer your question. ...
VB.NET5/22/2006Syed Rizwan Muhammad Rizvi
  Q: how do i link my VB.NET application to a excel and word spreadsheet? hers my code: Try ...
  A: Your code looks fine, this might help: Dim x As New Excel.Application Dim ...
boolean function5/19/2006Brandon Drake
  Q: Need your explaination to understand the following Boolean function. Thanks in advance. ...
  A: Callisto. 1) You may be confused by this variable name "DataInValid". The variable is set to True ...
Fill in the blanks questionnaires5/17/2006Brandon Drake
  Q: unfortunately I am still struggling. My questionnaire now loads up a text file but is doing little ...
  A: Richard, You could read from the file as someone submits answers. So you read the file and get a ...
My.Computer.Network.DownloadFile hangs a long time5/15/2006Syed Rizwan Muhammad Rizvi
  Q: I have the following code in VB.NET: Dim t As DateTime t = Now ...
  A: I hope you are not on Wireless LAN, seems more like a network problem to me than coding problem, it ...
CD Copy Protection5/12/2006Syed Rizwan Muhammad Rizvi
  Q: Thats True Sir But I Have to Make CD such that using this CD no Registration is Required and Even ...
  A: one way can be that you create your CDs with a special track which can only be understood by your ...
Disable copy paste to secure application5/10/2006Brandon Drake
  Q: I'm new in programming. I want to know how can I disable copy paste option in a way that no one ...
  A: Adeel, I don't think you can stop anybody from copying your software. There are other things you ...
CD Copy Protection5/10/2006Syed Rizwan Muhammad Rizvi
  Q: I Want to Make CD Copy Protection, by this no one can use software without using my cd. to prevent ...
  A: the pirates copy the CD with Protection :) so there is no point in thinking like that. Good ways of ...
Fill in the blanks questionnaires5/10/2006Brandon Drake
  Q: I am trying to create a questionnaire in VB.net that could be used by someone to loads up a ...
  A: Richard, Well you could start by making an array of questions, and an array of answers that would ...
Visual basic code question5/7/2006Brandon Drake
  Q: I've been trying to figure out the coding to calculate the commissions for a sales team after they ...
  A: Loretta, You will probably want to use a "Select Case" to determine the sales and then get the ...
ASP.Net File Access.5/6/2006Syed Rizwan Muhammad Rizvi
  Q: I have an area of a website which users must login to access. I wish to display a client image for ...
  A: HTTP response supports multiple mime-types within a response. You can change the response header ...
VB.NET/flash5/5/2006Brandon Drake
  Q: (my english is not very fluent but i will try to be clear) software : microsoft visual basic 2005 ...
  A: Zouh, I have never used flash in VB. I searched the internet though and found some documents that ...
regarding vb.net5/1/2006Brandon Drake
  Q: Very very sorry for asking you such a silly question. I have 3 years exp in vb and now I would like ...
  A: senthilkumar K S, VB.Net 2005 is the latest version of visual basic. If you have not downloaded it ...
utf7, utf8 file types4/20/2006Syed Rizwan Muhammad Rizvi
  Q: How can you determine what type of encoding is inside a seemingly ascii file. I get files with ...
  A: + sign normally replaces a space in URL encoding, I propose u replace + sign with space and things ...

Page:  Previous  | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10  |  Next      All


Questions by
Active Experts:
Syed Rizwan Muhammad Rizvi  

     
About Us | Advertise on This Site | User Agreement | Privacy Policy | Kids' Privacy Policy | Help
Copyright  © 2008 About, Inc. About and About.com are registered trademarks of About, Inc. The About logo is a trademark of About, Inc. All rights reserved.