Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~1K People Reached
Favorite Tags

6 Posted Topics

Member Avatar for mojgan_2019

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

Member Avatar for slices
0
177
Member Avatar for wiredtoawall

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

Member Avatar for slices
0
382
Member Avatar for niths

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]

Member Avatar for zmeditation1
0
211
Member Avatar for slices

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 …

0
110
Member Avatar for slices

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 …

Member Avatar for slices
0
120
Member Avatar for slices

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 …

Member Avatar for slices
0
475

The End.