I have a session variable and it is set default time of 20 minutes... Is it possible to see the running time of that session variable (ie) say 14 min 35 sec..
Is it possible to monitor what is happening to an Access MDB (ie. what SQL queries are being executed against it), in the same way as you would use SQL Profiler for the SQL Server?
I need logs of actual queries being called.
For a web application I switched from using ASP.NET Membership to using my own log in system which just does something like this to mark a user as logged in:
Session["UserId"] = User.Id
Is it possible to store the user id in the ASPXAUTH cookie, piggybacking on its encryption, instead of using the standard session?
The goal is for the logged in state to last longer than a session and survive both browser and server restarts.
I'm working on some HTML5 content to be included as part of an iPad app in a Web View.
As I understand it, Mobile Safari only supports SVG fonts, but my testing has show Mobile Safari to really struggle with SVG and the performance hit is a serious issue.
So... is it possible to put fonts in the App Bundle and somehow make them available to the webview?
When try I following code in a controller, the view renders without using the layout
def xyz
render :partial => 'platinum_home', :layout => 'platinum_layout'
end
But If I do the following inside the partial
<% render(:layout => "platinum_layout") do %>
blah blah blah
<% end %>
It works just fine, is the first example not possible using rails?
I am not a programmer though so I need it to be done in SharePoint as a function please.
So if List A has column 1 value Michael, I want List A column 2 to return a value from List B that has an item with a column 1 value of Michael.
Is this possible?
Thank you so much
I want to take a input from others and i want to send the output to their system.is it possible? if it is please give the script to me? and in what way i can send a message of some particular ip ranges from my system(Linux).what module i have to choose to this?
I have some JPEG images that I need scale down to about 80% of original size. Original image dimension are about 700px × 1000px. Images contain some computer generated text and possibly some graphics (similar to what you would find in corporate word documents).
How to scale image so that the text is as legible as possible? Currently we are scaling the imaeg down using bicubic interpolation, but that makes the text blurry and foggy.
Lets say I have two MySQL databases with some complex table structures. Neither database has the same table name. Lets say these tables contain no rows (they do but I could truncate the tables, the data is not important right now, just testing stuff). Lets say I need these 2 databases merged into one. For instance:
DB1:
cities
states
DB2:
index
subindex
posts
I want to end up with a single DB that contains:
cities
states
index
subindex
posts
Is this possible?
I'm using Visual Studio 2010 RC. Would it be possible that after doing my UML Diagrams, I could then generate classes with method stubs from it?
Thanks
Hi,
I couldn't find a quick answer on the official pages,
is it possible to write VB projects in the express edition of Visual Studio that connect to a SQL Server that is not the included 'Express' server ?
Any hints appreciated :-)
Hi,
I want to change an activity indicator color gray/white to black color. Is it possible to change the color to Black?. If yes, Please guide me or give some sample code.
Thanks in Advance.
I've been spending considerable time on this, while finally realized that most articles are teaching how to access RESTful web services but not SOAP.
Is this possible? I mean can I write my own clients codes to invoke SOAP request to remote web server?
I am trying to create a professional chat application using Flex. Unfortunately, the security window that pops up asking the user to allow or deny the application access to the web cam, (the Adobe Flash Player Settings Window) doesn't really look that great and I'd like to be able to skin it.
I'd really love to make this window look nicer. Is it even possible to skin this window?
I have created an application that looks like a news ticker. It suppose to run on a machine which has PPT slide show running on it always. I have set
this.TopMost = true
So the ticker application overlaps the PPT. But I want that the ticker application as well as the ppt are seen together. This is possible only if I can cascade the applications.
Can someone please help?
I'm playing around with Google Analytics goals / funnels. I would like to use this to track a checkout process, but the web flow urls are formated in a way that makes this very hard.
Would it be possible to change:
http://localhost:8080/checkout/checkout?execution=e1s2
.. into something more like this:
http://localhost:8080/checkout/checkout/shipping?execution=e1s2
or any thing else that would make them more trackable with Google Analytics?
Hi,
A bit of a silly question really - but I was wondering would it be possible to take a snapshot of a OS you are running on a computer, the convert it or so it can be run as a virtual machine in VMware or Vitual Box?
Thanks!
Hello,
Is it possible to create a filter in a Drupal 6 View that is only applied for registered users?
For one filter I need I'm using the user vote (With fivestar and votingapi) to know if they user already voted this node or not, and when the user is annonymous, is working as if all the votes from all the annonymous users where from the same. This is why I need to add this filter, but ignore it in case the user is annonymous.
Thanks a lot in advance for the help!
Following up on a debate that I was having with a colleague. What is the community's opinion on whether or not a section of code can be adequate with respect to decision coverage (all possible decisions have evaluated to true and false) but not block coverage, and if a section of code can be adequate with respect to condition coverage (each simple condition in a compound conditions has evaluated to true and false) but not block coverage. Thanks.
Is it possible to get information about the commenter with the comment_text action in wordpress?
What I want to do is modify a comment someone makes based on who they are, like if they are user_a I might want to make their comments show up as green, if they are user_b I might want their comments to be bolded, or formatted differently.
I do not have many kinds of Exceptions in my project.
Right now,(we use MVC) I have the try catch encompassing my entire code:
try{
fronController::dispatch($somthing...);
}catch(Exception $E){
//handle errors
}
I wonder if there is a good reason to use the try-catch block in as specific as possible way as I can or just keep it general as it is now?