6,113 Topics

Member Avatar for
Member Avatar for manolisvl46

i would like to ask if there is a way to change on a drag and drop jquery i use the image src from the li div that i drag it on the ul div that i drop it... with a jquery i found something like this [CODE]$('#dropContainer').droppable({ drop: function(e,ui) …

0
83
Member Avatar for blackmagic01021

Hello Everyone, I am trying to work on omage compression on 12 bit image compression. I am using Rice encoding for 12 bit image. I have a complete program for 16 bit image compression. But I want to convert it to 12 bit image compression. And I also want to …

Member Avatar for blackmagic01021
0
208
Member Avatar for xfrolox

Well i want to make my prog more pro so is boardless and it has custom buttons like close - minimize and option btn i made that option btn so it appears another form boardless with options but you can see completely the first form. i want like when i …

Member Avatar for xfrolox
0
135
Member Avatar for D4n1sD

Is it possible by any way to make a .php with all the data into it a .png Example: You got a php that the data displays in the order you want and u want to like screenshot it and post it into the main .php like a fucntion createphptoimg("test.php")

Member Avatar for Tekkno
0
148
Member Avatar for severman

hi all i'm trying to draw an oval/ellipse over an existing square the problem is that the oval is drawn behind the rectangle how do i fix this? here is my form's code [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; …

Member Avatar for severman
0
172
Member Avatar for praveen_dusari

hi all, i am trying to create a thubnail image and want to insert in a folder and path into database.. i uploaded image into folder but not able to create thumbnail from it [CODE]string s = @"~\uploads\" + FileUpload1.FileName; FileUpload1.PostedFile.SaveAs(Server.MapPath(s)); SqlConnection cn = new SqlConnection("Server=praveen;Integrated Security=True;User Id=sa;Password=sa;Initial Catalog=banking"); string …

Member Avatar for carrzkiss
0
423
Member Avatar for vandersal

Hello Experts pls i want get all the form data for id card along with the passport image when correct id corresponding to the database row is inputed. the code only retrieves other form data but can't get the image. --------------recovery.jsp--------- [CODE=jsp]<HTML> <HEAD> <TITLE>Database Lookup</TITLE> </HEAD> <BODY> <FORM ACTION="recover1.jsp" METHOD="POST"><fieldset><legend> …

Member Avatar for peter_budo
0
1K
Member Avatar for goodwin912

I've got a little app to resize and watermark images. At the moment it only does one at a time but I would like to get it to do a full folder of images in one go. I have done this previously in VB using loops but im new to …

Member Avatar for Tech B
0
233
Member Avatar for furjaw

Visual Studio 2005 Professional Edition: My app runs fine on my development computer, but, bombs out on the 3 other computers that I installed it on (all 3 were running Windows XP Pro). It installs OK, but, upon execution, it immediately aborts with a System.InvalidOperationException. I inserted a MsgBox(" " …

Member Avatar for kvprajapati
0
416
Member Avatar for g2gayan

Hello, Does any 1 knows how to add a Image button to Visual studio 2008 ? i mean is their a special pluggin to do so because i need to create some onRollOver and And OnRollOut events too ... and at last.. how to insert a swf into a c# …

Member Avatar for kvprajapati
0
77
Member Avatar for haboota

Hi - I am playing around with a php image gallery and Im stuck trying to add lightbox to it. The script automatically builds the gallery, and all anchors to the full size picture are generated. How can I add the rel="lightbox" tag? [CODE] echo "<center><a href=\"$PHP_SELF?path=$aPath&page=$aThisPage&img=$aFn&idx=$aIdx\"><img border=\"4\" width=\"$twidth\" height=\"$theight\" …

Member Avatar for haboota
0
123
Member Avatar for Linlin

Hello! I have more or less zero knowledge about coding in PHP. The most I've done is includes, to help me maintaining my sites more efficiently. I hope I will not offend anyone with this question. Anyhow, towards my issue. I have one table containing several fields, with information such …

Member Avatar for almostbob
0
229
Member Avatar for john_beginner

Hello all of you, i m trying to get image from database to asp:repeater for that i am using one handler page but not able to get the image here is the code for asp:repeter [code=C#] <asp:Repeater ID="rep" runat="server" > <HeaderTemplate> <table> <tr> <th> Image</th> <th> Basic Information</th> </HeaderTemplate> <ItemTemplate> …

0
79
Member Avatar for Serrafine

Hi, I'm trying to find a way for the user to draw an image on the screen, and then return a formal version of the image. This is a tool to enable practise writing symbols from an ancient language. What I mean by a formal version is the properly drawn …

Member Avatar for Serrafine
0
219
Member Avatar for lishannx

ive created a new picturebox with the image to be directed from my directory. but it came be the case that the directory path will always be on my desktop. how do i make the path not hard-coded? pictureBox = new PictureBox(); pictureBox.Image = Image.FromFile(@"D:\Documents and Settings\12344\Desktop\Model Products 40x40 v2\Model …

Member Avatar for Diamonddrake
0
1K
Member Avatar for chirup

i've created a 2-dim image array but cannot assign images its members. i have done as follows [code] dim img(4)() as image for d=0 to 3 img(0)(d)=My.Resources.RedPlayer img(1)(d)=My.Resources.BluePlayer img(2)(d)=My.Resources.GreenPlayer img(3)(d)=My.Resources.YellowPlayer next d [/code]

Member Avatar for kvprajapati
0
99
Member Avatar for rhirde

hi I have to create ad in which 5-6 images will change in fixed time interval and for that i want to know how to create animated gif image in photoshop. pl. tell the steps to create the animated gif image in photoshop

Member Avatar for shironui
0
129
Member Avatar for emilyhedgecock

Hi I have made a javascript image viewer where there are thumbnails at the top and when you click on them the bigger image below the row of thumbnail image changes according My question is, how do i make the larger image become a hyperlink to the corresponding page it …

Member Avatar for almostbob
0
5K
Member Avatar for shilpa.joshiv@g

hi,,, i have converted the image in to gray and created itz histogram...nw i m applying various filters on the gray image...my problem is: 1.. want to display the result image after filtering in dialog box... for this i have created the dialog class...but not getting how to send the …

Member Avatar for mattjbond
0
113
Member Avatar for kevin025

Hi all I am new this communtiy... Also i wants to create a login page that can be accessed by different users who is having their own id in the shared network ... How can i create a login page page with an imgae background . thank you

0
42
Member Avatar for why1991

For my program I am working with simple graphics and need to display a straight row of squares from left to right decreasing in size. I also have to program this recursively so that it makes the squares following the first one by itself. My problem right now is that …

Member Avatar for darkagn
0
117
Member Avatar for why1991

I am trying to make a row of decreasing squares with a recursive method, but none of the squares comes up besides the first one. Any ideas where my code is going wrong? [CODE] import java.awt.*; import java.awt.event.*; import java.util.Random; public class Lab19ast { public static void main(String args[]) { …

0
84
Member Avatar for toll_booth

I'm trying to code the game of minesweeper. For some reason, the image won't display properly--and it isn't a case of a missing file, b/c I have a try-except code snippet that is set to print out an error message should this occur, and that isn't happening. So either it's …

Member Avatar for toll_booth
0
489
Member Avatar for Iueras

Hi all. I have a Gateway EV700 that has started acting very strangely. When I first turn it on for the day, the picture is great. After about 10 minutes or so, however, it starts emitting a pinging sound (very similar to a metal bob on a ceiling fan hitting …

Member Avatar for Kell Smith
0
98
Member Avatar for ms_sws

I've tried all manner of methods for accomplishing this and nothing has worked so far. The latest attempt follows. The objective is to call a function that tests for the existence of an image file. If the file exists then that image file is to be displayed. Otherwise, an alternative …

Member Avatar for Airshow
0
5K
Member Avatar for spacecowboy123

Hi All, I am using ImageIcon to display an image, however, the image does not appear. See the code i am using below. Can you see what the problem is? The receivedImage will be taken out of an object it is stored in, and then i want to display it …

Member Avatar for Abdelr7man
0
199
Member Avatar for Swingjohn

I have done a mortgage calculator program. it builds and run but I think tje GUI must be wrong because I cannot see it. I am very new to this and I am so lost. I do not know if this is the right forum. [code]import javax.swing.*; import java.awt.*; import …

Member Avatar for Swingjohn
0
226
Member Avatar for mk1200

Hey guys, I'm sure this has been done before, but I haven't found the snippet yet. I think I have to use preg_match_all. Here's my very simple stopping point: [CODE]$content = $obj->introtext; $xml .= "<ImageUrl><![CDATA[$content]]></ImageUrl>";[/CODE] Here are two examples of the introtext table data: [QUOTE]<p><span style="font-size: 10pt;"><img src="images/stories/D-West.jpg" alt="D-West" style="margin: …

Member Avatar for mk1200
0
1K
Member Avatar for vikasbhadra
Member Avatar for GreenDev.S

I have converted image to byte array and vice verse, saved it in db and binary file thousands of time, but now i encountered by a really stupid exception: "Parameter is not valid." there is another thing that made the issue more funny. I CAN LOAD THE IMAGES IN ACTIVEREPORT …

Member Avatar for kvprajapati
0
233
Member Avatar for DarwinRock

I need to load a single jpg image to a windows form at run time. file name / path is a given. Any insight on how to do this?

Member Avatar for DarwinRock
0
159
Member Avatar for neelesh kumar

I have two Picture Libraries. One has pictures and the other contains the thumbnails created programmatically by me. I am displaying the thumbnails into a custom webpart. I need to display the [U]original pictures[/U] on mouseover on the thumbnails displayed in webpart and the originals displayed should dissappear on mouse …

0
62
Member Avatar for kunyomi

Hi guys, I'm trying to UPDATE the image that has been already in the database with another image using a form in PHP. I got the uploading working all fine already. Just the edit part. With this code, I get no error, but the MySQL table is not written with …

0
415
Member Avatar for Frankey

Hi there, I am building a blog at the moment i have a amazing script that search a post for the images in it. So i can just setup a post template, call the images that are in the post and go. In this way i put the images unedited …

Member Avatar for Frankey
0
203
Member Avatar for NoziphoR

Hello everyone! I need help with my code, I want to alternate more than just 2 images using a function and setInterval. Here is my code, can anyone tell me what's wrong with it? [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Banner Advertising</title> <meta http-equiv="content-type" …

Member Avatar for Taywin
0
119
Member Avatar for Dayana Raju

Does anyone know how to put an Image in a Box Layout...just beside the buttons....Pls post me the code if anyone knows it?

0
27
Member Avatar for Amu_anu

we r making an image viewer for our mini project....n we hav tried doing it on our own ..but we are able to show only 1 image ...how to show many images using say 10 images in database?? we want functionalities like easy preview of next / previous image from …

Member Avatar for jephthah
-2
100
Member Avatar for random12810

I have no idea how to move a bitmap with the arrow keys. Here is my code [CODE] #include <windows.h> #include <tchar.h> #include <stdlib.h> #include <string.h> #include "Menu.h" #include "Icon.h" LPCTSTR ClsName = L"App"; // Class name LPCTSTR WndName = L"WindowsAPI"; // Window title HWND hwnd; // Handle to our …

Member Avatar for strmstn
0
2K
Member Avatar for bill_

I am trying to read and write a text file into an array and then store it back into the text file. The main problem i am having is the storing the file character by character into the 3D array. Here is my code: [code] #include <iostream> #include <fstream> using …

Member Avatar for bill_
0
459
Member Avatar for msgeek

I want to download Image file from web using c++ and save it in specified folder. How to do it?... please help me.

Member Avatar for kooia
0
107
Member Avatar for rajaraman1969

Hi.. I have a report developed in Crystal Report v10. Using Delphi 7, I should be able to load an image file dynamically in the said report. The Image file will be available in the local specific path. The file name will be known based on the query result set. …

0
74
Member Avatar for justM

Hi guys I would like some help with creation of Java ME class I have only been capable of coming up with the peudo-code Can someone please assist? Thanks CLASS ImageGetter Method 1: CREATE a connection to a remote server to request the image Method 2: RECIEVE the image and …

Member Avatar for peter_budo
0
185
Member Avatar for hassancool

HI all, I am using a php Code for Image hosting script and having this kind of error continuously..... "Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpbihhaX' to 'http://masalalook.com/imagehost/upload/41270034561.jpg' in /home/masalalo/public_html/imagehost/config.php on line 83" Line Number 83 contains this "if (move_uploaded_file($_FILES['file']['tmp_name'],$filedir."/".$newname))" Help me plz how to get out of this trouble...... …

Member Avatar for saiprem
0
96
Member Avatar for abbasakhtar

Hi everyone, this is my problem: I have Windows xp, a router, adsl modem, I can connect to the internet, but I can't find a way to disable the router firewall. My isp gives me dynamic ip's so everytime my router restarts I have a new ip address for my …

Member Avatar for tanya07
0
448
Member Avatar for keoki.suerth

Hello all. I'm rather new to "Posting threads", but here it goes... I built a system for my office. I installed Windows XP Pro, all the necessary software, applied the Group Policy, and installed SP2. When all was said and done, I ran SYSPREP so I could create an Image …

Member Avatar for bbodine1
0
641
Member Avatar for psathish2

warning error came.. Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at D:\hshome\blackray\demo.blackraycreatives.com\gym\testing\final\employees.php:1) in D:\hshome\blackray\demo.blackraycreatives.com\gym\testing\final\captcha.class.php on line 21 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:\hshome\blackray\demo.blackraycreatives.com\gym\testing\final\employees.php:1) in D:\hshome\blackray\demo.blackraycreatives.com\gym\testing\final\captcha.class.php on line 21 i have catcha.class.php include captcha.class.php …

0
73
Member Avatar for Virux

Okay. I have been seriously struggling with this lately. I've searched and searched forever. The closest I found was this thread here: [url]http://72.5.124.102/thread.jspa?messageID=1662301[/url] What I am trying to acheive: I want to give my interface grayscale images for icons(png), and have a filter class that can color the grayscale images …

0
177
Member Avatar for adobe71

[B]1.[/B] I want to put javascript in webpage that shows gif image on moving cursor anywhere on the page and [B]2.[/B]I want to get the value of one textbox and put this value to another textbox.

Member Avatar for adobe71
0
67
Member Avatar for yuriythebest

right, I have a visual C# app in VS2003 and am trying to load and display and image on my form. I have the following code - there are no errors, however neither does anything appear. (image exists in that directory, yes - I've had to insert the "\\" cause …

Member Avatar for kvprajapati
0
112
Member Avatar for milosz

How can I determine position and size of rectangle on my image and fill rectangle with my texture using System.Drawing class or something else? Basically I have to change the color of the particular part of an image on button click. Any idea how to do this?

Member Avatar for Diamonddrake
0
224

The End.