All Questions
0
votes
0answers
3 views
Regular expression to find out for special characters in Java
My requirement is 'Following characters are not allowed for value name: [ $ & + , / : ; =? @ " < > # % { } | \ ~ ^ [ ] ` ] '
Can anyone provide Regex for Java Pattern-Matcher?
Please its ...
0
votes
0answers
3 views
Incorrect Variable Font Size for Generated Image depending on Browser
I have a simple PHP script that takes a base image adds some text on top and delivers the result to the browser.
The problem is that the text appears to be different sizes on different browsers. I ...
0
votes
0answers
2 views
Add/remove record from one table/list to another table/list by clicking add/remove
I have 2 lists of users.
1. I will search record on the basis of name. In front of each record there is a add Link. On clicking on that Add link record should add in to below list of users which I ...
0
votes
0answers
2 views
Is there a new way to create a New Line seperator using Label object in C#?
I'm using VS 2010.
Is there a new way in making a line separator in C# Windows Forms? I sometimes use default background color and total white background.
Both of this method i found are not ...
0
votes
0answers
2 views
Using Marionette Compositeview within a Layout region
I'm creating a portfolio type site. The project page shows general information about the project and a gallery.
I've split it up, so the project page is a Marionette Layout. This layout renders ...
0
votes
0answers
3 views
Import Public Private key pair to a Keystore
I have created a public private key pair using the KeyPairGenerator class in Java. From this key pair I have generated the CSR request using the PKCS10 class which has been sent to a CA for ...
0
votes
0answers
3 views
Sending message with custom URL though Geoloqi
I'm looking into Geoloqi as a service for sending messages and I'm wondering about the url parameter described here:
https://developers.geoloqi.com/api/message/send
Can I use a custom protocol/URL ...
0
votes
0answers
3 views
jquery mobile changePage double slide error effect, how to?
the issue i'm encountering is when i use $.mobile.changePage with an external page.
if i have one document with 2 pages (#index and #main) then i can use:
$(document).on('pageinit', '#indexPage', ...
-1
votes
0answers
7 views
Javax.script: Language to use?
I am making a game that uses scripts for things like ai and making things interact. This is manly so it is easy to make mods. The language should be as object oriented as possible. The only scripting ...
0
votes
0answers
2 views
Call WebService from a WebService with JaxWS
I have created a WebService, and I need to call another WebService from it.
I am using the JaxWS annotations and have gotten to deploy the war onto WebSphere, only to get the exception:
...
0
votes
0answers
3 views
How to diagnose this exception from Invoke-Sqlcmd?
I'm running the following command (smallest reproducible example I could come up with):
Invoke-Sqlcmd "select * from sys.databases" | %{
Invoke-Sqlcmd "select 1"
}
I'm getting the ...
0
votes
0answers
5 views
Remember the input date in datepicker
I am using datepicker. I have two text fields fromdate and todate. For Example I input month of May when I submit and input a date again the default date should be May also not the current Month.
...
1
vote
0answers
3 views
perl XML::Simple attributes blank
I'm trying to parse some XML into Perl, but testing isn't yielding what I'd expect.
$buffer = qq[<DeliveryReport><message id="msgID" sentdate="xxxxx" donedate="xxxxx" status="xxxxxx" ...
0
votes
0answers
5 views
App.config not refreshing programatically in windows service
am creating the enterprise logging setting dinamically . I added the ConfigurationManager.RefreshSection("loggingConfiguration") to refresh the app.config in my windows service after saving the ...
0
votes
0answers
4 views
Retrieve / Submit Form Data via DOM object in VBA
I'm writing a macro that retrieves form information from a given URL, and then allows the user to resubmit and download the results for as many combinations of inputs as they desire. I have a version ...