3,417 Topics

Member Avatar for
Member Avatar for bilawal420

Using Windows API's how can i copy to another file and Get different properties of a file (size, type, date created and more). i had done reading and writing file plz someone reply me quickly

Member Avatar for siddhant3s
0
75
Member Avatar for eniwe

Learning assembly and 'am trying to move from 16-bit to 32-bit. i have this assembly code to display a string in a message box. [CODE];tasm32/tlink32 .386 .model flat extrn MessageBoxA:proc extrn ExitProcess:proc .data head db " 'Heard melodies are sweet,",0 body db " but those unheard Are sweeter;'",0 .code begin: …

Member Avatar for eniwe
0
138
Member Avatar for Randya

Me being the compliant person I am, I recieved an instant message notification in my email that told me I should come here and introduce myself and here I am. "My name is Randy, and I'm a social networkaholic." Yes my user name says Randya and has stuck with me …

Member Avatar for debasisdas
0
144
Member Avatar for Arlenx

Hi, First of all I apologize if its the wrong forum, hope its not =) I am trying to create a java prog for my cellphone to calculate my received/dialed call timers. The phone stores 40 entries of received/dialed calls, and my plan is unlimited after 7 + weekends, so …

0
49
Member Avatar for BruenorBH

I want a user to be able to select an audio file to play but am unable to figure out how to create a file open dialog box in Win32 API. I could create one from scratch but am hoping that there is an easier way than manually creating it. …

Member Avatar for BruenorBH
0
168
Member Avatar for marjan_m

Hi, Please guide me about embedding google map api in the site page. I need to show map for different locations which are stored in DB. I got the API key but dont know how to implement it. Thanks for your time.

Member Avatar for marjan_m
0
134
Member Avatar for mathueie

Hi, I am looking for api to get CPU utilization in linux. I want use that api in c++ program. anyone plz help me..

Member Avatar for fpmurphy
0
71
Member Avatar for kisky84

Hi all! I'm trying to implement a small program to test an API I've been provided, and since it's my first approach to C++ under Windows, I could use some help. I have this type definition: [CODE=CPP]typedef struct { const WCHAR* streetAddress; const WCHAR* city; const WCHAR* state; const WCHAR* …

Member Avatar for Ancient Dragon
0
177
Member Avatar for gagan22

Hi Everyone, I have made one google checkout payment gateway integration in PHP in a shopping cart. But with which user id or merchant id i am using in that integration . when i am going to login with that google id . I am getting some error message there. …

Member Avatar for gagan22
0
313
Member Avatar for BruenorBH

I am new to Win32 API and am having trouble setting up the menu. Here is what I have at the moment (my new way of doing the main.cpp code is from another member) but I cannot understand where to put in the function call for the menu.. main.cpp [code] …

Member Avatar for nucleon
0
164
Member Avatar for djkfunk

I'm integrating reCaptcha and CDONTS into a contact form. I've got everything working except the form does not send mail :confused: (it is supposed to gather data from form fields and send to my email address after successful reCaptcha entry). Live page located at [URL="http://www.uforecordingsusa.com/contact3.asp"]www.uforecordingsusa.com/contact3.asp[/URL] . I've truncated the code …

0
46
Member Avatar for djkfunk

The page in question is located at [URL="http://www.uforecordingsusa.com/contact.asp"]www.uforecordingsusa.com/contact.asp[/URL]. I'm integrating reCaptcha ASP code I obtained and having trouble w/ catpcha validation. I've fixed some minor syntax issues (I think) from the original code as well as expanding the cdoConfig.Fields. I've got Javascript code checking the required contact form fields: Name, …

Member Avatar for djkfunk
0
207
Member Avatar for javaAddict

Just a quick question. No rush to answer, it is not important, I might discover it later myself, but just in case someone knows it: I have been trying to create a [URL="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html"]Method[/URL] object using this method: [URL="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getMethod(java.lang.String,%20java.lang.Class...)"]Class.getMethod(String name, Class<?>... parameterTypes)[/URL] like this: [CODE] obj.getClass().getMethod(methodName, Class.forName(methodType)) [/CODE] My problem is …

Member Avatar for javaAddict
0
148
Member Avatar for axfv

I want to create a file in (drive letter):\Program Files\myprog\file.ext where (drive letter) is the drive letter where windows is installed (or the default drive). Is there an easy Windows API method to retrieve it? Thanks PS, here is what I'm currently using: [code] string mainDrive = ""; foreach (string …

Member Avatar for axfv
0
229
Member Avatar for TheBeast32

Hi, how would I get the temperature and percentage of load for my CPU, GPU, and other things like the hard drive? I'm on Windows XP. Is there something in the Win32 API or what?

Member Avatar for jephthah
0
3K
Member Avatar for ithelp

which can pick up executable if it is available in PATH like [code] int execv(const char *path, char *const argv[]); [/code] I do not want to specify full path , I want it to search in my PATH and execute .

Member Avatar for jephthah
0
88
Member Avatar for Mearah

Hey everybody, I am a computer scientist working in research in the field of accellerator technique and ion beam diagnostics in Germany. Additionally I administer two websites. One is a community website concerned with a serious social background (work with joomla, php, mysql), the other one is just a guild …

Member Avatar for Mearah
0
138
Member Avatar for timos

Is it possible to use web browser as GUI for C++? Possibly use Google Chrome as GUI instead of windows API. I would rather stay away from learning the windows API mess. I just need to get some inputs from user, and spit out a picture to the screen and …

Member Avatar for ShawnCplus
0
58
Member Avatar for sonia sardana

Hey i wantt o scroll images up & down,I found the foll code that uses APi to scrool.. [URL="http://www.codeproject.com/KB/vb/APIScroll.aspx"]http://www.codeproject.com/KB/vb/APIScroll.aspx[/URL] I Have panel in which images are there & i want to scroll up & donw.. On the Down arrow , i write the foll. text [code] Private Sub PictureBox35_Click(ByVal sender …

Member Avatar for Teme64
0
91
Member Avatar for vsha041

Hi, I java, under BigInteger class, there is a function called modpow, [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/math/BigInteger.html#modPow%28java.math.BigInteger,%20java.math.BigInteger%29"]http://java.sun.com/j2se/1.4.2/docs/api/java/math/BigInteger.html#modPow%28java.math.BigInteger,%20java.math.BigInteger%29[/URL] It allows us to answer things like 99999^9999 % 78 very quickly. But I am unable to find one for c++. Thanks

Member Avatar for tux4life
0
135
Member Avatar for BruenorBH

I am trying to create radio buttons in Dev-C++ using C. I am new to Win32 API programming also. What I have done so far is create the main app window, added textboxes, check boxes and a few radio buttons. The only issue I have now is that You cannot …

Member Avatar for BruenorBH
0
315
Member Avatar for katamole

Hi again, I'm trying to use a python wrapper for the last.fm api. It's pretty old but seems to be working ok (for now). See [url]http://code.google.com/p/pyscrobble/[/url] Anyway, I'm having trouble extracting some information from the output. [CODE] import scrobble user = scrobble.User('mattfeliks') # invoke user class recent = user.recent_tracks # …

Member Avatar for katamole
0
103
Member Avatar for kcomeby

Hello and first sorry for my very bad english. i have little knowledge about c and c++ but im trying to learn win32 programming with c++. its little hard and im very new at that. im trying to do very very simple thing: i have an main window, 1 button, …

Member Avatar for stephen.id
0
183
Member Avatar for RAFAAJ2000

here is a workbook demo: [URL="http://www.datafilehost.com/download-553fafeb.html"]http://www.datafilehost.com/download-553fafeb.html[/URL] Ok. Let me explain. I have an Excel worksheet with a Source Cell and a Target Cell. Via GDI API functions, I draw a temporary gradient fill over the source cell which happens to be cell "D6". then, I make a transparent copy of …

Member Avatar for hkdani
0
249
Member Avatar for daffer

Hi all I am new to Java and having trouble with constructors with images and audio. I have tried to use the API library to work it out myself but cannot understand what they are talking about. My problem is that I am trying to create two instances of the …

Member Avatar for javaAddict
0
128
Member Avatar for abd640

Hi Guys, i really need your help. i have a nia ocz product(that use your brain signal and your muscle movement for performing some actions)... this product generate EEG signals(alpha and beta) and from it you can do some actions. it is used in gaming, and it is designed for …

Member Avatar for JamesCherrill
0
141
Member Avatar for NicAx64

hi I get interested about the PHP module architecture cos I get these errors , [code] Module compiled with module API=20050922, debug=0, thread-safety=1 PHP compiled with module API=20060613, debug=0, thread-safety=1 [/code] when I trying to load the php_ffi.dll inside the windows. How to fix this error ? more than that …

Member Avatar for cwarn23
0
124
Member Avatar for Tigran

Hello, A few days ago I visited a lecture of a teacher in an university that was about parallel processing. He explained why it's good etc, and how you can make programs that use multiple cpus in C. He used MPI and the code looked nice, wasn't too hard and …

Member Avatar for tux4life
0
95
Member Avatar for Beevee

Hi, Just a quick simple question, I have done some googleing and have been unable to find a conclusive answer, But is it possible to use the XAudio2 API (DirectX) to capture sound as well as play sound? I am planning a project where I need to play and capture …

0
38
Member Avatar for shirish_kal

Guyz i need an API for finding diff in time in minutes and days as fast as possible . if anybody has it and can provide me i wud be greatfull

Member Avatar for Ancient Dragon
0
117
Member Avatar for clutchkiller

If I were to work on say an Instant Messenger project, and wrote the gui and event handling using wxWdigets, could I then use the windows API and use winsock to connect the two computers? Basically are API's interchangble in source code?

Member Avatar for Ancient Dragon
0
130
Member Avatar for mikey123

In VS9, when i call the GetTickCount() function, it automatically converts it into the GetTickCount64() function upon compilation. This second function only works on Vista+, and thus my program errors when run on XP. I have tried adding the follow in 'targetver.h', but it did not make a difference: [code=c++]#define …

Member Avatar for mikey123
0
111
Member Avatar for masijade

[QUOTE=madhavireddy]Hi, I am new to java I have a project to be done with early deadline. Can u please help me how to write code in java to send GET request to server from client. Thank you in advance.[/QUOTE] So, you accepted a job you're not qualified for, or you're …

Member Avatar for madhavireddy
0
128
Member Avatar for zach175

I have a C++ app that uses the CInternetSession API to try and download a file across the internet. I want to authenticate before allowing any file downloads. Right now, the application should be passing the username and password using: CHttpFile->pFile->SetOption(INTERNET_OPTION_USERNAME) AND INTERNET_OPTION_USERNAME(INTERNET_OPTION_PASSWORD) Is there any way to connect this …

0
47
Member Avatar for Mtowns Finest

Hello - I'm new to PHP, only been learning it for about a month, but I think I am starting to get the hang of it. I am working on a project that involves the Google Maps API which uses markers that are populated by values from a MySQL database. …

Member Avatar for Mtowns Finest
0
249
Member Avatar for Maritime

Hello, I have wrote code to display moon illuminated disc in the sky using API's, i want to make crescent inclined like a real moon in the sky. in fact want to rotate moon with an angle to left or right.

Member Avatar for debasisdas
0
59
Member Avatar for shazzy99

Hi, I have setup a network dome camera on a LAN, which I can access in C# using its API's. I can even capture the image. However I would like to know how can I capture the images and save it in a folder at regular intervals. i.e. Like every …

Member Avatar for ddanbe
0
74
Member Avatar for sassenach

Hi, I just read thought a tutorial on how to email pipe via evolk. When i try to send an email to the email address that is suppose to do the job, i get an error. "Mail delivery failed: returning message to sender pipe to |/home/username/public_html/pipe/email_pipe.php generated by [email]test@website.com[/email] local …

Member Avatar for sassenach
0
281
Member Avatar for ceyesuma

Name: The name of this file is table_autoincrementedId Hello and Thank you in advance for any assistance. Purpose: The project is a Visual web JavaServerFaces project that is in the same folder and that imports the app library. Modeled after the tutorial at Using Java Persistence API Within a Visual …

Member Avatar for ceyesuma
0
117
Member Avatar for ninadg

Hello, I would like to use a JSP script running on a Linux server, to be able to create a user account on a Windows 2003 server. My query is how do I access the Windows API from a different machine, and how does the JSP script authenticate itself to …

0
47
Member Avatar for nsvanjani

hello programmers is there any win32 api or technique by which we can fetch the address of the active window of explorer(not the internet explorer) please help

Member Avatar for MrSpigot
0
114
Member Avatar for mps727

I'm having trouble compiling my servlet, because it says the servlet classes can't be found. [code] CreateAccount.java:2: package javax.servlet does not exist import javax.servlet.*; ^ [/code] I googled a bunch and most people with this problem had their CLASSPATH set incorrectly. Here is the result when I echo my classpath: …

Member Avatar for mps727
1
139
Member Avatar for ceyesuma

[i] Name: The name of this question is: carbon_copy [/i] [icode] Hello and Thank you in advance for any assistance. [/icode] [u] [b] Purpose: [/b] [/u] [b] The purpose of this code is create a desktop app and web app. The web app has the destop apps library. Create a …

0
59
Member Avatar for ash_85

I can encrypt with ENCRYPT ------------ $pass = $_POST['sort_code']; $query = "INSERT INTO customer(sort_code) VALUES (AES_ENCRYPT($pass,'key'))"; the above code take a value from form and puts in the database as encrypted value. The field type of the sort_code in my database was varchar but now i have changed to BLOB. …

Member Avatar for ash_85
0
92
Member Avatar for BruenorBH

I am creating a program in Dev-C++ v. 4.9.9.2 using Win32 API that loads from a file and saves to a string. The only issue is that I cannot split the string to the requested variables... Here is what is in the file... 08:00:00 PM, 08:00:00 PM, 08:00:00 PM, 08:00:00 …

Member Avatar for BruenorBH
0
114
Member Avatar for hellIon

hey guys can u gimme some links ,resources or codes.....which can show me how to use api in assembly 32-bit i am using masm32

Member Avatar for MosaicFuneral
0
117
Member Avatar for Halbo

Good day! I am trying to learn more about the FileNet .NET API for Content Manager 4.0. The API has been totally reworked since version 3.5 and all the help files seem to be geared towards Java rather than .NET. I have been able to figure out how to check …

0
73
Member Avatar for Halbo

Good day! I am trying to learn more about the FileNet .NET API for Content Manager 4.0. The API has been totally reworked since version 3.5 and all the help files seem to be geared towards Java rather than .NET. I have been able to figure out how to check …

0
74
Member Avatar for pavani-murali

Hi Every one, Can you please send me what is summit APi and how it is useful along with C+? Regards, Pavani

Member Avatar for ithelp
0
30
Member Avatar for mfran2002

hi, I need to wirite code in delhi5 using the API of a software but I don't know wher I have to begin... ;)

Member Avatar for LizR
0
52

The End.