Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
**help me guys, i just only need steps from first till the end, a detailed steps because im not that good in programming. i read the dropnet but men i dont understand. this will really help me alot guys. im done with my C# app then this is the only my problem because i dont know how to integrate it...**
Posted
Comments
Varun Sareen 22-Feb-12 23:23pm    
integrate dropdown means using it in your project?
newbie011292 23-Feb-12 0:43am    
yes are there steps?i dont understand in dropnet??thanks
newbie011292 23-Feb-12 0:47am    
dropdown*? i mean dropnet = >

try this link for dropnet:- http://dkdevelopment.net/2010/05/18/dropbox-api-and-restsharp-for-a-c-developer/[^]

The Library is called DropNet and its for the .NET framework (C# and VB):-

https://github.com/dkarzon/DropNet[^]

Please don't forget to mark this as your answer if it helps you out.

Thanks
 
Share this answer
 
v4
Comments
newbie011292 23-Feb-12 0:31am    
thanks il review this..
Prerak Patel 23-Feb-12 0:54am    
You can remove those dropdown links as it doesn't matter at all. All that matters is Dropbox and DropNet. Just a suggestion.
newbie011292 23-Feb-12 0:57am    
i read that article but seems it is hard to understand :o_0
newbie011292 23-Feb-12 11:12am    
thanks
Here is the link to DropNet documentation.
http://dkdevelopment.net/what-im-doing/dropnet/[^]

You can even think over SharpBox[^].
 
Share this answer
 
Comments
newbie011292 23-Feb-12 0:31am    
thanks il try to study this one
newbie011292 23-Feb-12 11:12am    
thanks
Prerak Patel 23-Feb-12 23:12pm    
You are welcome. :)
XML
try this one.

<pre lang="c#">
    DataSet ds = new DataSet();
    OdbcConnection con = new OdbcConnection(ConnStr);
    OdbcDataAdapter da = new OdbcDataAdapter("SELECT ...", con);
    con.Open();
    da.Fill(ds);
    dt = ds.Tables[0];

        dropdownlist.DataSource = ds
        dropdownlist.DataTextField = "Team"
        dropdownlist.DataValueField = "Team"
        dropdownlist.DataBind()

    con.Close();
</pre>

Best Regards,
iamsupergrasya
 
Share this answer
 
Comments
Prerak Patel 22-Feb-12 23:44pm    
DropBox and DropDownList are totally different things and question is about DropNet.
newbie011292 23-Feb-12 11:12am    
thanks anyways

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900