Click here to Skip to main content
15,900,725 members
Home / Discussions / C#
   

C#

 
QuestionCosmetic problem Pin
Glen Harvy28-Jan-07 20:47
Glen Harvy28-Jan-07 20:47 
AnswerRe: Cosmetic problem Pin
Stefan Troschuetz28-Jan-07 21:11
Stefan Troschuetz28-Jan-07 21:11 
Questionbinding windows user control in a windows Form dynamically Pin
Irshad Ahmed28-Jan-07 20:26
Irshad Ahmed28-Jan-07 20:26 
AnswerRe: binding windows user control in a windows Form dynamically Pin
quiteSmart28-Jan-07 20:59
quiteSmart28-Jan-07 20:59 
QuestionGet a table through Webbrowser object? Pin
TuanNH8528-Jan-07 20:06
TuanNH8528-Jan-07 20:06 
AnswerRe: Get a table through Webbrowser object? Pin
blue_arc28-Jan-07 20:15
blue_arc28-Jan-07 20:15 
GeneralRe: Get a table through Webbrowser object? Pin
TuanNH8528-Jan-07 20:22
TuanNH8528-Jan-07 20:22 
GeneralRe: Get a table through Webbrowser object? Pin
blue_arc28-Jan-07 22:51
blue_arc28-Jan-07 22:51 
There u r buddy... but MS-Access creates it own internal ids or sometime table after tables...

if u want to do this...

do like this...

var oTBL= document.getElementsByTagName("table");
this will return a array of all the tables from ur webpage... but the problem is how will u find ur tables. if u r having more then one table or nested tables...

so do 1 thing and its recommended .. when ever u have to work on objects u should keep ids, if dynamic then dynamic ids.. that will make ur life lot easier...
if u have only one table then

<br />
<br />
var oTBL= document.getElementsByTagName("table");<br />
for(var i=0;i<oTBL.length;i++)<br />
{<br />
// HERE is ur current table-----   oTBL[i]<br />
// Do ur process<br />
}<br />
<br />

QuestionHow to recieve/send mail through mail server in C# Pin
RoshanSrivastava28-Jan-07 20:00
RoshanSrivastava28-Jan-07 20:00 
AnswerRe: How to recieve/send mail through mail server in C# Pin
ShermansLagoon28-Jan-07 20:20
ShermansLagoon28-Jan-07 20:20 
Questionprotect RTF Pin
likefood28-Jan-07 19:29
likefood28-Jan-07 19:29 
AnswerRe: protect RTF Pin
ShishirVaidya8-Sep-10 2:18
ShishirVaidya8-Sep-10 2:18 
QuestionSave Event logs Pin
picasso228-Jan-07 14:26
picasso228-Jan-07 14:26 
AnswerRe: Save Event logs Pin
Luc Pattyn28-Jan-07 14:52
sitebuilderLuc Pattyn28-Jan-07 14:52 
GeneralRe: Save Event logs Pin
picasso228-Jan-07 15:19
picasso228-Jan-07 15:19 
QuestionCreate/Access NTFS Object Ids Pin
urbane.tiger28-Jan-07 14:10
urbane.tiger28-Jan-07 14:10 
QuestionNamespaces Pin
max2929728-Jan-07 13:30
max2929728-Jan-07 13:30 
AnswerRe: Namespaces Pin
Luc Pattyn28-Jan-07 13:44
sitebuilderLuc Pattyn28-Jan-07 13:44 
GeneralRe: Namespaces Pin
max2929728-Jan-07 13:59
max2929728-Jan-07 13:59 
GeneralRe: Namespaces Pin
Luc Pattyn28-Jan-07 14:14
sitebuilderLuc Pattyn28-Jan-07 14:14 
GeneralRe: Namespaces Pin
max2929728-Jan-07 14:20
max2929728-Jan-07 14:20 
GeneralRe: Namespaces Pin
Luc Pattyn28-Jan-07 14:27
sitebuilderLuc Pattyn28-Jan-07 14:27 
GeneralRe: Namespaces Pin
max2929728-Jan-07 14:34
max2929728-Jan-07 14:34 
GeneralRe: Namespaces Pin
Stefan Troschuetz28-Jan-07 21:19
Stefan Troschuetz28-Jan-07 21:19 
GeneralRe: Namespaces Pin
Aaron VanWieren28-Jan-07 14:14
Aaron VanWieren28-Jan-07 14:14 

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.