0
votes
0answers
22 views
Problem with drawing focus frame in Qt
I'm trying to create custom widget inheriting QFrame. All works fine, but I'm unable to draw the focus rectangle around my widget. Below is the sample code I use for drawing:
frame.h
class Frame : …
0
votes
1answer
15 views
Build safe search conditions for SQL WHERE clause
I need to build search conditions to be used with WHERE clause. This search condition is then passed to a different application to be executed as a part of SQL query. Because there search conditions …
3
votes
3answers
20 views
Why is it important to load a JS framework from Google’s AJAX Libraries API ?
I remember reading somewhere that it is a lot better to load a JS framework from Google's AJAX Libraries API, rather than using a locally hosted one.
This means that instead of :
<script …
1
vote
2answers
589 views
Resource not found for segment ‘Property’
When using ADO.Net Data Services client to refresh an entity by calling the LoadProperty:
ctx.BeginLoadProperty(this, "Owner", (IAsyncResult ar) => ...
It throws an error on the server if the …
0
votes
3answers
26 views
Getting DropDownList values in a repeater
There is a following mark-up code:
ASPX Page
<asp:Repeater ID="GeneralRepeater" runat="server"
OnItemDataBound="GeneralRepeater_OnItemDataBound">
<ItemTemplate>
<tr>
…
4
votes
7answers
88 views
Java: How do I perform list operations with different definitions of equals?
Java: How do I perform list operations with different definitions of equals?
I have two lists of generic POJOs. I need to perform some set operations on the lists based on different ways of comparing …
0
votes
4answers
26 views
Printf c seems to mess the output of a simple C programm
Hi there. I have some code a add fractions.
#include <stdio.h>
#include <stdlib.h>
struct frac
{
int enumerator;
int denominator;
};
typedef struct frac frac_t;
frac_t …
0
votes
0answers
10 views
getting mysql data for different users
If i have two users one users have many posts in post table i.e
postid, post, userid, time(i.e timestamp)
and I have another table for friends i.e
id, friendid, userid, friend_sinc(i.e timestamp)
…
1
vote
5answers
45 views
How to remember all technologies we learn?
How to remember all technologies we learn?
There are so many technologies for programmer and all can't be kept in memory.
Of course, we all have our bookmarks in delicious where we store useful …
0
votes
1answer
18 views
Client populating server collections at runtime
I am adding to a List of DateTime objects on the server every time a date is selected on a Calender control by the client, and in turn highlighting all the selected dates on the control. I'm able to …
0
votes
0answers
5 views
Implementing Wilson Score in SQL
We have a relatively small table that we would like to sort based on rating, using the Wilson interval or a reasonable equivalent. I'm a reasonably smart guy, but my math fu is nowhere near strong …
2
votes
6answers
134 views
Drupal development and use by professional programmers .. are there specific pitfalls or advantages?
Background: Long ago Microsoft Access gained a lot of popularity because you could build pretty powerful desktop database applications with point-and-click ease. It seems like Drupal is now doing the …
0
votes
0answers
1 views
A special merge of datatables. (ADO.NET)
Hi,
Say I have this existing code:
datatable dt = new datatable();
for (i=0;i<...;i++)
{
dt = ..\\gets the i'th datatable somehow.Note: all datatables share the same scheme.
…
0
votes
3answers
22 views
Scope of jsp:useBean
home.jsp
<jsp:useBean id="username" class="java.lang.String" scope="application"/>
<%
username="Jitendra";
%>
<jsp:include page="include.jsp"/>
include.jsp
…
0
votes
1answer
6 views
Trouble with tableview cell style - UITableViewCellStyleValue1
I'm using a table view to display a list. Only one cell will have UITableViewCellStyleValue1
The problem is that when scrolling up/down, the detailed text is not displaying well. here's the code.
// …
