Next time will take care of these points. Thanks..!!
mbatra31
Posts
-
reg -
regDear Sir, I have not asked you to provide me the code. Thanks for your cooperation.
-
regOK....I would appreciate if you could tell me in what way I can ask a question. Thanks for your precious time.
-
regThank You very much for the suggestion.
-
regHi, I have not tried anything. I have just started. I didn't have any idea how to parse .xfdl files. I was browsing for some code samples for parsing .xfdl files. Regards,
-
regReg
-
How to create Login page in iOS using phonegap.?Hi, I want to create a hybrid app in iOS using PhoneGap. I want to create a login page where user will be prompted for Username and Password and it will authenticate the user with a Web API call. I have created a project for iOS using PhoneGap. I don't know where to start for creating the page. Any help will be appreciated. Regards, Mbatra
-
How to call json WebService in iOS using swift.?Hi, I have created an app in iOS and have called a WebService from the same. But that I have developed using Objective C. I want to call a web service from iOS using Swift. Any help will be appreciated. Regards, Mbatra
-
How to call jSON web service from an iOS app..?Hi, I am working on an app created in iOS. I want to call jSON web service from the app, parse jSON and print the result in the respective fields (labels in ViewController). I have got the links for the same but I don't know how to implement the same in step by step. Any help will be appreciated. Regards, Mba
-
enum Datatype: Overloaded function differ only by return type error...?Hi, I am working on a project in Visual C++ 6.0. I have included the following statements in a file:
\#import "C:\Program Files\Common Files\System\ado\msado15.dll" \
rename( "EOF", "adoEOF" )
\#import "c:\Program Files\Common Files\system\ado\msadox.dll" \
no_namespaceI am getting the following error:
error C2556: 'enum DataTypeEnum __thiscall ADODB::Field20::GetType(void)' : overloaded function differs only by return type from 'enum ADODB::DataTypeEnum __thiscall ADODB::Field20::GetType(void)'
Any idea why this error is generated...? How to resolve the above issue...? Regards, mba
-
How to login to a website programmatically using C#.?Hi, I am looking for code sample in C# which I can use to login to a website programmatically. I want to provide Username and Password through the code and it should go to the next page after Logging in. Regards, mba
-
How to get web page content in a excel file.?Hi, I am able to get the data from the web page into .html file or .txt file. But the problem is how to filter the data and get specific information which I want. for example the data is in a .txt file spread over multiple lines. How to retrieve the specific fields from the file. Here I am attaching the code which I have used:
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;public class GetContent {
public static void main(String[] args) {URL url; try { // get URL content url = new URL("http://www.mims.com"); URLConnection conn = url.openConnection(); // open the stream and put it into BufferedReader BufferedReader br = new BufferedReader( new InputStreamReader(conn.getInputStream())); String inputLine; //save to this filename String fileName = "E:\\\\sample.txt"; File file = new File(fileName); if (!file.exists()) { file.createNewFile(); } //use FileWriter to write file FileWriter fw = new FileWriter(file.getAbsoluteFile()); BufferedWriter bw = new BufferedWriter(fw); while ((inputLine = br.readLine()) != null) { bw.write(inputLine); } bw.close(); br.close(); } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } }
}
-
How to get web page content in a excel file.?Hi, I am working on a Java project. I want to get the content of a specific URL in an excel file. i:e; Go to a given URL. there are different fields defined in the webpage, i:e: Name, ID, Address etc. I want to fetch these fields and store this information in an excel file. Any help will be appreciated. Regards, mba
-
How to read an XML file in C++.?Hi, I want to read an xml file in C++. Is there any sample code or any library available.? I want to read the contents of XML file. Its nodes and attribute's value. I need an XML parser written in C++. Any help will be appreciated. Regards, Mbatra
-
How to get Browser AddOns list using C++.?Hi, I want to get the list of Browser Add Ons using C++. Is there any WMI query using which this can be solved or any other method to achieve the same. Browser Can be any browser i:e: Internet Explorer, Chrome etc... Any help will be appreciated. Regards,
-
How to download a file from URL without using curl or libcurl ..in c++.?Hi Jochen, Thanks for your response. I got the code working. I was passing the link of the confirmation page, that was the issue. Thanks..!! Regards,
-
How to download a file from URL without using curl or libcurl ..in c++.?Hi, I want to download file from a given URL. I am using URLDownloadToFile() function for this purpose, but I am not getting the actual file. When I try to run the file, it throws an error. As an example, If I download MSVS 2010 service pack 1 from Microsoft's website, the file size will be 795KB. But if I download using URLDownloadToFile() function passing the url and file name, downloaded file size will be 99 KB. Is there any method to download an exe from a URL in C++. Any help wll be appreciated. Regards, mbatra
-
Unable to get WTS_SESSION_LOGON event notification. How to capture the event when user log on to the machine.?Hi, I have an application which captures Lock, Unlock, Logoff and Logon events of Windows OS. I am able to get the notifications for Lock, Unlock and Logoff, but not getting any notification when user Logs on to the machine. I am using WTS_SESSION_LOGON event to capture the Log on event. How to capture the event when user log on to the machine. Any help will be appreciated. Regards,
-
How to get User Login and logout time in C++ / MFC .?Hello David, Thanks for sharing the info. It was very helpful. I have one query again. this function gives the Last logon and Logoff time in the number of seconds that have elapsed since 00:00:00, January 1, 1970, GMT. How can I get the correct value in Time format. Also I want to get the record of user logon and logoff time for each day. Should I use the same function.? Regards,
-
How to get User Login and logout time in C++ / MFC .?Hi, I have one query. I want to get the Login and Logout Time of a user. I want to get the time when user login to a pc, lock the PC, Logout (shutdown) the PC. I want to keep track of the Login / logout / Locking time of the user. Is there any class or any code available in C++ / MFC. Any help will be appreciated. Regards,