20,284 Topics

Member Avatar for
Member Avatar for andrewktmeikle

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 …

0
85
Member Avatar for sganandhsg

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 …

Member Avatar for sganandhsg
0
78
Member Avatar for yapaarachchi
0
39
Member Avatar for andrewktmeikle

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 …

Member Avatar for andrewktmeikle
0
140
Member Avatar for sophie_kiu

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 …

Member Avatar for Oxiegen
0
3K
Member Avatar for cintojose

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

Member Avatar for Teme64
0
99
Member Avatar for dlrahul

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 …

0
30
Member Avatar for wesley.groves

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 …

Member Avatar for rohand
0
173
Member Avatar for sophie_kiu

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!!!

Member Avatar for sophie_kiu
0
69
Member Avatar for Naveed_786

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 …

Member Avatar for finito
0
88
Member Avatar for Austinjs0102

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 …

Member Avatar for Austinjs0102
0
188
Member Avatar for Naveed_786

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]

Member Avatar for Oxiegen
0
123
Member Avatar for arelius

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 …

Member Avatar for arelius
0
930
Member Avatar for starlight849

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 = …

Member Avatar for starlight849
0
183
Member Avatar for yogesh21

Hi friends, I want to create setup file of a desktop application using vb.net. How could i do it? Thanks in advance

Member Avatar for pkpbmt
1
131
Member Avatar for freemanirl

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 …

Member Avatar for Oxiegen
0
358
Member Avatar for trpsjt2008
Member Avatar for TrueVb.NetNoob

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!

Member Avatar for vik2321
0
134
Member Avatar for Naveed_786

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.

Member Avatar for Oxiegen
0
146
Member Avatar for pinakin33033

hi Friends , i need the code which can give the audio file lenght in secs. i want to store it in database.....

0
27
Member Avatar for danielair

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 …

Member Avatar for Oxiegen
0
750
Member Avatar for M.rahul

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........

0
54
Member Avatar for NH1

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 …

Member Avatar for ious
0
374
Member Avatar for Kingcoder210

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 …

Member Avatar for fourty
0
139
Member Avatar for GrimR7529

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 …

Member Avatar for Teme64
0
112
Member Avatar for mhs.praveen

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 …

Member Avatar for mhs.praveen
0
89
Member Avatar for judithSampathwa

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 …

Member Avatar for nick.crane
0
95
Member Avatar for gsmdreams

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 …

Member Avatar for Patplays852
0
46
Member Avatar for fourty

Im a doing a project using vb6.. How do i generate the data report for the project.. Your help will be much appreciated fourty.

Member Avatar for Naveed_786
0
96
Member Avatar for Nanda1605

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 …

Member Avatar for jugosoft
0
71

The End.