20,284 Topics
| |
I have started the familiarize myself with WPF and have gotten stuck with the ListView I've read a lot of documentation about binding and I can't seem to find how to populate a ListView programmatically. It seems like a lot of work to create the binding and classes, etc, just … | |
I can't round up the decimal number using VB.net i'm using Cint(12.5) this must be 13 but it is not so i try Round(12.5) but still not roundup what do i do? please help!!! | |
HELP!! I try to bind a textbox to a datatable but i cant.. I checked if the datatable is filled (it includes the results of a sql query)and it s ok.. i can depict the result in a combo box but not in textbox. I wait for only one result … | |
hi, here i tried the coding for splitting the document file from the merged file,, i found the problem that a new document is not creating [CODE] Dim str1 As String = TextBox1.Text Dim str2 As String = str1.Replace("[", "") & str1.Replace("]", "") Dim filename As Object = "f:\" & … | |
I have a field of Issue date which takes the date of that very day when i fire the query now I want that field of Return Date in my data base should take the date while adding 14days to it? How do i do that? | |
Hello.. I have a datagridview.. It is unbound to any database and has 2 columns.. 1 is item name and other is amount/expense, incurred.. I want the total of expense incurred be displayed in the textbox on button click ie adding the numbers in amount column.. I tried something like … | |
Hello, Dear memebers, when I'm trying to delete and update my bindingnavigator it shows me following error. Update requires a valid DeleteCommand when passed DataRow collection with deleted rows. I dont whats going wrong following is the code to update my binding navigator Me.Validate() Me.TableAdapterManager.UpdateAll(Me.myDataSet) Me.myBindingSource.EndEdit() Plz i need ur … | |
hi! can some one give me a code for exporting listview data to excel? thanks | |
When I open my form that contains a DataViewGrid the first row is always automatically highlighted in blue showing that it is selected. If I use Me.DataGridView.ClearSelection() the highlighting disappears and the row "appears" to be unselected but when I check with Me.DataGridView.CurrentRow.Index the value returned indicates that the row … | |
Hello Daniweb, I am writing a program to execute the command prompt command "getmac /v >> MACLIST.txt" using a Visual Basic form, including: 2 buttons(getmac and filter the text file) , 2 textboxes (alternate text file name and user name), and two radiobuttons (default text file name or custom name). … | |
I have 2 arrays. One is an array of images other an array of numbers. The images are card faces, (Card(i)), the integers are the corresponding values of the cards (Value(i)). I want to associate the card face with a corresponding value. However, everytime I do what I think is … | |
Guys I have been asking about this for quite a long time. I need to create a program that can capture video and image. The program is very simple, it just have a screen and a button labeled "Capture". When I click capture, it will capture the image and save … | |
I'm implementing Direct Deposits for our clients, but i would like advice on how to keep it from getting it to the wrong hands. I manage our information through our MySQL Database in a dedicated server. I would like to keep this information as secure as possible. That information should … | |
NEED HELP~! I want to create a openfiledialog and allow user to choose which exel file to be imported into the server but this error keep coming "ODBC--connection to '{SQL Server}'TGT102 failed". Thank you so much~~ PS. I am just a beginner of vb.net. So would u pls tell me … | |
I am trying to create a a splash screen... I have attached the image file..please have a look.. the splash screen performs a diagnostic procedure and displayed the results in a multi-line label.. I have used another thread to write msgs as results in label.. and its working as it … | |
I wrote a program that does rudimentary tile mapping based on reading in information from a "map file" and drawing the map on screen. I need it to be drawn in a scrollable window so it doesnt matter how big the grid is defined in the map file. I have … | |
I have used the Process.start function to open an Excel file as shown in the code Process.Start("report.xlsx") and it works perfectly well. My question is can this function be used to open a particular worksheet called Report1 in the report.xlsx file. If so what would the code be. I have … | |
Hi, Am using Visual studio 2005 with MS Access. I have a Datagridview with a date column in format 11/23/2011(Month/Date/Year). Now i want to know how 'search criteria based on particular month and date'. For Example if select 'Nov' as a month from combobox and click on search button, only … | |
Hi, I am developing a VB net application with lots of TextBox. I need to call a module everytime any of the textbox gets focus. I dont want to write code in every textbox gotfocus event, but a generic code which will call the module everytime any textbox gets focus. … | |
[CODE]Module Module1 Sub Main() System.Console.Writeline{"this is my program"} System.Console.ReadLine{} End Sub End Module[/CODE] this is my code am getting an error saying that Error 1 Expression expected. Error 2 Method arguments must be enclosed in parentheses. Error 3 Expression expected. Error 4 Method arguments must be enclosed in parentheses. | |
[CODE]<img src="/images/skip/en.png" alt="Skip" height="39" id="skip">[/CODE] I tried this code: [CODE] Dim theElementCollection As HtmlElementCollection = Bot.Document.GetElementsByTagName("img") For Each curElement As HtmlElement In theElementCollection Dim controlName As String = curElement.GetAttribute("name").ToString controlName = "skip" curElement.InvokeMember("click")[/CODE] So pretty much I need to click the image to pass to the next page. | |
Hi everyone! Why does it seem that no one is giving an effort for this concern. I know that the code is long but could anyone please shed some light for me here. I need to create a program that captures video and images using either a built-in camera on … | |
Hello! i want to add CUSTOMER NAME in this code how to view each customer datewise report plz help me.. | |
Hello everybody, I NEED HELP, I am new to VB and need to create invoice...... Here is my problem.. I created table named "tb_sale" using ms access 2007, it has 5 columns (date, product, qty, price, total) I created a listview which has same columns with tb_sale (date, product, qty, … | |
Can anyone tell how can i modify my object at run time? I have a form containing two panels; textbox, picturebox, and a label are in the panel1 where as panel2 is likely to be the user screen.. User drag the textbox from panel1 to panel2 and it is added … | |
Hello, I would like to get message, or true result when DataSet get new record (new row). But, I always get message as "no". Button1 is add new record [CODE]Me.Table1BindingSource.AddNew() [/CODE] Button2 is save a record [CODE] Me.Validate() Me.Table1BindingSource.EndEdit() Me.TableAdapterManager.UpdateAll(Me.TestDataSet) [/CODE] Button3 should return "Yes" as new record has been … | |
Dear All, Here is my code i am generating data grid manually on run time i want to assign a default value to REC ST column, i have tried but it didn't assign default value please view the last line of this peace of code. [CODE] Dim clmprno As New … | |
I am trying to write a somewhat generic class for calculating rolling averages. It's generic in the sense that it needs to support all numeric datatypes (int, double, short and long). I'm a bit of a noobie to VB.Net and have run into a problem: [code] Public Class RollingAverage(Of T) … | |
I want to pass an image in a picture box to a certain position on an image list. Does anyone know how to this? I tried: [code=vbnet]imagelist1.images(0)=picturebox1.image[/code] But this is read only, what can i use to accomplish this? Thanks, NtheN | |
Hello Everyone, I wrote a function that allows me to retrieve data from a single SQL table and place it into 3 datagridviews. The problem i am having is as follows: * Whenever a user types something in anyone of the datagridviews that information is recorded in all three of … |
The End.