Forum: C# Dec 2nd, 2008 |
| Replies: 2 Views: 252 |
Forum: MS Access and FileMaker Pro Nov 7th, 2008 |
| Replies: 1 Views: 371 |
Forum: MS Access and FileMaker Pro Nov 6th, 2008 |
| Replies: 1 Views: 371 query to transpose Hi,
I Have data stored with the following structure:
Version Month Amount
1 Brand1 Jan 100
1 Brand1 Feb 200
1 Brand1 Mar 150
1 Brand1 ... |
Forum: VB.NET Nov 5th, 2008 |
| Replies: 1 Views: 171 |
Forum: C# Oct 29th, 2008 |
| Replies: 14 Views: 885 |
Forum: C# Oct 29th, 2008 |
| Replies: 14 Views: 885 |
Forum: C# Oct 22nd, 2008 |
| Replies: 14 Views: 885 |
Forum: C# Oct 16th, 2008 |
| Replies: 14 Views: 885 Re: transfer contends from database table to excel wb.SaveAs(FileName,Excel.XlFileFormat.xlWorkbookNormal,
null,null,false,false,Excel.XlSaveAsAccessMode.xlShared,
false,false,null,null,null);
this is my code ? can you suggest any solution |
Forum: C# Oct 16th, 2008 |
| Replies: 14 Views: 885 |
Forum: C# Oct 16th, 2008 |
| Replies: 14 Views: 885 |
Forum: C# Oct 16th, 2008 |
| Replies: 14 Views: 885 |
Forum: C Jun 7th, 2008 |
| Replies: 9 Views: 1,328 |
Forum: C Jun 1st, 2008 |
| Replies: 9 Views: 1,328 |
Forum: C May 29th, 2008 |
| Replies: 9 Views: 1,328 |
Forum: C May 11th, 2008 |
| Replies: 9 Views: 1,328 inserting sleep in VC++ hi all
i am using VC++ editor. Can anyone tell me how to insert sleep in my program? i have tried sleep(). but it is giving an warning
'sleep' undefined; assuming extern returning int.
Thanks in... |
Forum: PHP Apr 3rd, 2008 |
| Replies: 5 Views: 533 |
Forum: PHP Mar 26th, 2008 |
| Replies: 5 Views: 533 |
Forum: PHP Mar 25th, 2008 |
| Replies: 1 Views: 598 creating sessions time out how can i set limit to my sessions in php so that if a page remains idle for certain time, the user is logged out? |
Forum: PHP Mar 25th, 2008 |
| Replies: 5 Views: 533 |
Forum: C Mar 18th, 2008 |
| Replies: 14 Views: 771 Re: need help in C Sample code to help you
#include <stdio.h>
int main()
{
FILE *read, *write;
char Buffer[BUFSIZ];
if( ( read = fopen("x.txt", "r") ) == NULL ) |
Forum: C Mar 17th, 2008 |
| Replies: 14 Views: 771 |
Forum: C Mar 17th, 2008 |
| Replies: 14 Views: 771 Re: need help in C first read the file line by line. copy the line content into a string. now use strtok () function to seperate the copied string contends.use atoi() function to tgake the numbers out.
For... |
Forum: PHP Mar 11th, 2008 |
| Replies: 2 Views: 1,069 |
Forum: PHP Mar 11th, 2008 |
| Replies: 8 Views: 617 |
Forum: PHP Mar 11th, 2008 |
| Replies: 7 Views: 2,265 Re: Session destroy not working.... in your auth,php script, once the user is verified try setting a session variable like
$_SESSION['views']=1;
Initially keep the session variable as 0
$_SESSION['views']=0;
now in the logout.php... |
Forum: PHP Mar 3rd, 2008 |
| Replies: 3 Views: 605 |
Forum: PHP Feb 29th, 2008 |
| Replies: 3 Views: 605 |
Forum: IT Professionals' Lounge Feb 28th, 2008 |
| Replies: 5 Views: 1,138 |
Forum: IT Professionals' Lounge Feb 28th, 2008 |
| Replies: 5 Views: 1,138 problem with adjusting the page width hi,
Is it possible to adjust the text size acclording to the page size in html? actually i have a webpage where i output the value of some command. the output may differ from time to time. now i want... |
Forum: PHP Feb 28th, 2008 |
| Replies: 4 Views: 1,210 Re: How to Upload Image,file its not Mr but Ms
try this
$newname="C:\xampp\htdocs\online_shopping\uploaded_images\";
$newname=$newname.basename($_FILES['product_upload_img']['name']);
also print the error number here... |
Forum: PHP Feb 27th, 2008 |
| Replies: 7 Views: 679 Re: adjusting the width of the page its not about images . actually i have to display the output of some command(lets say ls) . i want that the entire output of the command shoud fit in the webpage in such a way that i need not use the... |
Forum: PHP Feb 27th, 2008 |
| Replies: 7 Views: 679 |
Forum: PHP Feb 27th, 2008 |
| Replies: 5 Views: 524 |
Forum: PHP Feb 27th, 2008 |
| Replies: 4 Views: 1,210 |
Forum: PHP Feb 27th, 2008 |
| Replies: 19 Views: 3,635 Re: PHP Refresh? try this
if($_POST['delete'])
{
ur code
}
?>
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=urpage.php"> |
Forum: PHP Feb 27th, 2008 |
| Replies: 7 Views: 679 |
Forum: PHP Feb 23rd, 2008 |
| Replies: 7 Views: 679 adjusting the width of the page hi
is it possible to adjust the page width according to the output of the page so that the user doesn't have to scroll to see the end of the page? |
Forum: PHP Feb 21st, 2008 |
| Replies: 19 Views: 1,091 Re: problem in setting session my php.ini says that session.save_path=/var/lib/php/session.
but there was no php dir . so i created a php dir and session dir and gave 0777 permissions to session dir. now everything is ok.
thanks |
Forum: PHP Feb 21st, 2008 |
| Replies: 25 Views: 1,248 Re: no viewing without logging i got it. After creating the directory i gave 0777 permissions to session dir. now everything is working fine.
thankyou guys |