No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
17 Posted Topics
Hi guys, I gat a VB project for a hospital information management system, almost in completion. The issue is that, i want it to collect information from the user installing it. Information like maybe the database name, etc and the likes, you know relevant information necessary for the program to …
Hi guys, Would someone please let me know the difference between these two: [CODE] struct node* branch; // this statement struct node *branch; // && this statement [/CODE] Thanks.
someone please help me out on this linked list code. it seems not to work out. it is sort of a doubly linked list. look it out. [CODE] #include<stdio.h> #include<stdlib.h> int count = 0; struct node_ptr{ int value; int no; struct node* back; struct node* next; }; struct node_ptr* root; …
Hi guys, I am running SuSE Linux Enterprise Server on my PC and have installed vmware. Now, may I ask this, is it possible for me to run my host computer as a mail server for my guest virtual machines on vmware?
You need to read the file first n then store the content in the textbox1.text.hope you are familia with file operations.
Check the file permissions to make sure you have write permissions on the files and/or directories. [CODE]cd [I]<directory>[/I] //go to home directory of the lamp server // #find ./ -name '*' -exec chmod 777 {} ';' #rm [I] <file>[/I] //delete the file you want // [/CODE]You are now ready to …
No. Each sub in a VB .NET program handles a specific event e.g a click on a button. You cannot collect all the events to be handled in only one sub therefore. Regards
Since you are able to test for the first three, i think an else condition will be able to give you the fourth case, i.e a special character. Use your program to try this algorithm [CODE] if(element_is_a_lowercase) print("lowercase") else if(element_is_an_uppercase) print("uppercase") else if(element_is_a_digit) print("digit") else print("is special") [/CODE] hope it …
find your solution [URL="http://http://msdn.microsoft.com/en-us/library/ms171890.aspx"] here.[/URL]if you are using SQL. Otherwise let us know the type of Database You are using.
[QUOTE=seo2005;1026814]Hi, I don't understand the if statement here. Can anyone explain how the execution of if loop will proceed. Why are we using || and && operators here. #include<stdio.h> void main { int year; printf("Enter the year: "); scanf("%d",&year); if(year%400 ==0 || (year%100 != 0 && year%4 == 0)) { …
If it doesn't start, then it's something to do with power. Theres no power being relayed to the motherboard from the power supply. Try again and it will sure work if there's no problem with the motherboard
Hi Guys, I am using sql in and am stuck. after "selecting * from table", how do i store whatever I have obtained from my database in a variable, for display? Thanks.
Try these, download MPlayer here [url]http://www.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc2.tar.bz2[/url], compile and make it. You can also obtain realplayer here [url]http://www.soft32.com/download/63-89178-1/RealPlayer10GOLD.bin[/url].
Use void to tell the compiler that the function is not expected to return a value. Use int if the function returns a value. By the way its also dependent on the compiler. Some may demand the void like in your case, so use it, that is if the program …
Well, if you have the f-chart then code it and let us see your difficulty if any. And mark you, we are not here to do your assignments for you. We only help
I wish to write a program that works in the background, i.e. without showing any windows. Someone prescribed i try this: <code> #include <windows.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) { while(1) { Sleep(1000); } return 0; } <code> but its not working. it still shows …
Hi guys, I am running SuSE linux Enterprise 10 and am trying to use and make squid run. It runs on port 3128. Anyone there with knowledge on how to configure and make it run?
The End.
SecurExpert