Hi
I am designing a remote CD/DVD burner to address hardware constraint on my Machine.
My design work like that :(Analogous to network paper printer)
Unix Based Machine (acts as server) hosts a burner.
Windows based machine acts as client.
Client prepare data to be burn and transfer it to server.
Server burn the data on CD/DVD.
My Question…
I have created Panorama control and binded PanoramaItem from ItemSource. Now when i am changing the selected Panoramaitem by swiping over them the Selected index is always set to -1. I dont know what wrong i am doing while implementation. neither selectionchange event is getting fired.
Code:
<phone:Panorama Grid.Row="1" Visibility="Visible"
…
input file:
1,a,USA,,
2,b,UK,,
3,c,USA,,
i want to update the 4th column in the input file from taking values from one of the table.
my code looks like this:
my $customer_dbh = DBI-connect("DBI:Oracle:$INST", $USER, $PASS ) or die "Couldn't
connect to datbase $INST";
my $cust_smh;
print "connected \n ";
open FILE , "+$input_file" or die "can't…
i want to develop web page in asp(2.0) c#. in this page i want to create and show multiple thiumbnail. for example c:/image and this folder have 5 .jpeg file. when run my web page then show all thumbnail of 5 images without saving thumnails.
it very urgent
I am migrating to SVN from CVS. In CVS I have various aliases defined in CVSROOT/Modules file. That helps me to checkout multiple directories in one go.
For example:
Defined alias in CVSROOT/Modules file as below
=--------------------------------------------------------------------------=
my_alias /dir1 /dir2 /dir3 /dir4 /dir5 /dir6
…
I am using Explorer_WindowStateChanged to identified tab change event in IE 7 or IE 8.
My problem is, When i open any link in new tab (By right click on link and click on open in new tab), then somtimes Explorer_WindowStateChanged event does not fire and i am not able to detect that a new tab has been opened.
…
While I am new to c and want help in this program
my code is :
#include<stdio.h>
#include<conio.h>
void main(){
int suite=2;
switch(suite) {
case 1||2:
printf("hi");
case 3:
printf("byee");
default:
printf("hello");
}
printf("I thought somebody");
…
i'm atinesh currently started learning c++ but i've one doubt about how to check the data type of input variable in c++.
#include<iostream.h>
void main()
{
double a,b;
cout<<"Enter two double values";
cin>>a>>b;
if() //if condition false then
cout<<"data…
I'm to work with goo.gl for URL shortening. I need to make the following request:
POST https://www.googleapis.com/urlshortener/v1/url
Content-Type: application/json
{"longUrl": "http://www.google.com/"}
my html:-
<form method="post" action="https://www.googleapis.com/urlshortener/v1/">
…
What is the correct strategy to limit the scope of #define and avoid unwarrented token collisions.
In the following configuration:
Main.c
# include "Utility_1.h"
# include "Utility_2.h"
VOID Utility() // Was written without knowing of: Utility_1 & Utility_2
{
const UINT ZERO =…
Hi
I am a c++ programmer , I know little bit about java. As in java programmer do not deal with memory directly, in C++ application most of crashes are due to memory corruptions.
So an application written in Java will never crash due to memory relate issue.
Thanks
Hi
I am a c++ programmer , I know little bit about java. I know that java programmers do not have to work with memory directly like C++. I also know that most crashes in C++ appliations are due to memory corruptions.
So can an application written in Java crash due to a memory related issue?
…
I know C++ moderately and have written a few medium sized applications with it. To which field (ex. embedded software, gaming etc.) can i move into? what are the prospects?
Hello Everybody,
I am very new to TDD, not yet started using it. But i know that we have to write test first and then actual code to pass the test and refactor it till good design.
My concern over TDD is that where does it fit in our SDLC. Suppose i get a requirement of making order…
I am designing a remote CD/DVD burner to address hardware constraints on my machine.
My design works like this: (analogous to a network printer)
Unix-based machine (acts as server) hosts a burner.
Windows-based machine acts as client.
Client prepares data to burn and transfers it…
Hi
I want to conduct search on a particular column of a table in such a way that returning result set should satify following 2 conditions:
Returning result set should have records whose 90% of the characters matches with the given search text.
Returning result set should have…
I am fetching my data from google analytics core api. I came to know that we can fetch only 7 dimensions using api, But here I need to fetch more than 7 dimensions with correct metrics. Is there anyway (other than using paid google analytics) to fetch more than 7 dmensions with…
i am having a table with 3 col. viz id,profile_id,plugin_id.there can be more than 1 plugins associated with a single profile now how can i fetch from the database all the plugins associated with a profile_id which comes from the session variable defined in the login page
when…
I have a 2GB big text file, it has 5 columns delimited by tab.
A row will be called duplicate only if 4 out of 5 columns matches.
Right now, I am doing dduping by first loading each coloumn in separate List
, then iterating through lists, deleting the duplicate rows as it…
i like to point out that i need some help with my home work, ok the lectuer gave us the idea of a program and we have to make it from bottom to top.
got to have user to type in two set of string.
pointers take in the value and then puts into a prototype
i need to make a…