I want to make an application in C# that will control(suppose generate click event on a button without clicking on flash file button) flash file and also get action event from flash file when a button is clicked or something is typed on flash file. Is it possible? Please help me.
Md Ali Naser Khan
Posts
-
Controll flash file from C# project and get action event from flash to C# application -
How to get control of context menu?I am using WebBrowser to display power point file. When I right click on the slide it shows a context menu. How can I get the control of the context menu? I need to get all the SubItems of the context menu.
-
How to get Windows media player status(playing/paused) by SendMessageI am using following code for media player play/pause operation HWND mpHandle = ::FindWindow(_T("WMPlayerApp"), _T("Windows Media Player")); if(mpHandle) { ::SetForegroundWindow(mpHandle); ::SendMessage(mpHandle, 0x0111, 0x00004978, 0x00000000);//Play/Pause } By the above code, if windows media player is playing then pause the player otherwise play. How can I get the status of media player whether it is running or it is paused?
-
How can I add multiple images in a field (suppose row=2, col = 1) of a ListView controlI want to display a list view that will contain data as follows: Column 1 will display normal text data, column 2 will contain multiple images and every image will have a click event. How can I do this?
-
How to Repeat execution of AT commands to read SMS from Mobile?I am using AT command to read sms from Mobile. I am using 1> AT, 2> AT+CMGF, 3> AT+CSCS, 4> AT+CPMS, 5> AT+CNMI, 6> AT+CMGL commands to read sms. All are working. But when I try to execute the 1> AT command after 2/3 minutes later it is not working? What I have to do to repeat the execution of the AT command?
-
How to Repeat execution of AT commands to read SMS from Mobile?I am using AT command to read sms from Mobile. I am using 1> AT, 2> AT+CMGF, 3> AT+CSCS, 4> AT+CPMS, 5> AT+CNMI, 6> AT+CMGL commands to read sms. All are working. But when I try to execute the 1> AT command after 2/3 minutes later it is not working? What I have to do to repeat the execution of the AT command?
modified on Wednesday, June 3, 2009 5:42 AM
-
How to receiving an incoming SMS message? in C#My mobile is connected to my PC by a data cable. I want to get mobile incoming message to my PC.I just want an example of DataReceived event handler of SerialPort object.
-
How to receiving an incoming SMS message? in C#I am using AT Command "AT+CNMI=2,3,2,1,0" to There is a event handler named 'DataReceived' of SerialPort object. But I don't know what will be the parameter and how to handle the parameter to receive the message. Could you please send a sample 'DataReceived' function?
-
How to receiving an incoming SMS message? in C#Thank you Rajesh. There is a event handler named 'DataReceived' of SerialPort object. But I don't know what will be the parameter and how to handle the parameter to receive the message. Could you please send a sample 'DataReceived' function?
-
How to receiving an incoming SMS message? in C#I am using AT command CNMI to enable forward incoming message to computer.How I can I receive incoming message? I need an example in C#
-
How to receiving an incoming SMS message? in C#I am using AT command CNMI to enable forward incoming message to computer. But how can I receive incoming message? I need an example in C#
-
How to get SMS notification from mobile connected to a PC by data cable?Thank you vary much for your help. I am trying to read sms from the mobile. The content is in hex format (It may be in PDU fromat) How can I get original message. I have used following AT commands 1: "AT" 2: "AT+CMGF=0" // 1 for text mode but it doesn't work 3: "AT+CSCS=\"8859-1\" 4: "AT+CPMS=\"SM\"" 5: "AT+CMGL=4"
-
How to get SMS notification from mobile connected to a PC by data cable?I want to automate my mobile (Samsung SGH-X660)connected to my PC by a data cable. I want to get the sms to my PC that my mobile receive. How it is possible?
-
How to get SMS notification from mobile connected to a PC by data cableI want to automate my mobile (Samsung SGH-X660)connected to my PC by a data cable. I want to get the sms to my PC that my mobile receive. How it is possible?
-
How to display a text file containing Bengali language font?Result is same for location '\Windows\MS Gothic.ttc' and '\windows\Font\MS Gothic.ttc'
-
How to display a text file containing Bengali language font?I want to display a text file containing Bengali language font. The text file is in UTF-8 format. Japanese and Bengali language font is displaying like box. My development environment is VC++(2008)+ Pocket PC 2003 SDK. and my Device version Acer n30:Windows Mobile 2003 Se In the device regional settings there is no option for Japanese and Bengali language setting. I have copied MSGothic.ttf font to \windows folder but still displaying japanese font like box. Note: All the font are in unicode format.
-
How can I display Bengali language font for Pcket PCI want to display a text file containing Bengali language font. The text file is in UTF-8 format. Japanese font is displaying but Bengali language font isn't displaying. My development environment is VC++(2008)+ Pocket PC 2003 SDK.
-
Problem with return value of private variable within classNo. you are wrong here. If you debug your code you can see the wrong.
-
Problem with return value of private variable within classYou are trying to get float variable X which has no assigned value. Point::Point(float f_x, float f_y, float f_z) { // Assign value to your variable x = f_x; y = f_y; z = f_z; cout << "We're in the constructor with arguments " << (int)this /*unique identifier*/ << endl; }
-
How can I remove vertical scrollbar from Microsoft web browser?I am using Microsoft web browser using Active X Control to display Power Point file. But when it is displaying in the web browser a vertical scroll bar is displaying. How can I remove this Scroll bar?