Hello, I'm going to use boost INFO parser
There is examples of file structure but not of using. Could you help me with reading key/value from boost info file?
Hello,
I'm required to write a SSL connection, but It requires a signed certificate. There is a way to disable the checking so that I can only test my application.
Regards,
Hello,
I am just wondering would it be better to do this:
if((fd = (open(filename, O_RDWR)) == -1))
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
or this
fd = open(filename, O_RDWR);
if((fd == -1)
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
Many thanks for any suggestions,
Hello.
There is a broken kernel module, due to which I can not even load the OS, so I can not delete or fix it. Is it possible to skip this module at boot, using the kernel's parameters or something?
Thanks.
Hello everyone,
I am using SQL Server 2008 Enterprise. I met with issue which says line 9 of store procedure foo is meeting with dead lock issue. My question is how to find exactly the 9th line of the store procedure?
My confusion is because of coding format issue, how to locate 9th line correctly.
thanks in advance,
George
Hello,
I would like to use this function in C#, but I need to get 2 types of processes.
Is it possible to do something like this:
process.getprocessesbyname("process1", "process2");
How can I get the instances of 2 processes with different names?
TY
hello dear,
I am new to Nhibernate, I am trying to get record by ID and I am getting exception
Unknown entity class: DAL.Product
here is my line of code where I am getting exception..
Repository.Get<Product>(id);
What could be the issue?
Thanks for your help.
Hello
To get Windows users to log on as regular users instead of admin, I need to check that all their applications run OK with limited rights.
Is there an application specifically aimed at checking that an application can run with limited rights, or is SysInternals' Process Monitor what everyone uses for this purpose?
Thank you.
Hello All!
I have a query with grouping on one of the fields in Crystal Reports. My question is - is there a way to pass that value into a subreport?
I.e. if there are three values in that field, there will be three groups in report. I want a subreport in every group to have that value as its parameter.
Is that possible to accomplish with CR 2008?
Hello,
I search a way to Get Information from a local printer....
Maybe with the SNMP Protocol?
The printer is connected with USB or PPI....
Is this possible?
Thanks
Werewolve
Hello, I have a problem...
In my view i have Textfield.If i move that TextField it should open iphone keyboard occupies.Extra TextFields doesn't display
Please help in this issue.
Hello,
How to get file size of pdf,gif,doc etc using xcode.
suppose to i get pdf file form resorce folder so how can i get size of for this file.
is there any way?
Thanks you,
Hello,
I configure my web application to use SSL using my own self signed certificate. Everything is working fine but here my whole site is https now as i used :-
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
However, i only want my login page to use SSL and not complete site. What changes do i need to make in my application?
Thanks in advance :)
Hello friends
The below link has my web page and i would like to validate all the fields using jquery, the problem is I dont have much space around the fields to display ordinary error messages. I am am a novice and thinking of using jquery validation, so could any of you suggest me the best possible way to do that.
http://www.4shared.com/photo/BowU9nFB/page.html
Thanking You,
Indranil
Hello,
I'm trying to make a Terminal Unix command with XCode, and I'm having a little trouble...
What I've been doing is creating a "Standard Tool" written in C in XCode, then copying the produced executable to Developer/Tools/.
What am I doing wrong?
Thanks for any help in advance.
Are you an iPhone/iPad/Android programmer with a designer soul? If so we would like to hear from you.
Drop us your best work/portfolio and than we talk.
[email protected]
Cheers
T
Hello,
I am trying to implement SHA2 encryption instead SHA1.
For this, I know that bit number between these two hash algorithms are different and it confuses me.
How can this be achieved and at what parts do I need to make required changes.
I can use any open source library from Java, Python and any other major programming language.
Regards
Hello! I use the UIImagePickerController class to display the Camera Roll contents. I have a second thread that saves an image to the Camera Roll. When the images has finished saving, it does not appear in the Camera Roll that’s open. Is there a way to force the Camera Roll to refresh? (Other than dismissing and displaying it again.)
Hello,
I have a value range from 0 to 255.
There is a method that returns an array with a min and max values within this range, i.e: 13, 15, 20, 27, 50 ... 240
where 13 is the min and 240 is the max
I need to scale these values so that 13 becomes 0 and 240 becomes 255 and scale all the other values between them proportionally.
Is there any C# method that does that?
thanks!
Hello folks,
I have a really short question: Is it possible to communicate/use USB devices on Android OS? I assume it might be tablet device.
Lest say i want to connect some sort of USB card scanner to android tablet. Will it work? Do i need to write drivers by myself?
Thanks.
Hello, given the following structure:
struct nmslist_elem_s {
nmptr data;
struct nmslist_elem_s *next;
};
typedef struct nmslist_elem_s nmslist_elem;
Where:
typedef void* nmptr;
Is it possible to write a MACRO that retrieves the data from the element and cast it to the right type:
MACRO(type, element) that expands to *((type*)element->data).
For example for int, i would need something like this: *((int*)(element->data)) .
Hello,
I am trying to run a for loop for a backup system and inside that i want to run a SP that will loop. Below is the code that does not work for me..
Any ideas please?
Dim TotalTables As Integer
Dim i As Integer
TotalTables = 10
For i = 1 To TotalTables
objDL.BackupTables(220, i, 001) ' (This is a method from the DL and the 3 parameters are integars)
Next
I tried the SP and it works perfectly in SQLServer
Hello,
I got an issue while trying to display a jquery UI slider with its range based on a values read with PHP from a text file.
Its seems that it's a syncrhonising issue as I get the error: "An attempt was made to use an object that is not, or is no longer, usable" code: 11"
Is there a way I can force the jquery UI slider to wait for the value to be present or to work in synchrone mode ?
Thanks in advance.