Hello all,
I am trying to use path info in my asp.net web application. I am using iis 6 on the production machine and iis 7.5 on my home computer.
Does anyone know how this can be done?
Thank you !
Hello!
I have an RPG in development, but I'm still confused about the best way to display dialogue.
I want there to be a text box with text that scrolls (like any RPG), but what is the best way to accomplish this using X-Code?
Thanks!
Hello,
Is it possible to have two different memcached server to separate admin sessions of the frontend sessions in magento ?
It is actually possible to separate sessions and file cache, but it applies on both admin and frontend, which dissallow to clear, for example, only admin sessions.
If you want to clear admin sessions, you have to clear all sessions : admin and frontend.
Thanks,
Hugues.
Hello,
I've lost my Reporting Services project file for Business Intelligence Development Studio. How can I open the existing reports in a new project? Can I "open" the whole project like in SSAS? I want to get the datasets and data sources into the project again as well.
Hello,
I'm writing a program in python using dbus that detects inserted usb drives and manipulates the files inside of them. However, I can't seem to retrieve the path on my system of an inserted usb. Is there someway that I can get the path of an inserted usb in dbus, perhaps by using the GetProperty() method? I have tried using GetProperty("block.device"), but that returns /dev/sdc1 which doesn't exist on my system. Thanks in advance for any help!
Hello,
I use a c++ dll in python. That dll uses other dlls.
I want to know if it's possible to include all the dll's in my .exe using py2exe without calling them directlly. If so, how can I do it?
Thanks in advance :)
Hello,
I am looking for a service that can take a snapshot of a webpage at a certain time and save it online.
Something like:
http://www.diigo.com
or
http://www.iterasi.net/ (like a bookmark, but also with content).
The first doesn't do that well with javascript and doesn't save the complete page while the latter doesn't have free accounts any more.
Hello Everyone,
I have checked the working demo of ImageSwitcher and gallery. Actually i want to display 4 images at a time on screen and by default it displays number of images that it can fit in a screen say for ex. 6 images. Now i want to limit the number of images(to 4 images ) to be displayed on ImageSwitcher at the same time. Any help will be appreciated.
Thank you,
Rupesh
Hello everyone,
I would like to add an artificial intelligence technique in a c sharp project. the problem is that i don't know an artificial intelligence library that i can use. could you please share with me your knowledge with me.
Regards,
Hello,
I had my site designed through an designer, I have this image from it, I want to use same kind of image for other navigation menus which I want to add now, my designer is not supplying me with psd`s of it.
How can I know what text effects and fonts I should use in photoshop to achieve the same kind of result?
Thank You.
Hello All:
I am an issue while converting "March 16-17" to DateTime and saving it to SQL server. "March 16-17" as it looks, read as March 16 to March 17, which in my case is invalid, but C# DateTime.TryParse() is treating "March 16 -17" as March 16, 2017 which is wrong, and saving the data in SQL server. SQL server treats "March 16-17" as invalid. So, can some body tell me how to use SQL server datetime validation in C#.
Thanks
Ashwani
Hello
I'm creating a website with structure like this:
class main { }
class mysql extends main { }
class user extends main { }
class etc extends main { }
The idea is for these classes to use functions from each other. This doesn't work. How can I call a function from mysql in user?
Martti Laine
hello im having problem with my site when i type http://mysite.com it works fine but when i type http://www.mysite.com it displays page cannot be found ,
what is the problem i couldnot find , i tried .htaccess redirection also
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.mysite.com [nc]
RewriteRule (.*) mysite.com/$1 [R=301,L]
it is not working
any help will be appreciated
Hello All,
I want to connect to MS SQl server 2005 using hibernate in java. i am unable to find the jars and the hibernate.cfg.xml file for the same. can someone help me with the same
Thanks in Advance
Regards,
Rima
Hello,
is there any ready to go solution within the microsoft framework, regarding conversion of date to day?
For example, i would like to convert this string 21/03/2010 (dd/mm/yyyy) to Sunday
Hello everyone I was just going trough http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html spring tutorial, and I thought its old I'll think something better on my own. For starters how do I start spring project with maven, which archtype should I choose? I wanna create simple spring app, write class which I will deploy to jboss, spring will instansiate it at startup .. that is what have in mind for now .. for now I need to start it first
Hello Friends,
I want to position Dojo's Dijit Dialog relative to one of my html. is it Possible?
If yes. How?
currently it always shows dialog in middle of viewport.
Can any one help me regarding the matter?
Thanks.
amar4kintu
Hello,
I am looking to display multiple web content in one main view.
I have created different WebView and make it's height and width to fit all in one view size of Landscape mode.
How to scale down web view content to show data in small size (as per WebView height and width) ?
I have built application using Interface builder.The view is interface with one tab bar of tab bar controller.
Thanks,
Hello All,
I am running some sites on IIS 7.0. But yesterday one of my client me to host a Java website. I cant host that website directly so I installed tomcat server on port 8080. Now I want whenever browser send a request for that website it should redirected to my tomcat internally. The client URL should not update.
Regards,
Prateek
Hello Friends,
I have developed customized setup Installer using NSIS. But every time when I reinstall an application, I want to take backup of old database files. & backup file should be rename as 'currentdatetime'(ex: 201003101140 means 2010-03-10 at 11:40 AM).
please, Help me soon
I am waiting your reply
Thanks !
Hello,
Is there any way to access a movie plaing in VLC through HTTP in jpeg/png format.
You see, what I want, is to have a movie playing in my local VLC player, and access currently playing frame through something like http://localhost:9999/current.jpg
Is there sucha way, or maybe someother tool can provide it?
Thanx a lot in advance
I have following code snippet:
class ABC{
public:
int a;
void print(){cout<<"hello"<<endl;}
};
int main(){
ABC *ptr = NULL:
ptr->print();
return 0;
}
It runs successfully. Can someone explain it?
Hello,
I have a list of CustomerViewModels in a ComboBox. The selected CustomerViewModel I want to delete and also the Customer wrapped inside it to remove it from the repository.
But how can I access the Customer model inside the CustomerViewModel?
Hello,
I'd like to start with TDD in ASP.NET NVC. Getting links pointing me to some ressources for absolute beginners on that matter would be helpfull. (why, when, how to write tests).
Also, some advices on how to tackle the subject are welcomed.
Thanks for helping
Hello, I have a struck like this
typedef struct bookStruct
{
char title[80];
char author[80];
} BookType;
And I have two strings like this
char *title = "A Book on C";
char *author = "A. Kelly";
Now I can't create a BookType like this
BookType book = {title, author};
Can anyone tell me what is wrong? How can I do that?