local

UIWebView locally save images and just load html

Hello, i want to load just the html from the web and show the images from the local resource. This helped me a lot, but is the path to the resource on every device the same? Or does it depend on an installation path or similar? http://stackoverflow.com/questions/1577576/show-content-with-uiwebview-on-the-iphone ...

How do I copy local Google App Engine Python datastore to local Google App Engine Java datastore?

I have around 4000 entities that I need to insert into a Java App Engine datastore. As I understand it, only the Python version of App Engine currently has tools to upload data from a CSV file to a datastore. So, what I have done thus far is follow the instructions at http://code.google.com/appengine/docs/python/tools/uploadingdata.htm...

Using a pointer to a local variable in Dynamic SQL

I am having trouble with dynamic SQL. Early in my code I assign data to a bunch of local variables. I want to access these later in my code and use the data values. The code example below shows a simplified example to explain what I am trying to do. -- ---------------------------------------------- -- Declare and set the data into a ...

Should we create local web services within an Asp.Net application which are called by the application itself?

Hi, I've moved to a new project team and while going over the codebase, found that the team have created a number of local web services which then get called by server code in other web pages within the same application. I'm somewhat puzzled by this architecture, as I'd thought local web services were something you'd then access from t...

T-SQL - Creating a Local User On Windows OS

Hi, My requirement is that I need to create a local user on my System (On my Windows OS) using T-SQL. And I need to set this user under ‘Administrators’ group. Using this local user I should be able to login to my Windows OS (At System Startup). Is it possible? If so may I know how could we do this? Many Thanks, Regards. Anusha. ...

Image not displaying from local html on iPhone webview

I am calling an infoPage.html as below with an image from Resources and referenced as img src="eye.png" in the html, the text displays correctly but I cannot load the image (only a ? appears), any suggestions... - (void)viewDidLoad { [super viewDidLoad]; CGRect webRect = CGRectMake(15,40,300,450); UIWebView *myWebView = [[UIWebView ...

Changing Local Security Policy Programatically

hi i want to change Local Security Policy "Interactive logon: do not require ctlr+alt+del" in c# how can i do this Regards Ehtsham ...

Database records lost when debugging

Why are database records lost when I'm debugging the winforms application? When I start the debugging app, records are saved into the database, but when it is restarted, all of the database records are lost and the database tables are empty. How can I debug an application without losing the data? ...

Silverlight and local sockets

Hi, For the last couple of days I've been trying to figure out how sockets can be used in silverlight. This thread has been helpful in finding resources but Im still trying to find out if it is possible to create 'local' sockets. So could a silverlight application create a socket on the userside for the user to connect to using an iPh...

Using SQLServer Express edition instead of Compact edition as local database cache?

By default, when you create a local database cache using the wizard provided by Visual Studio 2008, it will create a SQL Server Compact edition database for you, and provide you synchronization capability between the cache and remote SQL Server using Sync Framework (1.0). This allow us to provide the offline capability in our client ser...

Local connection with Database

How do I connect my local client application with the database on the server? I am using Delphi and MySQL. ...

How to identify if currently logged in user is an LDAP user in Solaris

Hi I am new to LDAP. I want to know how to identify if the currently logged in user in Solaris is a LDAP user or local user. Any command? or any C Run time functions like getspname, getpwnam which returns an attribute saying it is an LDAP user or local user after user logged in. I am looking for Solaris. ...

How do I install Perl modules on machines without an Internet connection?

I need to install my Perl-based software on networked machines which aren't connected to the internet. Therefore, I would like to download specific versions and/or latest versions of the Perl modules and I would also like to know if there is an install procedure required for these modules. Background: The machines aren't connected to th...

Local Install of capistrano

This question is specific to capistrano, but it's a general gem question too. I have to download and then install gems - no remote connection available. I went to github and downloaded capistrano as tarball. I get the file thoughtbot-capistrano-d1229b2.tar.gz To install do I now... - rename the tarball with a .gem extension and run ...

Add a member variable / method to a Python generator?

Can I add a member variable / method to a Python generator? I want something along the following lines, so that I can "peek" at member variable j: def foo(): for i in range(10): self.j = 10 - i yield i gen = foo() for k in gen: print gen.j print k Yes, I know that I can return i AND j every time. But I do...

Git version is different between remote and local copy

Do you think I will have any kind of problem by using different git software versions between the remote and local copy? In my case the remote is 1.6.5.7 and the local is 1.6.5.1 (few bug fixes) Thx ;) ...

Custom persistent-storage?

Hello! I need to make a desktop application that stores data, I want this data to protected, and besides, the user shouldn't have to install any data-servers (i.e. SQL-Server, office etc.). I thought XML would be the best idea, the question is how can I protect the data whilst enjoying the other cool features of it which is XML literal...

UAC on Win2k8/VIsta x64 - local "Administrator" works but domain account in Administrators group fails?

I have come across a strange problem in one of our applications on win2k8/Vista x64 with UAC enabled. It is a process which hosts the UI for our service and runs in the context of the logged on user. When logged in as a domain user who is a member of the "Administrators" group, writing to the registry under HKLM fails due to UAC with ac...

Large XML Files and Pagination, is it possible?

The problem When opening very large XML files locally, on your machine, it's almost a certainty that it will take an age for that file to open - it can often mean your computer locks down because it thinks it's not responding. This is an issue if you serve users XML backups of rather complex databases or systems they use - the likehood...

Visual Studio 2008 - Open Website from Local IIS problems

Hi there, I've spent a great long while googling this problem without any luck and I've always found great answers here, so here it goes: [BACKGROUND] I have a web application which was developed in C# with Visual Studio 2008. It was a part of a solution with another project which contained a web service. This was not created "IN" II...