Click here to Skip to main content
15,881,852 members
Home / Discussions / C#
   

C#

 
QuestionRe: formatting issue with iTextSharp Pin
Richard MacCutchan25-Feb-13 21:55
mveRichard MacCutchan25-Feb-13 21:55 
AnswerRe: formatting issue with iTextSharp Pin
krishnapnv28-Feb-13 18:03
krishnapnv28-Feb-13 18:03 
Questionexport or save as pdf format Pin
abhishek91111925-Feb-13 17:50
abhishek91111925-Feb-13 17:50 
AnswerRe: export or save as pdf format Pin
Pete O'Hanlon25-Feb-13 20:02
mvePete O'Hanlon25-Feb-13 20:02 
AnswerRe: export or save as pdf format Pin
Abhinav S25-Feb-13 20:22
Abhinav S25-Feb-13 20:22 
QuestionChanging tabbed form over to tiled Pin
MichCl25-Feb-13 9:27
MichCl25-Feb-13 9:27 
AnswerRe: Changing tabbed form over to tiled Pin
Dave Kreskowiak25-Feb-13 9:33
mveDave Kreskowiak25-Feb-13 9:33 
GeneralRe: Changing tabbed form over to tiled Pin
MichCl26-Feb-13 9:16
MichCl26-Feb-13 9:16 
Cool. That helped. I'm doing this to add it to my existing form and add the existing control that I was previously showing in the tab:

Form newForm = new Form();
InitializeControls(controls[i]);
newForm.Size = (controls[i].Size);
newForm.Width += 20;
newForm.Height += 100;
this.Width = newForm.Width + 20;
this.Height = newForm.Height + 50;
newForm.Controls.Add(controls[i]);
newForm.ShowDialog();


But it's filling up my entire area. Do you know how to scale the control's contents down to 1/4 the size? I think once I do that, it won't be tough to figure out how to position it (tiled) in the right location in my form with the other 4 controls I'm adding. It didn't let me say newForm.size = controls[i].size/4. (operator / can't be applied to system.drawing.size and int)
GeneralRe: Changing tabbed form over to tiled Pin
Dave Kreskowiak26-Feb-13 9:40
mveDave Kreskowiak26-Feb-13 9:40 
QuestionForce Beep...! Pin
Jassim Rahma25-Feb-13 2:57
Jassim Rahma25-Feb-13 2:57 
AnswerRe: Force Beep...! Pin
Richard MacCutchan25-Feb-13 3:09
mveRichard MacCutchan25-Feb-13 3:09 
AnswerRe: Force Beep...! Pin
Dave Kreskowiak25-Feb-13 3:56
mveDave Kreskowiak25-Feb-13 3:56 
AnswerRe: Force Beep...! Pin
PIEBALDconsult25-Feb-13 4:32
mvePIEBALDconsult25-Feb-13 4:32 
AnswerRe: Force Beep...! Pin
Eddy Vluggen25-Feb-13 8:04
professionalEddy Vluggen25-Feb-13 8:04 
AnswerRe: Force Beep...! Pin
Amir Mohammad Nasrollahi29-Jul-13 21:38
professionalAmir Mohammad Nasrollahi29-Jul-13 21:38 
QuestionASP.NET UserControl In UserControl Pin
thekoko8924-Feb-13 16:30
thekoko8924-Feb-13 16:30 
AnswerCrosspost Pin
SoMad24-Feb-13 16:47
professionalSoMad24-Feb-13 16:47 
QuestionThe .exe application file isn't obfuscated after installing setup ? Pin
taibc24-Feb-13 4:21
taibc24-Feb-13 4:21 
AnswerRe: The .exe application file isn't obfuscated after installing setup ? Pin
Pete O'Hanlon25-Feb-13 1:58
mvePete O'Hanlon25-Feb-13 1:58 
GeneralRe: The .exe application file isn't obfuscated after installing setup ? Pin
taibc25-Feb-13 3:12
taibc25-Feb-13 3:12 
GeneralRe: The .exe application file isn't obfuscated after installing setup ? Pin
Pete O'Hanlon25-Feb-13 4:43
mvePete O'Hanlon25-Feb-13 4:43 
GeneralRe: The .exe application file isn't obfuscated after installing setup ? Pin
taibc25-Feb-13 4:53
taibc25-Feb-13 4:53 
AnswerRe: The .exe application file isn't obfuscated after installing setup ? Pin
Samer AlRawi26-Feb-13 17:41
Samer AlRawi26-Feb-13 17:41 
GeneralRe: The .exe application file isn't obfuscated after installing setup ? Pin
taibc28-Feb-13 14:36
taibc28-Feb-13 14:36 
QuestionC# Pin
MohanKrishna.Kota24-Feb-13 4:06
MohanKrishna.Kota24-Feb-13 4:06 

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.