Hi friends,
I am using custom table view cell to show to table view
- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier])
{
m_mail_status = [[UIImageView alloc] initWithFrame:CGRectMake(295, 10, 18, 18)];
[self addSubview:m_mail...
Hi guys,
I've a big problem.
I using this C# function to encode my message:
byte[] buffer = Encoding.ASCII.GetBytes(file_or_text);
SHA1CryptoServiceProvider cryptoTransformSHA1 = new SHA1CryptoServiceProvider();
String hashText = BitConverter.ToString(cryptoTransformSHA1.ComputeHash(buffer)).Replace("-", "");
On java side, I use this ...
I am using Rolling file appender with rolling style Size, it rolls fine on my XP box and one 2003 server. But its behaving wieredly on on other 2003 boxes, ie while rolling it truncates the file.
...
i have a problem put 2 jquery scripts in one page. only one is working until i remove the second script the other working.
here is the code of easy slider
<script type="text/javascript" src="js/jquery.js"></script>
$(document).ready(function(){
$("#slider").easySlider({
auto: true,
continuous: true
});
});
...
hi all,
how to download jar files for rectifying the package importing problems in android.i cant find jars downloading site for android.
please help me
renu
...
Hi,
I am working in an Agile environment and things have gone to the state where the client feels that they would prefer Waterfall due to the failures (thats what they think) of the current Agile scenario. The reason that made them think like this would be the immense amount of design level changes that happened during the end stages of...
Hello and Good Morning ,
I have problem using QT application . I am posting little code here
QApplication a(argc, argv);
QString path = qApp->applicationDirPath();
qApp->setQuitOnLastWindowClosed(false);
a.addLibraryPath(path+"/plugins");
TryQt w;
w.show();
return a.exec();
this is how i am starting my Application . In the A...
Hi,
I am having a problem doing wildcard searches in lucene syntax using the edismax handler. I have Solr 4.0 nightly build from the trunk.
A general search like 'computer' returns results but 'com*er' doesn't return any results. Similary, a search like 'co?mput?r' returns no results. The only type of wildcard searches working currren...
Hi everyone,
I'm currently working on an MS Excel worksheet which contains 1277 checkboxes, spread over 96 rows. In this sheet, there is a column in which the total of the checked checkboxes is placed.
The idea is that when a checkbox is ticked, the total sum in this control column is added by one.
The code for this works fine, because...
I do some work on on old tables based site. It is being replaced but I would like it to work for now.
One of the pages in question is http://www.gdsofusa.com/marantec_garage_door_openers.html. When this page (and some others) is viewed in Safari 5.0 (7533.16) and probably others, the page content is off to the right.
I just need to fix...
After having solved every of my previous issues to get the code running for retrieving videos from the sdcard and displaying them in the GridView, I still cannot see the videos. I don't know what I have done wrong that they won't show and the array isn't passed on.
If someone could help me out, please, because I really haven't got a cl...
Hello,
I'm trying to set a property like so -
-interface:
@property (readwrite, assign) CGColorRef otherBallColor;
-someMethod:
CGColorRef ballColor = [UIColor colorWithRed:255.0/256.0 green:165.0/256.0 blue:239.0/256.0 alpha:1.0].CGColor;
[self setOtherBallColor:ballColor];
As soon as I try to access the value it crashes -
-s...
Hey guys,
Consider a list of numbers L=. We can only have the series between +=2^j, while 0<=j<=32.We have to implement an algorithm which implements the largest product.
...
I have a problem where Google Chrome on Windows places the first letter of the paragraph differently compared to all the other browsers such as IE, Firefox, Safari. The difference is in the vertical placement - the letter appears higher in all other browsers (the same way in every one of them) but lower in Google Chrome, making styling t...
Hi,
I have a common class say for eg Class A which extends AsyncTask and has all the methods implemented i.e. onPreExecute, doinbackground and onPostExecute.
Now, there are other classes which want to use Class A object.
Say Class B uses class A in the below manner
A a = new A(context)
a.execute(url)
Then i fetch the result in get ...
I'm not sure what Bjarne meant with this exercise:
"Convert the desk calculator to use a symbol structure instead of using the static variables number_value and string_value."
Did he mean puting those 2 variables inside a structure and then using them through a structure?
Edit: also one exercise related to the clculator and it says:
"...
Hi,
I created a WCF client service (a Windows service) in C# which starts a BackgroundWorker in the OnStart to do the core functionality in the background and leaving the main thread managing the service itself. Maybe this approach is overkill but it's working without problems on my dev machine.
If I try to run it on the client machine...
As we all know yesterday PHP released new version of 5.3.3. My question is following:
What kind of possible problems could we have if we update PHP 4.0 into up to date 5.3.3.? I mean were their any functions or operators on PHP 4.0 that don't work on PHP 5.3.3. and kind of such a problems?
That's it. Thank you.
...
thanks a lot for helping for previous one.
now another is here.
this is the response when i try to run the code.
<h3>copy of this order has been emailed to you for your records.</h3>
<?php echo $html_body;
//send email
$headers = array();
$headers[]= 'MIME-Versioon: 1.0';
$headers[] = 'Content-type: text/html;charset="iso-8859-1"';
$hea...
I have a /Register [GET] Action in the controller that pre-poluates a view-model with a string and an integer and returns: return View(myModel);
I can see the string being populated in the textarea and the id being populated in a hidden input. Yet when the form gets POSTed, the string value is null and the int value is 0. I verified tha...