Hi,
I'm looking for the best prestashop newsletter module, that allows me to manage custom newsletter layout and newsletter sending.
Has anyone ever used one? Wich one would you recomend?
Thanks!
Hi all, I'm using the jQuery multi-file upload plugin found here:
http://www.fyneworks.com/jquery/multiple-file-upload/
I don't see in any of the examples though a way to "reset" the file-picker,
clearing out any currently selected items.
Any one know how to do this?
Thanks!
On iPad, I have a parent-child view hierarchy. The parent is a fullscreen EAGLView and the child is a UIToobar. The parent has pan/touch/pinch gesture recognizers attached. When gestures occur on the child (toolbar) they are passed on to the parent (fullscreen view).
Not what I want.
How do I force the toolbar to discard/ignore gestures?
Thanks,
Doug
I have an asp:ImageButton with OnClick="Btn_OnClick".
In Btn_OnClick I have this line:
DataTable dtTable = (DataTable)Session["someSessionKey"]
and dtTable is altered in the function.
I've noticed that if the button's clicked more than once, the dtTable I take from the session contains the altered table, probably meaning dtTable is not a copy but a reference of the session variable.
How can I alter a copy of Session["someSessionKey"], and not the actual value?
Thanks!
Hello guys!
The reference says this:
"You should call this function from the main thread of your application only."
But I would like to get the current graphics context from separate threads. What do you think? What can I do to reach this?
Edit:
Thanks guys for the answers. I don't know which is good for me at the moment, but thank you very much.
Hi,
I found this code for alphanumeric check ("Letters, numbers, spaces or underscores") but I want to change so I will be able to write only letters or numbers. Can anyone tell me how to change this code:
function(value, element) {
return this.optional(element) || /^\w+$/i.test(value);}
Thanks!
Greg
What I need to do is to break atom to tokens. E. g.:
tokenize_string('Hello, World!', L).
would unify L=['Hello',',','World','!']. Exactly as tokenize_atom/2 do. But when I try to use tokenize_atom/2 with non-latin letters it fails. Is there any universal replacement or how I can write one? Thanks in advance.
Hiya,
I'm having trouble running Django on IIS 6 and was hoping someone could help!
I've followed this guide exactly a number of times: http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer
However, when I try and view my site I always get the same message:
"The specified module could not be found."
Has anyone else had this problem? Does any one know the steps to fix?
Thanks!
I am trying to get a handle on Solrnet and interacting an ASP.NET site with a Solr server. However, the sample app (on the code repository) is MVC based ,does anyone know of a version in plain vanilla ASP.NET?
Thanks
Hey there,
I know this can't be that hard. I've searched, but I can't seem to find a simple solution. I want to call a method, pass it the length and have it generate a random alphanumeric string.
Any ideas? Are there any utility libraries out there that may have a bunch of these types of functions?
Thanks,
Howie
Hi,
I am using CodeSmith to Generate The Files in my Project. It has functionalities to Merge the C#/VB & SQL files using Insert Region & Preserve Region Strategies.
How Can I extend these to merge the XML files I am creating?.
Thanks
I am using Xcode iPhone(Mobile) simulator to run Selenium iPhone WebDriver Automation scripts for mobile Websites. Is there anyway to capture Network-Traffic on iPhone simulator similar to Selenium RC Network capture or BrowserMob Proxy for Web Driver.
Please let me know if you know way to capture Network traffic on iPhone simulator programmatically.
I do see some tools like Wireshark or HTTPScoop to capture network traffic but I need in a pro grammatical way to automate.
I need this scenario for pixel tracking.
Thanks
Sandeep
How can I show a busy server icon to a user for Django form post and remove it with failure or success message when a response from the background process is receive ? I cannot do the POST using javascript.
Thanks
I am trying to create a text file using VB.Net with UTF8 encoding, without BOM. Can anybody help me, how to do this?
I can write file with UTF8 encoding but, how to remove Byte Order Mark from it?
Thanks in Advance.
I'm sure this is really simple, but I can't for the life of me find any documentation explaining how to do this.
How do I get the results of a ManyToMany field inside a join as opposed to doing this:
{% for tag in article.tags.all %}
Which results in an extra query? What I'd like to do is fetch all related tags when I retrieve the initial article, so I could then do something like:
{% for tag in article.tags %}
Without the .all and the extra query.
Thanks!
I was wondering if there was a Sequence Diagram generator for C#?
Im using Visual Studio 2008 Professional.
If not is there a quick and simple software?
Im finding Enterprise Architect and Visio a bit to cryptic for a beginner.
I have found the Class Diagram feature on Visual Studio, which s very useful and am hoping for a equally useful simple program to generate Sequence Diagrams.
Thanks.
I'm used the Singleton Design Pattern
public class Singleton {
private static final Singleton INSTANCE = new Singleton();
// Private constructor prevents instantiation from other classes
private Singleton() {}
public static Singleton getInstance() {
return INSTANCE;
}
}
My question is how do I create an object of class Singleton in another class?
I've tried:
Singleton singleton = new Singleton();
// error - constructor is private
Singleton singleton = Singleton.getInstance();
// error - non-static method cannot be referenced from a static context
What is the correct code?
Thanks,
Spencer
Hi
I want to migrate one of our databasis from SQL Server Express to SQL Server Compact 3.5.
I'm using iBatis.Net but do not know what the providers.config must look like for me to be able to access SQL CE 3.5.
Can anyone help me out with this?
Thanks
Johan
Weirdly, the index page of my magento commerce is very slow, while when you navigate the products, brands, searchs etc is very fast, but everytime you click on the banner to go for home or enter the website, it take ages to load
I wonder what can I do about this?
I don't know where to start, since I am new at magento. I thought I could go on and read the code, but that would take ages too, since magento is very big. Maybe I can analyze it somehow?
Thanks,
Jonathan
i want to build a filter to block pornography sites so i have some questions :
what tools i need ?
what are the algorithms i have to use ? (speed , efficient )
where i can find an open source filter ?
and i want to use java .
thanks
Is there a tool or a simple way to transform XAML code from the shorthand syntax to the full syntax?
For example: moving from something like:
<_TextBox Text="{Binding Path=Formula.Production, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
to
<_TextBox
<_TextBox.Text
<Binding Path="Formula.NumCloses" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged"
</Binding
</TextBox.Text
</TextBox
?
Thanks
i have a LOB application with 30 fields to put in a form.
I found it very painful to put them in the window with a grid.
is there a productive way to build entry forms in WPF .
Thanks
John
Hi all,
I'm writing a Python+Qt4 application that would ideally need to pop up a window every once in a while, to display pdf documents and allow very basic operations, namely scrolling through the different pages and printing the document.
I've found the reportLab to create pdf files, but nothing about pdf viewers. Does anyone knows anything that might help. i was really hoping for the existence of something like the QWebView widget...
thanks in advance to all
Hi. I want to write a batch file that will take the contents of a file, and replace any environment variable references inside the file with the actual environment variable values. Is this possible? Basically, if a file had this:
%PROGRAM FILES%\Microsoft SQL Server\
then I would want the file contents to become:
C:\Program Files\Microsoft SQL Server\
after the batch script ran. This is just one example, but I want ALL environment variables to be expanded. Thanks in advance for any help!