Showing results 1 to 40 of 129
Search took 0.01 seconds.
Posts Made By: carobee
Forum: C# Dec 2nd, 2008
Replies: 2
Views: 252
Posted By carobee
how to print "" in c#

hi,

how to print "" in c#?
Forum: MS Access and FileMaker Pro Nov 7th, 2008
Replies: 1
Views: 371
Posted By carobee
Re: query to transpose

well i have done that.. now i want to edit rows of datagrid . how do i do it?
Forum: MS Access and FileMaker Pro Nov 6th, 2008
Replies: 1
Views: 371
Posted By carobee
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
Posted By carobee
declaring astring variable containing semicolon

Hi,
Can anyone tell me how to add "" in a string variablein VB.net. for eg if have one string "House". The string itself contains ", how do i declare it? i have tried

Dim str as...
Forum: C# Oct 29th, 2008
Replies: 14
Views: 885
Posted By carobee
Re: transfer contends from database table to excel

can you be more specific and write the code instead of suggesting what is wrong in my code.it will be more help if u would code the line for saving the file.
Forum: C# Oct 29th, 2008
Replies: 14
Views: 885
Posted By carobee
Re: transfer contends from database table to excel

i have the procedure i have called it also. its running all well. only thing that is the hurdle is that i am not bale to save it anywhere. It gets stored in my documents folder only
Forum: C# Oct 22nd, 2008
Replies: 14
Views: 885
Posted By carobee
Re: transfer contends from database table to excel

The contents of "Filename" that i can provide is just the any name for the file, not like "C:\....". it is getting saved in my documents folder.
Please give a proper solution
Forum: C# Oct 16th, 2008
Replies: 14
Views: 885
Posted By carobee
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
Posted By carobee
Re: transfer contends from database table to excel

Also if i want to save it somewhere of my wish what would the code be like. i have defined a workbook also populated the values. now while saving it is saving in the same place where project is...
Forum: C# Oct 16th, 2008
Replies: 14
Views: 885
Posted By carobee
Re: transfer contends from database table to excel

done dat. am able to do it now. but i want the column names also. Is that possible?
Forum: C# Oct 16th, 2008
Replies: 14
Views: 885
Posted By carobee
transfer contends from database table to excel

hi,
i want to transfer the contends of a table from database to excel. can i declare a excel sheet in c#
Forum: C Jun 7th, 2008
Replies: 9
Views: 1,328
Posted By carobee
Re: inserting sleep in VC++

i want to give the sleep in seconds..
Forum: C Jun 1st, 2008
Replies: 9
Views: 1,328
Posted By carobee
Re: inserting sleep in VC++

i have tried with that but its is hardly giving me the desired effect
Forum: C May 29th, 2008
Replies: 9
Views: 1,328
Posted By carobee
Re: inserting sleep in VC++

Thanks Salem
how to increase it to seconds from milliseconds?
Forum: C May 11th, 2008
Replies: 9
Views: 1,328
Posted By carobee
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
Posted By carobee
Re: Avoiding the same php page from opening in multiple windows

thanks naveen my problem is solved. only thing i added is to make the session variable 'page' equal to 0 in subsequent pages
Forum: PHP Apr 2nd, 2008
Replies: 5
Views: 533
Posted By carobee
Forum: PHP Mar 26th, 2008
Replies: 5
Views: 533
Posted By carobee
Re: Avoiding the same php page from opening in multiple windows

what i have done is that i have set sessions, so that the user can't directly go into the next page without logging in. once he/she logs in the session variable is set. but with this i cant forbide...
Forum: PHP Mar 25th, 2008
Replies: 1
Views: 598
Posted By carobee
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
Posted By carobee
Avoiding the same php page from opening in multiple windows

Hi all,

How can i avoid same php page from being opened in two windows? If the page is opened in one window, then if the user tries to open the same page in another window, he/she should be given a...
Forum: C Mar 18th, 2008
Replies: 14
Views: 771
Posted By carobee
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
Posted By carobee
Re: need help in C

you can use fgets()
Forum: C Mar 17th, 2008
Replies: 14
Views: 771
Posted By carobee
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
Posted By carobee
Re: booking system

start off. once you get stuck come back
Forum: PHP Mar 11th, 2008
Replies: 8
Views: 617
Posted By carobee
Re: PHP on Apache

i agree with Auzzie. check for ur php info
Forum: PHP Mar 11th, 2008
Replies: 7
Views: 2,265
Posted By carobee
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
Posted By carobee
Re: is it possible to disable a button through php script?

i have a page in php in which user has to fill in details.This details are carried on to the next page through POST. suppose there ia a option called "Country" which has its values as India, America...
Forum: PHP Feb 29th, 2008
Replies: 3
Views: 605
Posted By carobee
is it possible to disable a button through php script?

is it possible to disable a button through php script?
Forum: IT Professionals' Lounge Feb 28th, 2008
Replies: 5
Views: 1,138
Posted By carobee
Re: problem with adjusting the page width

but i have coded my pages in php and html
Forum: IT Professionals' Lounge Feb 28th, 2008
Replies: 5
Views: 1,138
Posted By carobee
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
Posted By carobee
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
Posted By carobee
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
Posted By carobee
Re: adjusting the width of the page

knock knock !!!!!! anyone there?
Forum: PHP Feb 27th, 2008
Replies: 5
Views: 524
Posted By carobee
Re: Can I specify who can access certain links on a web page?

you can set session variables when the user login as admin .check if the session variable is set, if so then display the link or else don't
Forum: PHP Feb 27th, 2008
Replies: 4
Views: 1,210
Posted By carobee
Re: How to Upload Image,file

check this
http://us3.php.net/features.file-upload
Forum: PHP Feb 27th, 2008
Replies: 19
Views: 3,635
Posted By carobee
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
Posted By carobee
Re: adjusting the width of the page

my code already includes width and height as 100%
Forum: PHP Feb 23rd, 2008
Replies: 7
Views: 679
Posted By carobee
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
Posted By carobee
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
Posted By carobee
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
Showing results 1 to 40 of 129

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 2:14 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC