No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Re: just gave an example in the following thread... [url]http://www.daniweb.com/software-development/pascal-and-delphi/threads/363952[/url] guess this is what you need Slices | |
Re: First of all you need to use Delphi build in Database components and choose which database you will use... after that you use Query and DataSource component... Once you set up these you're ready to go... you need a button and edit or (text box) [CODE] Query1.Close;{close the query} Query1.SQL.Clear; … | |
Re: try this [CODE] string myHost = System.Net.Dns.GetHostName(); Label1.Text = myHost; string myIP = System.Net.Dns.GetHostByName(myHost).AddressList[0].ToString(); Label2.Text = myIP; [/CODE] | |
Hello Daniweb Users... I have A GridView in ASP.Net with VB.net code I load the Table with data for example ID, Name, Surname... below i have 3 labels I want when I press in GridView label1 to be selected ID label2 Name and label3 Surname... Any Idea how to do … | |
Hello there, My page is working perfect in localhost but when I publish my site online I get the following error: Security Exception Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or … | |
Hello guys, Can anyone tell me why do I get the error message in the code below? The code fires onPageLoad. What should I change? [CODE]Dim con As New SqlConnection con.ConnectionString = "Data Source=s01.winhost.com;Initial Catalog=DB_10078_kdn;Persist Security Info=True;User ID=xxxxx;Password=******" Dim s As String s = "SELECT * FROM Users WHERE Seller_id … |
The End.