| Subject | Date Asked | Expert |
|
| DataGridView with Combo | 8/4/2006 | Brandon 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 windows | 8/4/2006 | Brandon 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 control | 8/3/2006 | Brandon 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 Combo | 8/2/2006 | Brandon 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 workstation | 8/2/2006 | Brandon 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 ...
|
| DateTimePicker | 7/31/2006 | Brandon 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 error | 7/31/2006 | Syed 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)? ...
|
| hi | 7/29/2006 | Brandon 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 Bar | 7/28/2006 | Brandon 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/2006 | Brandon 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 sub | 7/22/2006 | Brandon 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 sub | 7/21/2006 | Brandon 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 ...
|
| Listboxes | 7/21/2006 | Syed 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 item | 7/20/2006 | Brandon 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-in | 7/10/2006 | Brandon 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.net | 7/10/2006 | Brandon 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 XML | 7/5/2006 | Brandon 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 XML | 7/4/2006 | Brandon 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.net | 6/30/2006 | Syed 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 Object | 6/13/2006 | Syed 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 question | 6/6/2006 | Syed 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 database | 6/4/2006 | Syed 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/2006 | Syed 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 string | 5/29/2006 | Syed 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 ...
|
| Datagrid | 5/25/2006 | Syed 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 function | 5/23/2006 | Syed 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 function | 5/23/2006 | Brandon 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.NET | 5/22/2006 | Syed 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 function | 5/19/2006 | Brandon 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 questionnaires | 5/17/2006 | Brandon 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 time | 5/15/2006 | Syed 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 Protection | 5/12/2006 | Syed 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 application | 5/10/2006 | Brandon 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 Protection | 5/10/2006 | Syed 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 questionnaires | 5/10/2006 | Brandon 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 question | 5/7/2006 | Brandon 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/2006 | Syed 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/flash | 5/5/2006 | Brandon 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.net | 5/1/2006 | Brandon 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 types | 4/20/2006 | Syed 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 ...
|