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
~10.6K People Reached
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
107
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
461
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
122
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
174
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
99
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
155
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
99
Member Avatar for siva28

[url]http://www.parithi.com/[/url] please visit this site... How to develop these first page..what kind of design tool is used? I develop own site , so these type of front page design i needed. please reply.. flash is ok for that?

Member Avatar for walid86
0
162
Member Avatar for aaloo

i want to know that how to make a dynamic website in flash which can send and receive data from server.i want to make a blog in flash.so what languages are needed to implement this ?

Member Avatar for aaloo
-1
130
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
199
Member Avatar for dyingatmidnight

I'm wondering if any Dreamweaver users around can help me out. I'm new the program, having done most of my programming in Notepad++ until my new job and there are two features of Notepad++ that I would really like in Dreamweaver but can't seem to find if they exist (which …

Member Avatar for bdwild
0
163
Member Avatar for babymel2010

hey frnz... can any1 tel me how to create a simple software in c#? i need to create a software n connect another system to my system (which acts as a server) n make d other system to download d created software setup... plsss help

Member Avatar for thines01
0
92
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
172
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
198
Member Avatar for MinecraftMob

im Trying to make a label move when i push The WASD Keys But as i push it pauses i dont know how to fix it so it goes as soon as i push it Heres Code So Far[CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; …

Member Avatar for devloper
0
105
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
145
Member Avatar for elshan0011

I want to close my login form and open Main form! i do that like this! [CODE] private void btnLoginOk_Click(object sender, EventArgs e) { if (textBox2.Text == "acer") { Main frmMain = new Main(); frmMain.Show(); this.Close(); } else { MessageBox.Show("Invalid Username or Password", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } }[/CODE] But …

Member Avatar for walid86
0
1K
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
362
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
234
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
358
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
217
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
164
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
154
Member Avatar for techlawsam

So I was looking at this problem , and in monodevelop (and Visual Studio). But for somereason I keep getting unreachable code or error in Visual Studio, I retyped and relooked over my code but I cant seem to find what the mistake is that I can run my code. …

Member Avatar for nick.crane
0
237
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
970