20,284 Topics
| |
Hey, I've got a datagrid which depending on fields that the user fills in will display some data, code is : [code] Try queryList = LSet(queryList, Len(queryList) - 4) 'TODO: This line of code loads data into the 'VbDataBaseDataSet.marketingDB' table. You can move, or remove it, as needed. Me.MarketingDBTableAdapter.Fill(Me.VbDataBaseDataSet.marketingDB) Dim … | |
Hi Friends, I will using Log4net in my application, Log file is created fine. Now i need to create folder based on the month and year I mean This month is July i need to create a folder name is Jul2010 then start next month automatlly create a folder for … | |
Hey team, i'm having a problem with this query, [code] "SELECT * FROM marketingDB WHERE company_name LIKE 'allied' & '*'" [/code] the program ive written runs fine and it doesnt show any problem with the query infact the exact same query works fine on access but when i put it … | |
NEED HELP~! Does anyone know how to import access data into sql server using vb.net? I want to create a openfiledialog and allow user to choose which access file to be imported into the server. Thank you so much~~ >.< PS. I am just a beginner of vb.net. So would … | |
Hello Everybody, I want my text box only accepts numbers and colon like 00:00 .The length should be limited to 5.Plese help as I stucked up with this............Thank You. CintoJose | |
Hi;; I have two pages; one is parent page and childpage(popup) in parent page i am passing three parameters to the child page..... in child page i have grid view to display the details according to the parameters passed;; till now it is fine;; now my problem is that... when … | |
I have a VB.net programming question i am loading values into a list box from the database in a form being used to edit a database record. the list populates fine using the following code. Protected Sub LoadCat() Dim myCommand As New SqlCommand Dim myReader As SqlDataReader = Nothing Dim … | |
How to check whether two tables in SQL are the same using vb.net? Would u mind giving me the code? Thank you so much!!! | |
Dear all, Q.No.1 1. I want to make a crystal report 2. It should have two datatimepicker 3. User select two diiferent dates and report must be run Q.No.2 1. How can i run a report when i pass a perametor from textbox. Please give me some Code thanks in … | |
I have a 150 page word file for work that i need to go through. What i would like to do is automate this since i rather not copy and paste all 150 pages. There are headings 1 2 and 3 in this file. Both Headings 2 and 3 may … | |
Can i set margins if so then please tell me how? I am using this code but pagesetup dilog does not effect the print. [CODE]With PageSetupDialog1 .PageSettings = PrintDocument1.DefaultPageSettings End With If PageSetupDialog1.ShowDialog = DialogResult.OK Then PrintDocument1.DefaultPageSettings = PageSetupDialog1.PageSettings PrintForm1.Print()[/CODE] | |
Hello friends, I know that on the Layout options of the DataGridView control that you can set the AutoSizeColumnsMode to "Fill". I noticed that the "Fill" setting is not available for the AutoSizeRowsMode. Does anybody know a workaround so that I can have all the rows automatically "fill" in the … | |
Hi, I am filling a datagridview with multiple columns from my oracle database. It has become necessary that I add a column with a checkbox. I figured this out. [icode] Dim cbPart As New DataGridViewCheckBoxColumn DataGridView1.Columns.Insert(1, cbPart) With cbPart .HeaderText = "PART" .Name = "Part" .DisplayIndex = 0 .Frozen = … | |
Hi friends, I want to create setup file of a desktop application using vb.net. How could i do it? Thanks in advance | |
So, I've wrote a program awhile ago that prints barcode labels. The old version needed the font to be installed in the fonts folder, but that made it a pain for people using the program for the first time, as the program would print the barcode label with a default … | |
Hi Guys! Is it possible to change the color of a button when you move your mouse onto the button? Like say before it was red and it can be changed to yellow? Anyone can help me with the code? Thank you! | |
Hi All, I hope you all would be fine i want to print 1. Only text 2. No controls should be appear in the print like textboxes etc. Thanks in advance. | |
hi Friends , i need the code which can give the audio file lenght in secs. i want to store it in database..... | |
Okay, I'm creating a webcam capture program that will take pictures and record video. The picture part works perfectly but I can't get the video part to work. No matter what I try it won't save the AVI file Heres my code [CODE] OOption Explicit On Imports System.Runtime.InteropServices Public Class … | |
hi all, Thanx in advance. I'm new to vb.net and doing application on dialing mode. How to dial a modem through Gsm? i have done dialing part but i don't known how to write events for receiving. Please guide me how to do it........ | |
Im looking to Delete a row of information in my datagrid, but also from my database. im not even really sure where to start. I want to use a button to do this. so that when i highlight a row, then click the button it brings up a message box … | |
I am trying to run my program to test it. Actually I am trying to run second form to see it that its working properly or not. But it shows me error. First time I got this error message "Exception of type 'System.OutOfMemoryException' was thrown" & second time I got … | |
Hi, I have an Outlook add-in that I started in VS 2010, and have no idea how to go about the following. The plugin should save the an email after you send it. I.e. after you create a new email and you click on the send button I would like … | |
Hi I am having a requirement in my project where User press '.' in his num pad and he wants the character ',' to be displayed (dats bcoz he is French User). I tried changing the e.KeyCode but it is a readonly property. Is there any other way to change … | |
Hi there, I have a question regarding datagridview in C#, when a form loads I have given the command to add a new row to the datagrid view , and in that datagridview there is a combobox and has items In it.when the form loads I want one item in … | |
I have a problem I dont know if you guys have experienced it before. I have searched but I cant seem to find a right solution. When I use this code to open a new form, My maskedtextbox on the new form can't allow the user user t enter any … | |
Im a doing a project using vb6.. How do i generate the data report for the project.. Your help will be much appreciated fourty. | |
Hi All, Am new to this area, it would great if any one help me on my request. I would like to retrieve each words co-ordiantes (x,y axis) from a jpg file, which is scanned hard copy. I know this can be done with the help of OCR sdk's. But … |
The End.