Hi,
I have a PHP program and a VC++ program. Is it possible, when i click on a button in PHP user screen, I should get an event notification in VC++ service program and do the appropriate action in VC++..
Thank u..
User Profile
Collapse
-
you can link 2 tables if both are in the same schema. Otherwise its not possible in postgresql.... -
-
-
the info what u gained is right. please be specific when u write such queries. what type of info do u need regarding this?...Leave a comment:
-
try the link
http://www.codeproject .com/cpp/
It may help you....Leave a comment:
-
your pgm is working fine for me.
#include "stdafx.h"
#include <stdio.h> /* needed for printf and scanf */
int main()
{
int a=1, b=2, c=3;
a += b += c += 7;
/* (a +=( b += (c += 7))) */ /* values of a=13, b=12, & c=10 */
printf ("%d,%d,%d", &a, &b, &c) ;
return 1;
}...Leave a comment:
-
Check google. You will get 1000's of information regarding this....Leave a comment:
-
Try this
#include <iostream.h>
#include<string .h>
#include<stdio. h>
void main()
{
int i=0;
char ch[20],*s,ch1[20];
printf("Enter ur sentence:\n");
gets(ch);
s=ch;
//while there is a character to be read ,move on
while(*s!='\0')
{
if(*s==' ') // if found a 'space' ,ie if found a ' word'
{
...Leave a comment:
-
The memory will be allocated for a variable when it is declared....Leave a comment:
-
Recieving notification when a table changes
Hi,
Is there any way to know when a change in table occurs for a postgresql table to the front end , VC++ ?
Please reply me soon.
Anita
No activity results to display
Show More
Leave a comment: