199,114 Archived Topics
Remove Filter ![]() | |
Greetings! Anybody know how to set or get the value of hijri calendar. Like for example I set the date in the form of mm/dd/yyyy gregorian calendar the value is 12/22/2007. I want to get the equivalend value in hijri calendar which is 12/12/1428. Then If i set the date … | |
Hello! :) I have a CMDIChildWnd (CStatusFrame) with a richedit on it. I am resizing the richedit when CStatusFrame is resized. Originally it was.. [CODE=c++] // Code from CStatusFrame PreCreateWindow: cs.style = WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_TABSTOP; cs.lpszClass = AfxRegisterWndClass(CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW, NULL, (HBRUSH) (COLOR_WINDOW), NULL); … | |
can anyone help me with mouse handling in c++. espcially on how to check mouse clicking. i am making a game connect four so if anyone could help me with the code and explaining a couple of functions i would really appreciate it. help required urgently. | |
I am an absolute beginner to python. I would like to know how to download and install the modules. I am working on Windows. I am specifically looking to use the 'gasp' module. Any help would be highly appreciated. | |
How do I have multiple mouseover events at the same time? Here's what I have so far. [code] <a href="assets/Ads/agapeCreations.pdf" /> <img src="assets/Ads/agapeCreationsNorm.jpg" alt="Agape Creations Photography" onmouseover="this.src='assets/Ads/agapeCreationsMouseOver.jpg' 'self.status='Agape Creations Photography';return true" onmouseout="this.src='assets/Ads/agapeCreationsNorm.jpg';return true" width="725" height="80" border="0" border=0 /></a><br /> [/code] I have the images swapping fine, but the self.status isn't … | |
Hello! I had problem sending mails through asp.net, even after writing the code. But after providing the IP address of my pc in the relay option in IIS, the problem finally got solved. But now the problem is that the same code when I tried to run on a pc … | |
is it possible to create setup of my own to install .net framework in machine, So that i can install only the files required by my webpage,and what ever is required to Run webpage. Any body know this | |
hi i want to create the database retrieved datas as hyperlink using php.i have sent the code.please tell me how to edit the below code <html> <head> </head> <body> <form> <table> <tr> <td><font color="red">View All Posting</font> </td> </tr> <tr> <td><a href="care.php">Create New Users</a></td> </tr> <?php $hostname = "localhost"; $username = … | |
[code=cpp] //array of pointers to person objects #include<iostream.h> class Person { protected: char name[40]; public: void getname() { cout<<"\n Enter name:"; cin.getline(name,40); } void putname() { cout<<"\n Name="<<name; } }; void main() { Person*persptr[100]; int n=0; char choice; do{ persptr[n]=new Person; persptr[n]->getname(); n++; cout<<"\n Enter another(y/n)? "; cin>>choice; }while(choice=='y'); for(int … | |
hi friends i am doing my final yr BE computer science.i have to do my final yr project. I am interested in java n going to do a project on"RELIABLE DATA TRANSPORT AND CONGESTION CONTROL USING FUZZY LOGIC IN TCP/IP.So can i get basic codings for communication between client and … | |
Hello guys; Please I want to compile project that has a Static link Library of which I want it to automatically Copy it self(.Lib) to a specific folder when ever I build it and also copy the Include (.h) file to a specific folder of my choice. I will be … | |
I am actually new to schema designing. I have read few articles about data modeling and started building schemas for real time data. I have done one. I need guidance in my first steps. Just some one who can have a glance at it and can suggest mistakes that I … | |
Hi i newbie in this forum. i have dat file and i want to read this file but i dont know how to start. actually i really confused.. anyone know ho to do this? Pleas help me... Ok.thx in advance.. best regards.. | |
Hello everybody, I've written a program which contains AJAX... The program is a messenger... The code was: [CODE]var http = createRequestObject(); function createRequestObject(){ var request_; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ request_ = new ActiveXObject("Microsoft.XMLHTTP"); } else{ request_ = new XMLHttpRequest(); } return request_; } function getInfo(){ … | |
Hii, i have a datalist in my page containing a image button as item template.The design page is as follows <asp:DataList id="ddlist" runat="server" RepeatDirection="Horizontal" Width="30px" Height="134px" RepeatColumns="5" CellPadding="1" CellSpacing="5" > <ItemTemplate> <table> <tr><td> <asp:ImageButton ID="img" runat="server" Height="75" Width="100" ImageUrl='<%#DataBinder.Eval(Container.DataItem,"filename")%>'></asp:ImageButton></td></tr> </table> </ItemTemplate> </asp:DataList> th ecode behind is as follows public void … | |
[COLOR="Green"]Hello guys I need quick help I need a code that reads from a text file and then shows how many “a ,b, c ….” I have in the text[/COLOR] | |
[code] echo "<input value='$variable' type='submit' id=submit' name='submit'>"; [/code] That variable is an array which keeps repeating and changing numbers. (e.g. 1-20). Now using a switch statement to access the input submit button when pressed: [code] switch($_POST[submit]) { case '': break; } [/code] I cant figure out what code to construct … | |
hey! friendz plz tell me how to insert time in a running programme ,which is similar to system clock time. | |
i have a problem linking access with vb by using Ado the photo from access isnt displaying in vb,also i inserted time in visual basic and set to display at certain time but i think i used the wrong codes plse help me | |
Hi guys! I'm trying to rid my words of newline characters (and eventually punctuation as well). The words are in a two-dimensional array declared as words[MAXWORD][MAXLINE], where MAXWORD is currently 8000, and MAXLINE is currently 20. So up to 8000 words of 20 characters each. To do this, I am … | |
Is It possible to install only CLR and not the whole .net framework, Because i want to run my webpage link in no of machine,so installing .net framework in all machine will not be good, So i want to install only the dll or libraries needed by my webpage and … | |
Using Delphi 6. Have a program that I have been working on for some weeks. It has one Unit. Recently, I made a modification (code change - what, I don't remember) and now I get the "The Disassembly pane", titled "CPU" to pop up. Lots of hex values, machine code, … | |
This works and shows the factors or tells if the number is a prime number but doesn't show ODD factors please help!! I need to turn this tomorrow [CODE] #include <iostream> using namespace std; int prime(int num); int main() { int num; cout<<"Enter number: "; cin>>num; if(prime(num)==1) cout<<"The number is … | |
Does anybody know how to make a parser???A program that checks wether the entered expression is correct or not..If the expression lacks a parentheses if that is needed in the expression, or invalid operator..etc... | |
Hi, Dear my friends, I has been using python for a while. But I just realized that when you make a copy of python class, it is copying a link to the class. So when you make the change to the attritutes of objects, it will change other attributes in … | |
Hi all... I've been reading this site for a while and now I have a question for you experts. I have a php page named edit.php. Code here: [code] <? // Connect database. include("connectdb.php"); // ***** This part will process when you Click on "Submit" button ***** // Check, if … | |
Can anybody help me look for a site that will host my ASP.Net web files for [COLOR="Red"]FREE[/COLOR]. Thanks. | |
The following snippet finds the least, greatest and sum of the elements of an array. It works when I give the test condition with variable "i" in the for loop (as in the first snippet). But when I replace it with a pointer(as in second snippet), it gives a wrong … | |
I have developed application in VB5 on a mchine with Windows XP Home SP2, and saved as .exe files. When i run this application on another machine error report is generated: This application has failed to start because MSVBVM50.DLL was not found. Can you hlep me. Thank: OLISAN | |
Here is my scenario i have a file 2000 bytes long. I want to read bytes 500 - 1500 so that i have the middle 1000 bytes stored. I then want to disect the 1000 bytes into 20 bte chunks and preform calculations on ever 20 byte sectiong until the … | |
Hey guys I've got a JText field set up and i append strings to the JTextField but im wondering how to invidually set the color of each string that i append? I've taken a look at the JLabel class and I did come up with the idea that I could … | |
Hello, I am trying to access Analysis Service 2005 data cube using Visual Studio 2005 c#. Does anybody has examples or documentation about it? Cheers, Nubia | |
I have a situation where a file upload program that has been running without any problems for months now suddenly uploads completely empty files. When I turn on warnings (perl -w), I get a message like the following: [code]FATAL WARNING: read() on closed filehandle fh00001license.txt at CDownloadEditor.pm line 293.[/code] Here … | |
Hello boys and girls, the problem is (i guess) quite simple, when i push the button on my aspx page and write to the XML file the page disappears. DEFAULT.ASPX.CS [code=C#] protected void Button1_Click1(object sender, EventArgs e) { string email = "member69@hotmail.com"; string name = "joe doe"; string country = … | |
hey hi to everyone im new in the site bout i thin its cool but the reason i am writing is that i have a home work in java and i have no idea how to do it can someone help me??????? a matrix in wich a number moves some … ![]() | |
hello 2 all, anyone can help me.i am a newbie on programming and i dont know how to use grid. this is the scenario when i search on a database using sql i want to display it to a grid. i am using the component Microsoft datagrid control 6.0 (SP4)(OLEDB). … | |
hey ^_^ i really hope you guys can help me. Ill try to explain as clear as possible. Ok, so what I did was; I took a free web template, and tried to adjust it to the website i've been requested to make. What you see below is this window: … | |
[CODE] class Queue { int front, rear, max, size; int items[]; public Queue (int s) { front = rear = -1; max=5; size=0; items = new int [max]; } // should we still include the "front" in this section? public boolean enqueue (int x) { if (size==max) return false; else … | |
Hi all, I'm learning JavaScript and have run into a problem. Displaying the contents of a cookie with the code [code] alert(document.cookie); [/code] works fine in Firefox 2.0.0.11, but in Safari 3.0.4, it just displays an empty alert box. Any quick answers? Any resources that you can point me to? … | |
I want a sample Date validation script using if loops. The script should first compare "year".If the year is lesser than the current year,It should go for "month" checking. I have the script that splits the date into year,month and date.I want only the checking part. My if loop checking … | |
Grate Thanks, i have been designing website in html for some time now. i want to make my sites more powerful by using php or asp,but i can link up the pages for them to work like i do in html. i really need help,pls help. | |
Hi I have created three text boxes and a datagrid. Now if i select a row in the datagrid i want those cell values to be displayed in the corresponding textboxes. Can any body help me in this ascept. | |
Hi everyone. I need an application that loads a window to the top of the screen -1 inch height. The window should be always on top, but here is the catch. Every other window should appear below it. I.e no window should be covered by my small window above and … | |
I have been working on this application and im stuck now at a spot where i want to be able to click a button and have a combo box populate with text from a field in a access database where another field on the same record should be equal to … | |
The sample code I am looking at is supposed to be a console app. And yet it has the same sort of structure that a windows app would have. Since I am unable to build the app yet, I am unsure if it is a true console app. Can a … | |
Hello, Does anybody know of a tutorial on download specific data from a web server sql db and inserting this into a local access db? | |
hi all, i want to access an application from the domain server. is there any possible way to do this task. if possible tell some idea with examples. Advance thanks. hidash | |
[CODE] struct link { char name[50]; int value; link* next; }; class linklist { private : link* first; // ilk baglantiyi tutar public: linklist() { first=NULL; } void additem(int d,char a[]); void display(); }; void linklist::additem(int d,char a[]) { link* newlink=new link; newlink->value=d; strcpy(newlink->name,a); newlink->next=first; first=newlink; } [/CODE] this is … | |
Hi all, i want to show report from date to certain date. so like 1/1/2008 to 1/7/2008. anyone know how to do this?? any help will be appreciated. thx.. Best Regards.. | |
Hi guys/gals, i need to make transparant form and it can be changing by user. i stuck cause i didn't know how to start.. OK.Best Regards.. |
The End.