Click here to Skip to main content
15,895,667 members
Home / Discussions / C#
   

C#

 
GeneralRe: protect my database connection string Pin
Sasuko18-Jan-06 13:48
Sasuko18-Jan-06 13:48 
GeneralRe: protect my database connection string Pin
tarasn18-Jan-06 21:05
tarasn18-Jan-06 21:05 
AnswerRe: protect my database connection string Pin
OldDog.Net18-Jan-06 14:47
OldDog.Net18-Jan-06 14:47 
AnswerRe: protect my database connection string Pin
LongRange.Shooter18-Jan-06 18:01
LongRange.Shooter18-Jan-06 18:01 
GeneralRe: protect my database connection string Pin
Sasuko19-Jan-06 4:49
Sasuko19-Jan-06 4:49 
QuestionDynamically adding ActiveX controls Pin
pyro_3k18-Jan-06 12:04
pyro_3k18-Jan-06 12:04 
AnswerRe: Dynamically adding ActiveX controls Pin
Judah Gabriel Himango18-Jan-06 12:51
sponsorJudah Gabriel Himango18-Jan-06 12:51 
GeneralRe: Dynamically adding ActiveX controls Pin
pyro_3k18-Jan-06 14:34
pyro_3k18-Jan-06 14:34 
thanx man, i looked around and found the code in the form1.designer.cs

heres my code if anyone else come across this problem.

this code adds an activex webbrowser control to a tabpage of a tabcontrol. You just pass it the tabpage by reference

<code>
private AxWebBrowser webPage = new AxWebBrowser();

private void AddBrowserToTab(ref TabPage tp)
{
                
    System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager();

    ((System.ComponentModel.ISupportInitialize)(webPage)).BeginInit();

    tp.Controls.Add(webPage);

    ((System.ComponentModel.ISupportInitialize)(webPage)).EndInit();
}
</code>


Sleepy | :zzz: Sleepy | :zzz: Smile | :)
Questionproblem when starting application automatically Pin
hvtin18-Jan-06 10:59
hvtin18-Jan-06 10:59 
GeneralRe: problem when starting application automatically Pin
Guffa18-Jan-06 11:28
Guffa18-Jan-06 11:28 
GeneralRe: problem when starting application automatically Pin
hvtin20-Jan-06 8:36
hvtin20-Jan-06 8:36 
QuestionSenders and Implementors? Pin
zopiro18-Jan-06 10:39
zopiro18-Jan-06 10:39 
QuestionHow to use Crystal report Driver to access Act! database. Pin
eynkram18-Jan-06 10:21
eynkram18-Jan-06 10:21 
QuestionHow to get browser bookmark or my favorite ? Pin
Yeast2718-Jan-06 9:39
Yeast2718-Jan-06 9:39 
AnswerRe: How to get browser bookmark or my favorite ? Pin
CWIZO18-Jan-06 9:44
CWIZO18-Jan-06 9:44 
GeneralRe: How to get browser bookmark or my favorite ? Pin
Yeast2718-Jan-06 11:10
Yeast2718-Jan-06 11:10 
AnswerRe: How to get browser bookmark or my favorite ? Pin
CWIZO18-Jan-06 11:42
CWIZO18-Jan-06 11:42 
GeneralRe: How to get browser bookmark or my favorite ? Pin
Yeast2719-Jan-06 5:16
Yeast2719-Jan-06 5:16 
QuestionChanging the font color of a TextDocument of a VS add-in Pin
the_traveller18-Jan-06 9:11
the_traveller18-Jan-06 9:11 
QuestionValidate when erasing a contact in office outlook programming with VS 2005 Pin
lildan18-Jan-06 8:30
lildan18-Jan-06 8:30 
AnswerRe: Validate when erasing a contact in office outlook programming with VS 2005 Pin
Christian Graus18-Jan-06 9:10
protectorChristian Graus18-Jan-06 9:10 
QuestionSo you can't press a specific key. Pin
Rofus8918-Jan-06 8:19
Rofus8918-Jan-06 8:19 
AnswerRe: So you can't press a specific key. Pin
Christian Graus18-Jan-06 9:12
protectorChristian Graus18-Jan-06 9:12 
GeneralRe: So you can't press a specific key. Pin
Rofus8918-Jan-06 11:30
Rofus8918-Jan-06 11:30 
GeneralRe: So you can't press a specific key. Pin
Christian Graus18-Jan-06 11:36
protectorChristian Graus18-Jan-06 11:36 

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.