Click here to Skip to main content
15,917,731 members
Home / Discussions / COM
   

COM

 
AnswerRe: How to create client for ATL COM component? Pin
CPallini30-May-07 5:44
mveCPallini30-May-07 5:44 
QuestionHow to create moniker Pin
vian2524-May-07 23:09
vian2524-May-07 23:09 
QuestionHow to set a property as a DefaultPropety in COM Wrappers(CCW's) Pin
MurtyINM23-May-07 19:37
MurtyINM23-May-07 19:37 
AnswerRe: How to set a property as a DefaultPropety in COM Wrappers(CCW's) Pin
Dave Herren24-May-07 2:06
Dave Herren24-May-07 2:06 
QuestionButtons automatically set themselves BS_DEFPUSHBUTTON style. Pin
eat_union23-May-07 17:22
eat_union23-May-07 17:22 
QuestionVista "Ocr running error" Pin
kosovan21-May-07 23:07
kosovan21-May-07 23:07 
AnswerRe: Vista "Ocr running error" Pin
kosovan23-May-07 1:39
kosovan23-May-07 1:39 
QuestionBinding An Acoordion Ajax Control to an Access database Pin
Nada Adel21-May-07 22:46
Nada Adel21-May-07 22:46 
Hi, I'm trying to bind an acccordion control to an access database, but nothing is displayed. I can't seem to find the problem. Plz have a look:

<asp:ScriptManager ID="ScriptManager1" runat="server" />
<ajaxToolkit:Accordion ID="MyAccordion" runat="server" SelectedIndex="0" HeaderCssClass="accordionHeader" ContentCssClass="accordionContent" AutoSize=None FadeTransitions="true" TransitionDuration="250" FramesPerSecond="40" Height="38px" Width="51px" >
<Panes></Panes>
<HeaderTemplate><a href="" onclick="return false;"><%#Eval("Client_Name") %></a>
</HeaderTemplate>
<ContentTemplate><%#Eval("Client_Address") %>
</ContentTemplate>

</ajaxToolkit:Accordion>

// The code behind in C#
protected void Page_Load(object sender, EventArgs e)
{
System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("ClientsDB.mdb"));
System.Data.OleDb.OleDbCommand cmd = new System.Data.OleDb.OleDbCommand("SELECT * FROM Clients ",conn);
System.Data.OleDb.OleDbDataAdapter adp = new OleDbDataAdapter(cmd);

conn.Open();
System.Data.OleDb.OleDbDataReader dtr = cmd.ExecuteReader();

while (dtr.Read())
{
}
dtr.Close();
DataSet dsClients = new DataSet();
adp.Fill(dsClients, "Clients");
MyAccordion.DataSource = dsClients;
MyAccordion.DataSourceID = "dsClients";
MyAccordion.DataBind();

conn.Close();

}
Questionproblem in executing DTS Pin
balageeeee21-May-07 20:07
balageeeee21-May-07 20:07 
AnswerRe: problem in executing DTS Pin
Dave Herren23-May-07 13:50
Dave Herren23-May-07 13:50 
QuestionCOM + C# Pin
Don Rolando21-May-07 9:58
Don Rolando21-May-07 9:58 
AnswerRe: COM + C# Pin
sthotakura21-May-07 10:15
sthotakura21-May-07 10:15 
QuestionHow to retain the values Pin
jannathali21-May-07 1:59
jannathali21-May-07 1:59 
AnswerRe: How to retain the values Pin
sthotakura21-May-07 10:21
sthotakura21-May-07 10:21 
AnswerRe: How to retain the values Pin
CPallini23-May-07 0:41
mveCPallini23-May-07 0:41 
QuestionRegarding Adding a Decoder Filter Pin
Raja Bose C Leo20-May-07 21:53
Raja Bose C Leo20-May-07 21:53 
QuestionWord.Documents.Open( ) not working at Windows 2000 Pin
cindy02320-May-07 17:08
cindy02320-May-07 17:08 
QuestionUsing same COM instance with multiple client ? Pin
achainard18-May-07 5:57
achainard18-May-07 5:57 
AnswerRe: Using same COM instance with multiple client ? Pin
CPallini18-May-07 10:20
mveCPallini18-May-07 10:20 
QuestionRe: Using same COM instance with multiple client ? [modified] Pin
achainard19-May-07 5:03
achainard19-May-07 5:03 
AnswerRe: Using same COM instance with multiple client ? Pin
Flame11325-May-07 15:03
Flame11325-May-07 15:03 
GeneralRe: Using same COM instance with multiple client ? Pin
achainard25-May-07 20:22
achainard25-May-07 20:22 
Questioncan i customize webbrowser in my own ocx? [modified] Pin
XPointer18-May-07 0:15
XPointer18-May-07 0:15 
AnswerRe: can i customize webbrowser in my own ocx? Pin
prasad_som18-May-07 0:53
prasad_som18-May-07 0:53 
GeneralRe: can i customize webbrowser in my own ocx? Pin
XPointer18-May-07 1:00
XPointer18-May-07 1:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.