Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Member Avatar for creativehacker

I am able to add a link to a datagridview but the problem is I want all the links with same name. But I am getting the name from database data [CODE] DataGridViewLinkColumn linkColumn = new DataGridViewLinkColumn(); linkColumn.Text = "View"; linkColumn.HeaderText = "View"; linkColumn.Name = "View"; linkColumn.DataPropertyName = "PART_NO";[/CODE] This …

Member Avatar for praveshsingh
0
474
Member Avatar for creativehacker

Hai frnds. I started doing a project for my college [B]online Examination[/B] This project is exclusively for college for conducting Aptitude and Reasoning test. There are 2 groups MBA MCA and these 2 are divided as MCA I yr MCA II yr MCA III yr MBA I yr MBA IIyr …

Member Avatar for keet_kaat
0
124
Member Avatar for creativehacker

I want to find duplicate names from my database I wrote the following query. But it is displaying more that existing records. I guess it is taking cartesian product. select a.name from emp from emp a,emp b where a.name=b.name; can anyone correct this query. I want to display all the …

Member Avatar for mir77
0
100
Member Avatar for creativehacker

I want to write an sql statement in c# where I want to pass a "true" or "false" value basing on some condition... can we pass true to sql statements Ex: [CODE]select * from emp where (empid=1234 and true); select * from emp where (empid=1234 and false); [/CODE] This true …

Member Avatar for debasisdas
0
73
Member Avatar for creativehacker

I am adding checkbox to datagridview. how can I add a checkbox to the header so that when I click that all the checkboxes should be checked and corresponding rows should be deleted.. I am able to delete one row at a time. How to delete multiple rows.. [CODE]DataGridViewCheckBoxColumn chkBoxColumn …

Member Avatar for BlackSun
0
152
Member Avatar for creativehacker

I want to generate a tree view using asp in which when I click the file (not the folder) the file should be deleted I found this on net but how can I modify to delete a file when clicked on it. [URL="http://classicasp.aspfaq.com/general/how-do-i-generate-a-treeview-from-asp.html"]http://classicasp.aspfaq.com/general/how-do-i-generate-a-treeview-from-asp.html[/URL] [URL="http://www.aspwebsolution.com/articles/coder4life/treeview/asp/index.htm"]http://www.aspwebsolution.com/articles/coder4life/treeview/asp/index.htm[/URL]

Member Avatar for closetosane
0
558
Member Avatar for creativehacker

I want to do versioning for text files which are stored in folder. Each time the user opens the file from the application he edits and saves, this should become new version. later the versions should be displayed near the file name.. Anyone please give me an idea of how …

Member Avatar for LizR
0
70
Member Avatar for creativehacker

I am wrote a file del.asp where I am deleting a file but I am getting the following error Error Type: Microsoft VBScript runtime (0x800A0046) Permission denied /asptreeview/del.asp, line 9 The code which I wrote is as follows... [CODE]PhotoFile = "/asptreeview/asptree/" & Request.QueryString("file")(1) PhotoPath = Server.MapPath(PhotoFile) Response.Write(PhotoPath & "<br />") …

Member Avatar for hielo
0
152
Member Avatar for creativehacker

I want to call asp function in anchor link click. Is it possible to call server side function from client side action. I want to delete file from server when user clicks the hyperlink... Any help please... Regards venkat

Member Avatar for hielo
0
157
Member Avatar for creativehacker

Is there any way to disable saveas option in IE browser I found a site where they disabled saveAs in IE [url]www.totaram.com[/url] how did they actually do that can this be done using javascript...or any other mechanism I want saveas to be disabled when users see my site in IE

Member Avatar for zezo
0
123
Member Avatar for creativehacker

150 html files are in a folder on a windows machine.Among them,content of some files (not the file names)contain the sentence "Hello World??". How to count no of such files using java program

Member Avatar for jwenting
0
102
Member Avatar for creativehacker

Hi Can Anyone please give me a script which is used to drag a text from within a webpage to the textarea present on the page. I want a certain text to be appended to the textarea text and I want a certain text to be added anywhere in the …

Member Avatar for ~s.o.s~
0
262
Member Avatar for creativehacker

I am using windows XP SP2. The problem is my windows OS is only able to boot when there is a bootable win XP disc in the drive. When the bootable is in the disc it will ask Press any key to load win XP..... when I dont press any …

Member Avatar for gerbil
0
128
Member Avatar for creativehacker

I wrote a program where I should draw some stuff whenever a key is pressed. The drawing is done whenever the key is pressed but can be seen only when i resize the window.. [CODE]public void keyPressed(KeyEvent e) { Graphics2D g2 = image.createGraphics(); if(e.getKeyCode()==37) { System.out.println("left is pressed"); key=LEFT; sp.SnakeMove(key); …

Member Avatar for Ezzaral
0
104
Member Avatar for creativehacker

Hi I want to create a login screen which asks for username and passwor with change passsword facility. My idea is to store username and password in a php file and update them. Can anyone please tell me how to update a php file from another php file.. Thanx in …

Member Avatar for Walkere
0
103
Member Avatar for creativehacker

Hi everyone, I want to delete uploaded files from the server. here I am not using database please check my code and suggest me any changes Del.php [CODE]<?php $jpgdir = "uploads/"; $file=$_REQUEST['file1']; echo $file; //echo $jpgdir; // Open a known directory, and proceed to read its contents if (is_dir($jpgdir)) { …

Member Avatar for nav33n
0
80