516 Posted Topics

Member Avatar for kimjhian

you can show the browser in vb.net form but not sure .net form on browser.. What is the need to show form on browser? may be you can get something [URL="http://www.codeproject.com/KB/WPF/Winform-To-WPF.aspx?display=Print"]here[/URL]

Member Avatar for Pgmer
0
206
Member Avatar for khentz

Usually Module should contain the method or functions which can be used in all the forms of projects. Example: Error handler code, database connections etc..

Member Avatar for codeorder
0
2K
Member Avatar for dakaboguy

What is the issue or problem with above code? i mean whats not hapening? EDIT: have you declared txtmemo as textbox? and what is MsgBox(txtMo)? txtmemo.name? txtmemo.text?

Member Avatar for dakaboguy
0
751
Member Avatar for ts23944
Member Avatar for Pgmer

Hi All, I have webservice im having webmethod in that which returns Boolean value. Its retruning the correct output value only when the connection is pointing to localhost. Can any one please guide me? Thanks

-1
75
Member Avatar for Pgmer

Hi All, I have webservice which i having webmethod which returns boolean value. Its retruning the correct output value only when the connection is pointing to localhost. Can any one please guide me? Thanks

0
90
Member Avatar for shankarc2

you want evertying ready? What is ur idea behind the project? Do you have any forms and controls on which ur going to show the data?

Member Avatar for shankarc2
0
204
Member Avatar for jonoman
Member Avatar for deepanbecse
Member Avatar for Ehtesham Siddiq
Member Avatar for khentz

For that you need to bind ur listview with datasource, and in textchanged event of search textbox sort the datasource using dataview and again bind it to listview.

Member Avatar for aishapot
0
90
Member Avatar for rooneey10
Member Avatar for TIP.Synergy

What is the data type of strId and strId2 and why r u doing CInt(10) - 1 and CInt(4) - 1 As 10 and 4 are integer only. you need not to convert explicitly. you can directly give 0 to 9 and 0 to 3 in which line ur getting …

Member Avatar for Pgmer
0
702
Member Avatar for Ehtesham Siddiq

In get values of array you need to see if any extra white space which doesnt have any value.

Member Avatar for Zeth643
0
888
Member Avatar for mikejs

You are making the bindingSource1.DataSource = Nothing but not assigning to grid as source so the items are repeating. Either make the datasorce nothing and bind again, or clear the rows of grid before binding.

Member Avatar for Zeth643
0
152
Member Avatar for cypril
Member Avatar for Pgmer
0
93
Member Avatar for Ehtesham Siddiq

Before executing the Query i.e. cmd.ExecuteNonQuery() Get the commandstring i.e:strsql and paste it on ur SQL server and see whether the statement is formated properly or not.

Member Avatar for Ehtesham Siddiq
0
186
Member Avatar for Ehtesham Siddiq

When u click on delete button bind the second grid also with same dataset as firstform [CODE] If dr.HasRows Then While dr.Read DGVStudRecord.Rows.Add(dr(0), dr(1), dr(2), dr(3), dr(4), dr(5)) form2.grid.rows.add(dr(0), dr(1), dr(2), dr(3), dr(4), dr(5)) End While End If [/CODE]

Member Avatar for Ehtesham Siddiq
0
177
Member Avatar for rciprogrammer

Set the font you want in the prorties of control at design time. I just checked in VS2005 it worked for me.

Member Avatar for Pgmer
0
521
Member Avatar for Ehtesham Siddiq

Addrange method expects the array to be passed. Get all ur items in Array wich u want to add to combo. And pass the array in AddRange method... [CODE] Dim days() As String = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"} ComboBox1.Items.AddRange(days) [/CODE]

Member Avatar for Ehtesham Siddiq
0
2K
Member Avatar for amitpaliwal

Can you post some of ur code? Which database are u using? is Framework installed on the system where ur getting this error?

Member Avatar for Pgmer
0
16
Member Avatar for suemaina

[CODE] Dim pinnum As String = "1234" Dim pinentered As String = TextBox1.Text If pinentered = StrReverse(pinnum) Then MessageBox.Show("Please eneter the pin properly") ElseIf pinentered = pinnum Then MessageBox.Show("Correct pin") End If [/CODE] You need to get the pin u want to compare with into varioable pinnum here i took …

Member Avatar for suemaina
0
188
Member Avatar for mikejs
Member Avatar for karthi050390

[CODE] Try Dim cn As SqlConnection Dim strCnn As String = "Your data base connection string" cn = New SqlConnection(strCnn) cn.Open() Dim comm As New SqlCommand("Your sp or Command text to get the data from DB", cn) '' If ur using Sp then Commandtype= CommandType.StoredProcedure if 'is Text then comm.CommandType=CommandType.Text …

Member Avatar for Pgmer
0
233
Member Avatar for asdfgh@
Member Avatar for shivya jain

You want to use this function in all the forms? or in just one form? If all Create function in Module with Public member like Public Function auto_generate_id() as Integer ' After your code retrnuj the value Return J End function

Member Avatar for Unhnd_Exception
0
192
Member Avatar for mikejs

Yes you can save the content of file into database. And you can read the content back and display on controls.. Which data base are you using?

Member Avatar for mikejs
0
86
Member Avatar for Cally_Law

You mean to say User should be givin msgbox if he tries to add existing item? Are you showing the items on ur front end? you can use two aproaches here 1)If you are showing the items on listbox or grid just validate the new entry with these if exisit …

Member Avatar for ShahanDev
0
236
Member Avatar for donotsleep

Explain what you want clearly... Can someone please show me how to show my paypal balance in a textbox what we need to understand from this?

Member Avatar for donotsleep
0
69
Member Avatar for duder
Member Avatar for Pgmer
0
106
Member Avatar for ice_rock

open VS 2005 go to File->New->Project Select Windows. from templates select windows form application. and start designing ur project.. :)

Member Avatar for Pgmer
0
51
Member Avatar for mikejs
Member Avatar for mikejs
0
356
Member Avatar for khentz
Member Avatar for Pgmer
0
69
Member Avatar for mikejs

What will be selected text ur getting when only one item in textbox? Just take that value and try to run on database check to see if there are records for it.

Member Avatar for mikejs
0
175
Member Avatar for x2fair
Member Avatar for Pgmer
0
300
Member Avatar for daniells
Member Avatar for zela
Member Avatar for mikejs

Ur not using the join in proper way. Do u have Any relation between the two tables? Primary key and foreign key constraints?

Member Avatar for mikejs
0
141
Member Avatar for aldeene
Member Avatar for vijaybrar

Hi, Try something like this [CODE] Dim x As Integer Dim stri As String Dim int As Integer Dim str As Integer Dim spe As Integer stri = TextBox1.Text For x = 0 To stri.Length - 1 If IsNumeric(stri.Substring(x, 1)) = True Then int += 1 ElseIf IsNumeric(stri.Substring(x, 1)) = …

Member Avatar for Pgmer
0
109
Member Avatar for ougesh
Member Avatar for djjavo

Do you use any data base for your project? If yes then why cant you do it at the backend?

Member Avatar for djjavo
0
190
Member Avatar for khentz
Member Avatar for khentz
0
1K
Member Avatar for swathys

Have you set the timer.enabled=true? what is the time interval u have given ?

Member Avatar for swathys
0
135
Member Avatar for ryan311
Member Avatar for ryan311
0
116
Member Avatar for RenanLazarotto
Member Avatar for RenanLazarotto
0
155
Member Avatar for zhackon

I think you have posted in wrong forum. please post this thread in C++ forum there are guys who can help you.

Member Avatar for zhackon
0
313
Member Avatar for jovillanuev

Is your script is giving any result? i could see where condition is missing in script. you want recent date only from table 2 ? what is the relation between table1 and table 2?

Member Avatar for Pgmer
0
102
Member Avatar for yelolimo
Member Avatar for Pgmer
0
165
Member Avatar for omarized

Yes cmd.ExecuteNonQuery(); is missing. Why cant you write SP for this? and just pass the parameters?

Member Avatar for Netcode
0
144

The End.