20,278 Topics

Member Avatar for
Member Avatar for q8_dreamy

hi i have textbox and i want to insert this text into access db but the field in db is number so i tried both functions val and cint to convert text to integer while iam inserting at the same time but i got error : Input string was not …

Member Avatar for Jx_Man
0
99
Member Avatar for q8_dreamy

Hi, if I connected access data base to vb form and I want to insert value of dropdown list(Items are yes and no) into the data base (field is type of Yes/No) what will be the insert statement?!

Member Avatar for Jx_Man
0
112
Member Avatar for tallguy64

Im useng visual basic to make a control program for a usb relay board This is the c# code that i know works [code] private void button1_ON_Click(object sender, EventArgs e) { serialPort1.Write(new byte[] { 0xFF, 0x01, 0x01 }, 0, 3); panel1.BackColor = Color.Lime; } [/code] or VB 6 [code] Private …

Member Avatar for Jx_Man
0
108
Member Avatar for kahaj

With the following code, the debugger keeps telling me "Too many arguments to 'Public Sub New()'. " What needs to be done w/ it? [code] ' create new object and store into Client array clients(count) = New Client(firstName(count), _ lastName(count), account(count), _ balance(count)) [/code] Also, it's letting me know that …

Member Avatar for kahaj
0
68
Member Avatar for ram12

Hi i'm trying to convert vb6 application to vb.net. In vb6 the arrays are declared as single dimension arrays and used as multi dimension. example: dim a() and used as redim a(,) But how the same is possible in vb.net. Please help me. Thanks in advance.

Member Avatar for waynespangler
0
84
Member Avatar for Mark@UKMB

On a button click how can i make text appear in a textbox For instance Click ButtonA input to Txtbox1 "test" The word test would then appear in the textbox. I'm sure this is easy but ya know!

Member Avatar for Jx_Man
0
192
Member Avatar for mcgarry101

Hi, I was on the forum yesterday asking for help with using command line parameters. As described I am new to vb.net programming, and I am stuck with what is probably a very simply problem. I am trying to create a vb.net program to which I will be passed parameters …

Member Avatar for mcgarry101
0
179
Member Avatar for seysmail

Hi everyone, I have a web page in my project which shows news and press releases of my client. I m showing the news page with headlines, pubdate etc. from a Rss Feed URL. I have used skmRss reader to read the data from the linke that returns Rss output. …

Member Avatar for seysmail
0
74
Member Avatar for ram12

Hi, i'm trying to convert vb6 application to vb.net. In vb6 the array is declared as single dimension and used as multi dimension. for example: dim a()

0
80
Member Avatar for toko

i have made a program which includes a webbrowser. here is the problem, whenever it has to load a java applet the program just freezes. im running vista sp1 with visual basic 2008 express. any help would be greately appriaciated ;)

0
64
Member Avatar for ninjaimp

I have a listview which is populated with values from a data base. What i am trying to do is select an item from the listview via a checkbox and then have that value displayed in a listbox. But everytime all that is displayed in the list box is: (Collection) …

Member Avatar for Jx_Man
0
122
Member Avatar for VisActualyBasic

Hi all, I have problem with Counting running sum. intDiff = days different between two dayTimePickers If I click btnOne this will change my dateTimePickerToday to next day and increase intDiff to 1 I want to use intDiff as counter when ever i check some checkboxes to count total of …

Member Avatar for VisActualyBasic
0
102
Member Avatar for charitha_sharma

Hello all i am deadly needed this please any one have idea let me know my requirement is i am having 4 client computer and one server my form1 have 10 buttons ( all client computer has the same form installed vb form on client side and database on server …

Member Avatar for ericstenson
0
84
Member Avatar for charitha_sharma

Hello all i am deadly needed this please any one have idea let me know my requirement is i am having 4 client computer and one server my form1 have 10 buttons ( all client computer has the same form installed vb form on client side and database on server …

0
55
Member Avatar for farifari

hi, Can anyone tell me how to retrieve data from one form to another in VB.net,,,???? Actually I have a form in which i have 5 values with labels and text boxes,I know I can edit n save them,, i have linked this through Data base but i want that …

Member Avatar for charitha_sharma
0
194
Member Avatar for namrata_k

Hi, Please replay me soon people!!! i have made my database in Ms-access and using vb.net for front end. My system is working fine with database stored in same pc of client(by giving path c:/.....). But i have to show my project using seperte server pc n client pc. Please …

Member Avatar for namrata_k
0
105
Member Avatar for farifari

Can any one tell me how to make a welcome screen after log in,,, i mean if i have login form,,,, username=abc password=123 after login, i want to get a welcome note , i mean a note or screen will come on which the name of ma program is written …

Member Avatar for Jx_Man
0
110
Member Avatar for farifari

hi ,, How can i make changes in EXe file after running....?????????? is it possible

Member Avatar for jbennet
0
66
Member Avatar for mafaisal

Hello, I am Using Vb.Net2005. Project is Desktop Application In Mdi Parent Form I Have 20 Toolstrip Menu Items. I am Developed in 1024 * 768 screen resolution. When we working that All Menu Item We can See. But we Work in 800 * 600 screen resolution Only 15 we …

Member Avatar for Jx_Man
0
71
Member Avatar for lech0030

Hello, I have this very simple batch file that contains one command: xsltproc -o output.html stylesheet.xsl input.xml When I double-click the batch file, everything works fine. However, the batch file doesn't work when I execute it from my vb.net application: [code=vb.net] Dim p As New System.Diagnostics.Process p.StartInfo.FileName = "[I]path[/I]\go.bat" p.Start() …

Member Avatar for Jx_Man
0
277
Member Avatar for adamjw3

Hi i have a very strange bug in my code somewhere. it is stopping the first image being displayed. i only noticed it just now and don't have the knowledge on how to fix it. it seems that the code in default2.aspx misses the first image tag and request on …

Member Avatar for Jx_Man
0
91
Member Avatar for Pja

I am using vb.net 2003 and sql server 2000 as backend. I would like to do searching that will receive several input from user (input from textbox,combobox and radio button) that will retrieve data from sql server and display the output in textboxes and picture box. I can do the …

Member Avatar for Jx_Man
0
125
Member Avatar for ninjaimp

Hi I have an if statement which checks if a value has been entered and if it hasnt it pops up with a message box and tells the user. Now if the if statement is in the same Sub as the code that is executing it works fine, but if …

Member Avatar for Jx_Man
0
247
Member Avatar for q8_dreamy

I want to insert values of check box list into access data base field (I want all values in ONE field!!!! of course seperate raws) the problem is when i run the inserting statement i got just the first value in the field I tried loops but it doesn't work …

Member Avatar for Jx_Man
0
73
Member Avatar for geetajlo

Yes i would like to print a list of patient from datagrid view, bt don't know the code ? Can any1 help me ?

0
67
Member Avatar for x38class

I am developing an app on XP which uses a 3rd party ocx > imageviewer2.ocx In development it works fine but program does not run when insatlled on a vista machine I presume it is because the ocx is not registered I can register it with regsvr32 in xp but …

Member Avatar for Henry Schubel
-1
134
Member Avatar for binoj_daniel

hi, I want to export data to Excel from Dataset and DataGrid and format the output excel file like "Auto Fit" for coulns, Bold headers and also control the Cells. Please dont suggest using Interop Calls. I understand that we can use the RenderControl to write to the [COLOR=#008000]htmltextwriter so …

Member Avatar for binoj_daniel
0
115
Member Avatar for q8_dreamy

Hi can any one help me please, How can I go to a control according to text of specific one for example if I have drop down list contains 2 items 'Yes' & 'No' I want to to go to textbox1 if answer is Yes and go to Textbox2 if …

Member Avatar for Jx_Man
0
123
Member Avatar for miss.A

I have to create an application that calculate parking garage fee by using VB.Net and use timepicker for time in and time out. For each hour it cost 3$ and it calculate minutes as 1\60. I start coding but I face problem with how can I calculate the fee and …

Member Avatar for miss.A
0
151
Member Avatar for mafaisal

-------------------------------------------------------------------------------- Hello Experts I am Using VB2005 I am Setting Back Ground Image for MdiForm But if we set the Layout of MDIForm RighttoleftLayout property is true then The Background image is not come when the system run, if RighttoleftLayout is False then no problem Project as in Arabic , …

0
76

The End.