Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
QuestionRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 8:43
professionalEddy Vluggen9-Jan-09 8:43 
AnswerRe: How do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 10:41
Dan Neely9-Jan-09 10:41 
AnswerRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 11:00
professionalEddy Vluggen9-Jan-09 11:00 
GeneralRe: How do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 11:12
Dan Neely9-Jan-09 11:12 
GeneralRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 11:45
professionalEddy Vluggen9-Jan-09 11:45 
QuestionAccessing array in struct from other class Pin
Blubbo9-Jan-09 4:52
Blubbo9-Jan-09 4:52 
AnswerRe: Accessing array in struct from other class Pin
Ben Fair9-Jan-09 5:30
Ben Fair9-Jan-09 5:30 
Questiontext resize in my web page Pin
bhatted9-Jan-09 4:51
bhatted9-Jan-09 4:51 
Hi,

I have code in javascript but it resize the text it also resize the image in my page.Let me know how to avoid resize of the image.



function resizeText(multiplier) {

if (document.body.style.fontSize == "")
{
document.body.style.fontSize = "12px";
document.body.style.lineHeight = "14px";
}

var fontSize = parseInt(document.body.style.fontSize) + (multiplier * 1);

if (fontSize <= 17 && fontSize >= 12) {

document.body.style.fontSize = parseInt(document.body.style.fontSize) + (multiplier * 1) + "px";
document.body.style.lineHeight = parseInt(document.body.style.lineHeight) + (multiplier * 1) + "px";




var p = document.getElementsByTagName('p');


for (i = 0; i < p.length; i++) {

p[i].style.fontSize = (parseInt(document.body.style.fontSize) + "px");
p[i].style.lineHeight = (parseInt(document.body.style.lineHeight) + "px");

}}}



<area shape="rect" coords="7,2,60,16" href="javascript:void(0);" onclick="resizeText(-1) ; javascript:pageTracker._trackPageview(''/coumadin/link/header_decrease_fontsize''); " /><area shape="rect" coords="60,2,103,16" href="javascript:void(0);" onclick="resizeText(1) ; javascript:pageTracker._trackPageview(''/coumadin/link/header_increase_fontsize''); " />
AnswerRe: text resize in my web page [modified] Pin
EliottA9-Jan-09 5:18
EliottA9-Jan-09 5:18 
GeneralRe: text resize in my web page Pin
bhatted9-Jan-09 6:05
bhatted9-Jan-09 6:05 
GeneralRe: text resize in my web page Pin
EliottA9-Jan-09 6:08
EliottA9-Jan-09 6:08 
QuestionRe: text resize in my web page Pin
Eddy Vluggen9-Jan-09 8:45
professionalEddy Vluggen9-Jan-09 8:45 
QuestionLocalization and Combo Boxes Pin
belzer9-Jan-09 4:42
belzer9-Jan-09 4:42 
AnswerRe: Localization and Combo Boxes Pin
Colin Angus Mackay9-Jan-09 7:49
Colin Angus Mackay9-Jan-09 7:49 
Questiontoolbox of buttons Pin
abu rakan9-Jan-09 3:58
abu rakan9-Jan-09 3:58 
AnswerRe: toolbox of buttons Pin
User 66589-Jan-09 4:42
User 66589-Jan-09 4:42 
QuestionCrystal reports, Dynamic parameter values not showing up , Static works fine Pin
c0ax_lx9-Jan-09 3:37
c0ax_lx9-Jan-09 3:37 
QuestionHelp Required in Schedular Class Design Pin
Aman Bhullar9-Jan-09 2:11
Aman Bhullar9-Jan-09 2:11 
AnswerRe: Help Required in Schedular Class Design Pin
J4amieC9-Jan-09 2:57
J4amieC9-Jan-09 2:57 
GeneralRe: Help Required in Schedular Class Design Pin
Luc Pattyn9-Jan-09 3:31
sitebuilderLuc Pattyn9-Jan-09 3:31 
AnswerRe: Help Required in Schedular Class Design Pin
Eddy Vluggen9-Jan-09 8:49
professionalEddy Vluggen9-Jan-09 8:49 
QuestionGetting the GMT time Pin
tauras819-Jan-09 2:08
tauras819-Jan-09 2:08 
AnswerRe: Getting the GMT time Pin
User 66589-Jan-09 2:15
User 66589-Jan-09 2:15 
GeneralRe: Getting the GMT time Pin
tauras819-Jan-09 2:18
tauras819-Jan-09 2:18 
GeneralRe: Getting the GMT time Pin
Luc Pattyn9-Jan-09 2:19
sitebuilderLuc Pattyn9-Jan-09 2:19 

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.