Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
27% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
5
Posts with Downvotes
5
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~11.0K People Reached

27 Posted Topics

Member Avatar for walid86

i've recently published an app but i keep getting this error on machines other than mine. unable to load DLL acbpdf8-64.dll, module cannot be found HRESULT:0x8007007E I've copied all the dll's into the /bin folder, so i get the debug and release folders, along with all the dll's, but still …

Member Avatar for erici
0
3K
Member Avatar for walid86

Hi, i'm creating a site which uses achors to change between slides... When i click it, another header moves out of place.. but i am not sure why... any help would be great! www.pixaweb.com.au/emr When you go down to painting tips with the paper behind it, if you click a …

Member Avatar for singh1720
0
109
Member Avatar for walid86

i have a form, with a few text box's, and a background image, when i click the button to produce the pdf it often creates this Parameter is not valid exception (argumentException was unhandled).. [ICODE] Bitmap back = iDMS.Properties.Resources.corporateLetterHeadPage1; back.SetResolution(300, 300); <------ error is here.. [/ICODE] the image is not …

Member Avatar for walid86
0
470
Member Avatar for walid86

i have a png file, or gif if that makes any difference which i am redrawing using GDI+. [ICODE] Bitmap b6 = new Bitmap(525, 525, System.Drawing.Imaging.PixelFormat.Format32bppArgb); b6.SetResolution(300, 300); using (Graphics grPhoto = Graphics.FromImage(b6)) { grPhoto.CompositingMode = CompositingMode.SourceCopy; grPhoto.SmoothingMode = SmoothingMode.HighQuality; grPhoto.InterpolationMode = InterpolationMode.HighQualityBicubic; grPhoto.PixelOffsetMode = PixelOffsetMode.HighQuality; grPhoto.CompositingQuality = CompositingQuality.HighQuality; //now …

0
123
Member Avatar for walid86

i am curious to know if any one else has used this software... EasyByte RTF to HTML [url]http://www.easybyte.com/products/rtf2html.html[/url] i have tried sending them an email, but yet to receive a reply. I even bought the software as i really need a RTF to HTML dll component; it said wait 24 …

Member Avatar for walid86
0
177
Member Avatar for walid86

i'm just wondering how i could save my RTF string somewhere... i need to show my rtf string but in its original format, including the tags etc.. thanks.

Member Avatar for walid86
-1
102
Member Avatar for walid86

[CODE]Bitmap cropImg = new Bitmap(747, 591, System.Drawing.Imaging.PixelFormat.Format24bppRgb); cropImg.SetResolution(300, 300); //create a new graphics object from our image and set properties using (Graphics grPhoto = Graphics.FromImage(cropImg)) { grPhoto.CompositingMode = CompositingMode.SourceCopy; grPhoto.SmoothingMode = SmoothingMode.AntiAlias; grPhoto.InterpolationMode = InterpolationMode.HighQualityBicubic; grPhoto.PixelOffsetMode = PixelOffsetMode.HighQuality; //now do the crop // grPhoto.DrawImage(loadedImage1, new Rectangle(0, 0, pictureBox1.Width, pictureBox1.Height), imageBounds1.Location.X …

Member Avatar for walid86
0
159
Member Avatar for walid86

Anybody know how to have a power factor in text.. 100 m2 etc.. is it a unicode character? thanks

Member Avatar for walid86
0
103
Member Avatar for siva28

i would use, photoshop to create the images, slice them up, open dreamweaver and code them in. flash could be used, but as Joe said, it may not be the best option.. dont forget google can't see flash stuff...

Member Avatar for walid86
0
167
Member Avatar for aaloo
Member Avatar for aaloo
-1
132
Member Avatar for walid86

Situation: i have a bitmap loadedImage1 which the user is able to resize, and move around inside picturebox1. objective: this loadedImage1 is then to be added to a pdf document (which is working) but needs to be using the current size and location(as the user can move it around) atm: …

Member Avatar for walid86
0
203
Member Avatar for dyingatmidnight

i know what you mean.. you could try writing the code in dreamweaver.. then just copy/paste it into notepad++, copy that, then paste back... it should keep your formatting...

Member Avatar for bdwild
0
165
Member Avatar for babymel2010

research vs2010, you can add a setup item to your project, add the files you want to install, and it does it for you.. ie, create the setup.exe which will install your program on any machine. there are 3rd party software out there too, which are fairly simple to use. …

Member Avatar for thines01
0
94
Member Avatar for walid86

i'm writing some values which are global to the whole app. these values can change depending on the user. [CODE] // create GLOBAL SETTINGS public static class MyGlobals { public static string userName = "userName"; public static string pdfPath = @"C:\mypdfs\"; // deafult value, changes public static string FontName = …

Member Avatar for skatamatic
0
176
Member Avatar for walid86

i have a richtextbox where the user inputs his/her name.. This needs to always be 60pixels wide, regardless of text.. ie: Johnathon or Tim need to be resized to best fit the control. i've looked on the net, but only found VB solutions. Is there a way to achieve this?.. …

Member Avatar for Antenka
-1
199
Member Avatar for MinecraftMob

tried refreshing the label? label1.refresh(); or label1.invalidate(); fairly sure they both repaint the control.. also try setting double buffer on the control... that could help you.. also try a "while" loop instead of "if" by logic, using while, will mean, while you press W, do this and continue.. instead of, …

Member Avatar for devloper
0
110
Member Avatar for walid86

i have two textbox's... these textbox's can have formatting applied etc, but they lose focus when a button is pressed, and the wrong textbox has formatting applied.. is there a way to track the last textbox to have control?. some kind of for each control f type textbox, if mouse.click, …

Member Avatar for walid86
0
148
Member Avatar for elshan0011

[CODE] Main frmMain = new Main(); frmMain.Show(); this.Close();[/CODE] try... [CODE] this.Close(); Main frmMain = new Main(); frmMain.Show();[/CODE] my app uses the same type of format, and using this.Close(); before calling another form, closes the current form, before opening a new form.

Member Avatar for walid86
0
2K
Member Avatar for walid86

i'm using [CODE]using (Graphics g = Graphics.FromImage(bmp)) { //Set quality to High g.CompositingMode = CompositingMode.SourceCopy; g.CompositingQuality = CompositingQuality.HighQuality; g.SmoothingMode = SmoothingMode.HighQuality; g.InterpolationMode = InterpolationMode.HighQualityBicubic; g.TextRenderingHint = TextRenderingHint.AntiAliasGridFit; g.PixelOffsetMode = PixelOffsetMode.HighQuality; g.TextRenderingHint = TextRenderingHint.AntiAliasGridFit; panel1.DrawToBitmap(bmp, new System.Drawing.Rectangle(0, 0, 2480, 3508));[/CODE] to draw the contents to an image, but the quality of …

Member Avatar for walid86
0
369
Member Avatar for walid86

i need to print all the contents of my panel to an image. Everything works, except the Rich Text Box's.. I've checked online and i can't get my head around the code as it is fairly advanced. is there any 3rd party components that have this function? i managed to …

Member Avatar for walid86
-1
237
Member Avatar for walid86

hi, i have a panel with controls and richtextbox's within it. When the user clicks the save button, i take panel1 and DrawToBitmap, then add the image to a pdf created using abcPDF7. My problem is that i have recently change textbox's with richTextBox's to enable the user more functionality, …

Member Avatar for walid86
0
363
Member Avatar for walid86

hi guys, i have a minor problem that i can't get my head around. I have a picturebox, inside a panel, inside a form which has auto scroll on, as the panel's height is bigger than the screen... I never used to have this problem, but now if i manually …

Member Avatar for walid86
0
218
Member Avatar for walid86

i'm trying to create a search bar where the user searches for an item. the items are in ArrayList and there is multiple ArrayLists. I want the user to be able to search for something, from all the available ArrayLists and show the result possibly in another listBox.. ie. user …

Member Avatar for walid86
0
169
Member Avatar for walid86

Hi, i have these two methods which work as designed, but the original image still shows behind... These methods are to resize an image, one is increase and one is decrease size. Upon [B]smallerByToolStripMenuItem_Click[/B] the image is resized, but the original shows behind it. Upon [B]largerByToolStripMenuItem_Click[/B] the image is also …

Member Avatar for walid86
0
159
Member Avatar for techlawsam

I'm still new to C# myself, but i came across this "unreachable code" error too. But putting the code before the return statement fixed it for me.. [CODE]public static double CalculateMilesPerGallon (int milesTraveled, double gallonsUsed) { Console.WriteLine("Miles Per Gallon = {0:N2}", CalculateMilesPerGallon(289, 12.2)); Console.Read(); return milesTraveled / gallonsUsed; } [/CODE] …

Member Avatar for nick.crane
0
242
Member Avatar for walid86

So i'm creating a form, on the form is a panel (panel1) which holds all data, pictures etc... This is then to be made into a bmp for professional printing (ie 300dpi). A4 @ 300dpi = 2480 x 3508; i am able to create the image at the panel's height …

Member Avatar for walid86
0
1K
Member Avatar for walid86

hi there, i'm creating an app in C# which allows users to select an image by double clicking the "pictureBox1", from there it selects the image, creates a new Graphics object and passes the Bitmap to it. Once the picture has been loaded the user should be able to move …

Member Avatar for walid86
0
1K

The End.