20,278 Topics

Member Avatar for
Member Avatar for selvaganapathy

Hi I am getting this error whenever running the DOT NET Applications. Any one help me to this problem. How can fix it.

Member Avatar for Reverend Jim
-1
711
Member Avatar for carlbutler7
Member Avatar for swathi sajja
Member Avatar for xxn5

how to Find emtpy foldder file and zero siz file and del thm. in vb.net how to find list of zero siz file in vb.net and del them.

Member Avatar for G_Waddell
-2
283
Member Avatar for pdmaduranga
Member Avatar for dr.maqbulur.rahman

I used VB6. Now I have shifted to vb10.For data manipulation adodc1.recordset.moveforst etc and adodc1.recordset.fields("xx"), or adodc1.recordset.eof etc were used. Could anybody give me the equivalent navigation process in VB10?

Member Avatar for G_Waddell
0
133
Member Avatar for priyamtheone

I have an MDI application containing an MdiParent form and few MdiChild forms. The MdiParent has a fixed MenuStrip, a fixed ToolStrip and a fixed StatusStrip. The MdiChild forms have one or more ToolStrips and a StatusStrip along with other controls in them. The ToolStrips and the StatusStrip of the …

0
246
Member Avatar for spac

Code the click event of the Play Game button to do the following i. Generate a random integer between 1 and 100 ii. Code a loop that will end when the user guesses the number or 10 guesses have failed to find the number. iii. Use an inputbox function so …

Member Avatar for Jamblaster
0
258
Member Avatar for gayzlein

hi all i want a program that allow me to import excel data into access database using vb.net knowing that the excel data contains duplicates and blanks.my table looks like this: Reference quantity unit_cost turnover once the data is imported, I want to perform calculations to calculate the cumulated turnover …

Member Avatar for gayzlein
0
2K
Member Avatar for Jamblaster

I am having a problem getting this code to work in deleting records from a database. The path to the database is correct and I have another couple of event handlers that work fine using this same datbase so I know that the path to the Db is good. Any …

Member Avatar for Jamblaster
0
176
Member Avatar for Mr.M

Hi Dw I'm trying to detect the harmful files, this is the well known harmful files so now I've tried to scan and delete the files but the problems are: (1)- After the file has been removed (deleted) after a few more minutes it appears again so what I want …

Member Avatar for Mr.M
0
118
Member Avatar for xxn5
Member Avatar for Mr.M
-2
284
Member Avatar for xxn5
Member Avatar for Reverend Jim
-1
496
Member Avatar for Daneil

Dim MoveRight As Boolean Dim MoveRight As Boolean Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick PictureBox1.Image = Image.FromFile("C:\Users\Adrian\Documents\but\Butterfly1.gif") Timer2.Enabled = True Timer1.Enabled = False End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage End Sub Private Sub …

Member Avatar for EMMAGERALD
0
177
Member Avatar for robert.knighton.79

I'm trying to take input keypress event and move the text it would have typed into a textbox to a different textbox instead. textBox1 has a length limit of 1 so I dont actually have to prevent text going into the box because the textbox is already full I just …

Member Avatar for robert.knighton.79
0
3K
Member Avatar for razree

Hi guys, I'm stucked at (as it seems to me) a very strange problem. I have a listview on my form to which a list of users is populated from mssql db. In the same table but different column I have user_id. I have a textbox and a textbox_keydown control …

Member Avatar for razree
0
1K
Member Avatar for Lakshiya

Hi all. I need your help. Iam using vb.net 2010 and sql server 2008. I have problem when retrieve multiple rows from database to datagridview. All rows have the same identification number(patient registration number).I have problem in loop to show the all rows in datagridview. Pleaase anyone knows that help …

Member Avatar for ccccc
0
1K
Member Avatar for mavtcr

Friends , I am new to VB.NET I know something about VisualBasics 6 Ther we have a DataManager to create new database and tables. In VB.NET Is ther any facility to create new database and tables,If so how to use it?If there is no such facility how can we make …

Member Avatar for Reverend Jim
0
260
Member Avatar for amber.vandenack.5

I need to make a program that will tell me if the user entered a vaild email, phone number, or social security number. This is what I have so far. Sub Main() Dim num As String num = InputBox("Please enter your number!!!", "What was the number you were given?") MsgBox(num) …

Member Avatar for Jamblaster
0
173
Member Avatar for Deegirl

Good morning community, Can someone help me with the IndexOf method to reverse the name: Don Paul to Paul, D

Member Avatar for Deegirl
0
268
Member Avatar for robert.knighton.79

I have a form with 30 textboxes which I want to function as if they are only 1 textbox. # **Why Do this instead of substring the string from a single textbox?** # I have them separated for user friendly appearance purposes. Each box is paired with a checkbox so …

Member Avatar for robert.knighton.79
0
211
Member Avatar for mike.perakis

Dear all, I cant get any result set back, when issuing a simple Select statement through VB.Net and MYSql Data provider, to a Mysql table searching for some Greek string. MYSQL Ver:5.5.32 VB.Net: 2010 Do I need any special encoding for the passed string? Thanx

Member Avatar for G_Waddell
0
292
Member Avatar for xxn5

how to free memory in vb.net when system show low memory. how to relese memory in vb.net from system memory dump in vb.net .

Member Avatar for tinstaafl
-1
2K
Member Avatar for Deegirl

Good morning, Can someone help me code this instruction? Place student names and final mark into two, one- dimensional arrays. One array will be of String (for names), the other will be an array for real numbers (for marks) Use the array to display: Class Average The number of students …

Member Avatar for Begginnerdev
0
166
Member Avatar for rossanakaw

how to bind a datagridview to a list of custom classes?? pls i need your help guys, tnx.

Member Avatar for anthonydaly
0
132
Member Avatar for G_Waddell

Greetings People of Daniweb! I'm trying to add a 3rd party control to a form and I'm getting the following message: **Unable to cast object of type 'Microsoft.Practices.EnterpriseLibrary.Data.Configuration.SyntheticConfigSettings' to type 'Microsoft.Practices.EnterpriseLibrary.Data.Configuration.ContainerModel.ITypeRegistrationsProvider' ** Does anyone have any idea why this could happen? Any searches I tried on google brings back nothing …

Member Avatar for G_Waddell
0
207
Member Avatar for robert.knighton.79

I tried using a solution to a very similar question here but it doesnt work for large files like the one I'm using. http://www.daniweb.com/software-development/vbnet/threads/320160/visual-basic-reading-text-file-into-array The code from that question: Dim OpenAnswerFile As New OpenFileDialog Dim strFileName() As String '// String Array. Dim tempStr As String = "" '// temp String …

Member Avatar for Reverend Jim
0
4K
Member Avatar for edogg23
Member Avatar for edogg23
0
154
Member Avatar for twigan1015

I have 7 textbox entries and I would like to add them to a listbox and when I close my application it would save them, I have the code for the 7 texboxes and everything like that has been done, but I just dont know how to add multiple textboxs …

Member Avatar for tdeath
0
2K
Member Avatar for MaddTechwf

I have created an uninstall list that is populated when a form loads. I want to add the ability to right click on the item and have an uninstall option. Below is the code that I'm using to show my Uninstall Manager so far. [CODE] Private Sub UninstallMgr_Load(ByVal sender As …

Member Avatar for callofcyandic
0
172

The End.