3,417 Topics
![]() | |
here i am again.. i have to create a map that will show our city.. the viewer can search all the school in our city.. what is the best software or programming i will use.. or what is the best thing to do this.. in flash.. it will be more … | |
Hi guys, I am trying to use the Python logging API to log only to a file. The code below logs to only a file if I have it at the beginning of my class, right beneath the "class ..." line. If, however, I put it inside a method, it … | |
I think I master the basics of C++ that good I can move, not all though there are many things still I don't know of course. I've made applications with mysql and made my own little roleplaying game and some calculator like things. Basically noobie like programs with no graphics … | |
Hi everyone. Right now I'm working with my project. This project will be the program to stimulate mouse click event. I already finished the basic of program, like using mouse_event() but I need to improve it more than it had. Basically what I mean is I need to use the … | |
Hey, I'm trying to make a save function in API that will append to a txt file instead of writing over it. Can I get some help? Here's what I have so far: [code] #include <new> #include "windows.h" BOOL SaveTextFileFromEdit(HWND hEdit, HWND hEdit2, HWND hEdit3, HWND hEdit4, HWND hEdit5, HWND … | |
Hi, Can anyone advise me on how to find out whether a program is installed on a windows machine using COM or windows API function. Thanks | |
I frequent the c++ forum, and I've seen quite a number of posts that are about windows api/MFC stuff. This seems to be quite a separate thing than just "c++". Would it make sense to add a new forum to separate it? Dave | |
For months i've been getting this "No smart card device driver installed" diagnostic error from ActivIdentity's ActivClient diagnostic tool. My OS is WinXP Pro, SP3. My reader is an SCR331, pn:904622. when i reloaded everything this morning USB device installer used a WinXP driver from MS's driver library. Here's the … | |
I have created a swf file in flash cs4 and exported it. I have viewed it locally and it works fine. Once I upload it to the server it just play. I have looked at everything and it just wont play. I am stuck and not sure what else to … | |
edit: I see a lot of other threads on Daniweb on this. But after 2+ hours of reading about Sound in Java, I'm even more frustrated, so I have some questions. 1. Is the Java Sound API sufficient for the following operations: Playing mp3 audio files, pausing, and fast forward/rewinding … | |
hello everyone. i need to develop a site where i need to show members of the site on google map via the database. can anyone please hep me with this? i have never worked with google maps API. thanking you in advance | |
This is my first try with an API and HttpWebRequest Class in Visual Studio 2008 c++. I try to POST some variables to a link and want an link value from the API back, but I get an Response (not from API) : this->t_bbcode->Text = dataStream->ToString(); // [B][COLOR="Red"]System.Net.ConnectStream[/COLOR][/B] I think … | |
I can't figure out how to make my save function append to the txt file it always overwrites. Also, I'm trying to figure out how to make each set of words on a newline in the text file. Here is the function: [code] BOOL SaveTextFileFromEdit(HWND hEdit, HWND hEdit2, HWND hEdit3, … | |
[code] BOOL SaveTextFileFromEdit(HWND hEdit, LPCTSTR pszFileName) { HANDLE hFile; BOOL bSuccess = FALSE; hFile = CreateFile(pszFileName, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if(hFile != INVALID_HANDLE_VALUE) { DWORD dwTextLength; dwTextLength = GetWindowTextLength(hEdit); // No need to bother if there's no text. if(dwTextLength > 0) { LPSTR pszText; DWORD dwBufferSize = dwTextLength … | |
Hi, i searched a lot in JAVA documentation, but couldn't find a buffer API 1) can grow dynamically. 2) the existing content must shift right if i insert a new element in the existing content index | |
hi there, I am trying to learn how to generate xml document having the XSD file that describes the schema of the xml, and need to insert specific values for some of the elements, too. then I need to parse other xml files, I have googled about it, and many … | |
so far i've implemented virtual terminal & Hosted order page module.. remaining is silent post, Legacy SCMP api, Simple order API, Soap toolkit api... my question is it necessary to implement Legacy SCMP api, Soap toolkit api....if yes then why...? | |
As I emphasize *piece by piece* in the question, I have to read the ANSI file piece by piece to conserve resources, say 40 kilobytes for each read. Now I am handling an ANSI file that contains Chinese characters (encoded using the GBK charset, two bytes for each Chinese character … | |
Hello, This is a general question, so, I don't think code is necessary. I have a basic question about buttons in Win32 API... (Solution in MFC is also OK!). I was doing some experiments in push buttons, using MFC... I can enable/disable a button as I wish, but, there is … | |
Hi, I need a social network site built using PHPFox. I want all the components , video, pic, chat, forum, blog etc setup. Required skills: * Software engineering education * Social networking API experience * SMTP/POP programming experience * Web services * LAMP or .NET (you convince me which) * … | |
I am trying to use an eBay rss api feed on my html site. I am having a problem with the eBay url though. When you hover over any ebay link, it includes "My URL" <![CDATA then it starts with the [url]http://rover.ebay.com[/url] and the rest of the link. I need … | |
Okay so i am having a little trouble with my JFormattedTextField. I figured out how to work the MaskFormatter somewhat but not great. the formatting is fine, like when I want to restrict a field to only 15 characters that works but when I move the cursor to another field … | |
this is the code for tje fading effect of a form.. can anyone explain this code to me.. i really wanna learn this thing.. or do you have any site or ebooks to read related to my problem?? I dont know what book should I read. Is this all about … | |
INFO: validateJarFile(C:\fetching\build\web\WEB-INF\lib\servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class [B]i have got this error while running the servlet jsp code[/B] sometime show [B]servlet jsp is unavailable[/B] | |
Well I am writing a program for Windows Mobile phone, I need to read text files in the program, the character sets (charset) of the files I am going to read are unknown, here I need to convert whatever text(Actually I probably only need to handle UTF-8, UTF-16 BE, GBK, … | |
Hello. I'm a bit confused, and I don't know QUITE how to explain it, however I'll try my best! Anyway, say I wanted to code a API, that would grab a list from ANOTHER program. For example, if I had a small chatting program, and there was a list of … | |
I want to write a bot in Java that will register in websites. I have no idea how to auto select the fields and submit button. I know How Java Robot class Api and it does not contain any method which selects fields for me.How to track down the fields? … | |
Hello everyone! I'm looking for a class in the Java API that can take the complete structure of a directory in itself and that can be passed on sockets, so it can be used on other machines of a network. Is there someone that can show me an existing class? … | |
Hi How to get local disk ( c:\ or d:\ ) used space in windows. Any API ? | |
Hi guys, I have a code that sends sms through clickatell gateway, but now I am getting the NotSupportedException with the message "this stream does not support seek operations". Anyone who has used clickatell gateway for sms successfully please help me. Please help me eliminate this exception and get my … | |
![]() | When I'm attempting to load a program, there is a certain aspect that relies on a separate api to grab information to stick in a listbox (combobox whatever). I would like to be able to load the combobox on a separate thread because that part takes a good 2 minutes, … ![]() |
some functionality is not available in .NET class library, so we need to use one the items in the title of this thread. My question is when to refer to which one. Thanks | |
Hi I'm interested in doing a Voice Recognition in VB.Net 2003 as project . I have downloaded Speech API for this purpose. Pls guide me on how to proceed further. | |
I can quite honestly say I am lost, having learnt HTML during the past 2 years and trying to understand a bit about java, but find myself very confused. Yes could look in books but find them equally confusing the same as when learning HTML and preferred to do more … | |
Hello, I'm new in VB.NET in using API I have one app running and i want to send a command to another app on my PC from my active app I know is necessary to find a PID and some handlers from second ( from background ) but i don't … | |
I am creating a code in php to read the content of a file and save it in a php array. this is my code: [CODE] <?php $myFile = "isbn.txt"; $fh = fopen($myFile, 'r'); $i=0; $ans=array(); while(!feof($fh)) { $theData = fgets($fh); $url='https://isbndb.com/api/books.xml?access_key=RPGYD5PC&index1=isbn&value1='; $url1=$url.$theData; //echo $url1; $ans[$i]=$url1; $i++; } ?> [/CODE] … | |
Dear mates, I am am frustrated and bored to learn how to get or calculate coordinates data for Java Graphic API. for ex the GeneralPath 's function curveTo() takes 6 parameters namely x1,y2,x2,y2,x3,y3.I put some random coordinates data into these function and got a crap drawing. :( I want to … | |
hello, i am new to web services.I may be asking this question wrongly.so forgive me. In my project i have to consume a webservice using java.Could u plz say me how to Create a client api in axis2 in java to consume the webservice that has been created in vb.net. … | |
Hi I am trying to teach myself C++ windows programing, ie creating windows applications (is that GUI or API or neither :P). I know the fundamentals of C++ programming but looking at some windows code it looks really difficult. [B]Can you suggest any good books or maybe some tutorial sites … | |
i am wondering how to create a gui that is something like wxWidgets. I know how to use the windows api and all of that so i am not asking how to create a button or edit box but really am asking how to create a pixel on the screen … | |
Hello everyone! I'm developping a chat application in a client/server context and every client has a shared directory. I want the server to know the directory structure of each shared directory of every client. I'm asking myself if there's an existing class in the Java API that can keep a … | |
Hi all I have some questions 1-Is an API just a set of functions that let you do sth easier that using the things that make up the API,directly?If yes so and API must be able to be compiled in every IDE but you can see that Qt's API needs … | |
do you know how to work with activesync using c#? i want to know if any device is connected to cradle. thanks | |
Hey you guys, I am finishing my last two assignments in my class and I am having trouble because as you will see, the directions are not as they appear. My class is online so I don't have anyone I can rack my brain to or with and did I … | |
I have a Flash movie on a web page and I want to send parameters to it with JavaScript to have it go to a selected frame. The AS3 code receives its information via an ExternalInterface API. The following code parses the URL argument (?page=x) and I want to send … | |
I was working on a program for spanish where I want to input the spanish and english and then the programputs the words in 2 listboxes when "ADD" is clicked. Here is my code and it does compile so you can kind of get an idea of what I want … | |
I was going through a tutorial and had some trouble with an example program. Here's the coding I have and I can't fix it. Here is the main cpp file. [code] #include <windows.h> #include "resource.h" BOOL CALLBACK DlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { switch(Message) { case WM_INITDIALOG: … | |
I don't work in IT, I'm probably the guy IT hates, the script kiddie :) A while back I created a little site that used PHP/Java that plugged coordinates of my company's offices from a basic SQL server table. It uses the Google maps API to let you search a … | |
Hey guys, I've been programming in consoles/visual C++. But i've been wanting to learn WindowsAPI programming WITHOUT the stupid visual interface for a while now. Could someone provide me some pointers on a good place i can learn this? Right now I'm using [url]http://www.winprog.org/tutorial/start.html[/url] | |
Hi again,first i must say that i am familiar with c++ but only console programming. I am beginner so can you please be more gentle. I want to move on programming with buttons,windows,check boxs,input box and so on,i have heard of API and GUI what is the diference ? They … |
The End.