Need to create WCAT extension DLL that query database for next available record nubmber and feed back it into senario request POSTed Data..
How would do that..
Thanks in advance
Hi,
I have a list box with multiple selection option , i wanted to display user the selections he has made .
How to display that users in stylish way .
Can anyone help me on this .
Thanks
Smartdev
Hi guys,
I've a doubt. How can I configure my application to use www.mysite.com/myfolder instead of www.mysite.com/myfile.php?
I need to a create a profile page for every user registered to my PHP application but it's not so clear how can I do that. I've seen it's possibile with page frame, but, if possible, I prefrer don't use it.
Thanks for the suggestions!
cheers,
Andrea
Hello,
If you've used google wave you probabely seen that you can insert widgets that are made by third parties without approval. the Question is : How this widgets can't inject XSS or steal the cookies, Are the widgets loaded in an <iframe> ? if yes, then how they can't redirect google wave to another page?
Thanks
I was asked to write a code translator that would take a Python program and produce a C program. Do you have any ideas how could I approach this problem or is it even possible?
Thanks, Boda Cydo.
Hi guys,
got a small problem, this code
echo '<input name="textfield" type="text" id="textfield" value="Roger" />';
echo 'Hello, '.$_POST['textfield'].'<br>';
should echo out "Hello, Roger", as roger is the default value, yet it gives out only "Hello, " and nothing else. Any suggestions?
Thanks!
I want to develop windows service in Delphi that communicates with an Oracle server via ADO.
Wich guidelines should I follow?
i really knew ADO, but i dont have experience with the windows services.
Thanks in advance.
Hi,
I'm trying to control a parameter with AE expressions and I need a triangle wave. I've got this so far:
freq = 20;
amplitude = 8;
m = amplitude;
i = time*freq;
m - (i % (2*m) - m);
Unfortunately this gives a saw wave (see below) and my math's a bit rusty, any takers?
Thanks!
PJ
http://i25.photobucket.com/albums/c73/pjburnhill/Screenshot2010-04-09at153815.png
I have a blur function attached to my ckeditor like so
editor = CKEDITOR.instances.fck;
editor.on("blur",function(e){
alert("hello");
});
you with me ?
now when I click on the flash button the editor blurs and causes the alert to show.
how to I stop that from happening and still get the alert to appear other times like when the user leave the editor area
thanks again
I am creating a web application in Ruby on Rails and I want to disable authenticity_tokens. When I create a form without the form helper methods, Rails gives me errors when I click 'Submit.' I really hate this.
Are there methods that generate the authenticity_token, or is there a way to disable it? Thanks
Hello,
Currently I am using Fedora 12/13 for web application (LAMP) development. Would serious users of LAMP consider any other flavor.
Usage is for my laptop.
If you require more info, pls request, just wrote what I am looking for
Thanks
Jean
Hi,
if I want to convert between two Enum types, the values of which, I hope, have the same names, is there a neat way, or do I have to do it like this...?
enum colours_a { red, blue, green }
enum colours_b { yellow, red, blue, green }
static void Main(string[] args)
{
colours_a a = colours_a.red;
colours_b b;
//b = a;
b = (colours_b)Enum.Parse(typeof(colours_b), a.ToString());
}
Thanks,
Ross
hi,
I really like the dashboard line chart which is used in google analytics, Which charting solution they use, is it made by google, i can't find it in google charts.
Thanks
I am looking for a free WYSIWYG editor of XSL-FO.
Specifically, I would like to be able to design the FO file through a visual editor.
I am aware of some that are available for purchase and evaluation, however I was wondering if there are any free editors available?
Thanks
Hello,
I want to use an input field and beside the input field should be displayed an date select field in which the user can choose the date and this date will then be filled in the input field. Do you know an easy solution without using prototype?
Thanks for your help,
Matthias
Hi all,
I'm using Eclipse CDT and Boost.Test(with Boost.Build).
I would like Eclipse to parse output of Boost.Test generated during by run of test suites during build.
Does anybody know how to achieve this?
Thanks in advance
Hi,
After search a long time for a performance bug, I read abut denormal foating point values.
I have an Intel Core 2 Duo and I am compiling with gcc, using "-O2".
So what do I do? Can I somehow instruct g++ to avoid denormal values?
If not, can I somehow test if a float is denormal?
Thanks!
Nathan
I'd like to keep an object appear to remain in the same place while moving the camera.
I'm using this script http://pv3d.org/2008/11/19/dragging-mouse-for-camera-orbit/ to orbit an object using a mouse drag. But I have an object in the scene that I would like to keep still. How to I do this?
Thanks,
Josh
Hi,
I need to process the incoming predefined ASN format data(coming from verity of clients that uses BER library to build it) in my application server. This is typically an LDAP server where every request will be in a predefined ASN format. Can i use Google's protocol buffers to process the requests in the server side? Will it help any way to improve performance of my servers request handling? Is it anyway reduce the number of malloc() calls that happens while processing ASN messages?
Thanks,
Naga
I need to deploy some software through SMS/SCCM and the software requires that an ODBC connection be created in Windows. The connection information I was given requires a user name and password. I have a batch script to import the connection information into the registry, however I don't know how to go about putting the user name and password in. I'd like to script this or put it in some kind of distributable package.
Thanks,
-Mathew
Hi,
I'm trying to replace or add more options into the action sheet popup in uiwebview. When touching long touch on a link standard uiwebview popup shows up. I saw some apps which did it, but i can't figure it out.
the standard options are : open or copy, i want to hide copy and add send email.
Any help ?
Thanks
Albert
Hello,
I'm developing a web application and have created a war file. If I deploy it to my tomcat server, it is used without being unpacked (which is the setting I want to have for this server).
For unpacked web apps I have a policy file to grant AllPermission to my application
grant codeBase "file:${catalina.base}/webapps/tc/-" {
permission java.security.AllPermission;
};
But what has the codeBase to be for unpacked war files?
Thanks,
André
So I can call a php page using jquery
$.ajax({ type: "GET",
url: "refresh_news_image.php",
data: "name=" + name,
success: function(html) {
alert(html)
$('div.imageHolder').html(html);
}
});
However this getting a bit messy, I have a few .php files that only really preform very simple tasks. If I want to call a method
$images-refresh_image();
is this possible. Failing that I could just create a big file with lots of functions in it?
Thanks,
Ross