Click here to Skip to main content
15,906,455 members

Comments by Mahendran Murugesan (Top 8 by date)

Mahendran Murugesan 4-Oct-14 2:00am View    
Hi,

Added the code in question itself. Could you please guide me to display the typed letters in Autocompletetextview
Regards,
Mahe
Mahendran Murugesan 2-Sep-14 1:40am View    
Thank you for support.
Mahendran Murugesan 16-Dec-13 23:51pm View    
Use the query as
strsql = "INSERT INTO PACRLog (PONumber) VALUES '" & PONumbertxt.Text & "'"

User ( instead of [
Mahendran Murugesan 4-Dec-13 4:22am View    
Hi,
1. You cannot pass the sql statement directly to SP2
2. You need to pass single row value to sp1 inside SP2 using select statement with row selector.

pass the value as shown in below format
Declare @id int
Declare @name varchar(5)
Declare @rank int
Select top 1 @id = id, @name = name from tbltemp where name != null -- top 1 include to select first user.
Exec sp1 @id , @name, @rank out
select @rank

Hope it helps
Mahendran Murugesan 16-Oct-13 8:03am View    
So You are trying to achieve the xml structure in below format right?

-root id="0" title="Root Node"
-category id="1" title="Parent Node"
-category id="1" title="Parent Node"
-menu id="1.1"
-subject Child Node -/subject
-/menu
-/category
-/category
-/root