- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 1
- Upvoting Members
- 5
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
Software Engineer
- Interests
- PHP, Linux, Moodle and open source
- PC Specs
- Windows and Fedora 12
76 Posted Topics
Re: here is a small list of Free C/C++ programming books. They may help you a bit in programming. [B]C++ GUI Programming with Qt 3 C Programming Tutorial (K&R version 4) C Elements of Style A Beginners C++ C++ Annotations[/B] and many more.... [url]http://www.mycplus.com/forum/forum_topics.asp?FID=46[/url] here is the link to download the … | |
Re: Hi you can use the XMLHTTP object to get the data from any website and transform it and get the desired information. Here is a nice tutorial on how to get the data from a website. [URL]http://www.4guysfromrolla.com/webtech/110100-1.shtml[/URL] | |
Re: I dont think so, I think one targeted key word is enough. You can put few similar keywords but dont repeat the same word 2-3 times. Its my opinion but I dont know if i am right or wrong? | |
Re: Wel after googling for some time I came across this link [url="http://www.linuxjournal.com/article/6556"]http://www.linuxjournal.com/article/6556[/url] It stats using some tools you can prevent memory leaks. Here is a C++ Memory Management tutorial. [url="http://www.mycplus.com/cplus.asp?CID=42"]http://www.mycplus.com/cplus.asp?CID=42[/url] | |
[HTML][/HTML] [CODE][color=#0000ff]using[/color][color=#000000] System;[/color] [color=#0000ff]using[/color][color=#000000] System.Collections;[/color] [color=#0000ff]using[/color][color=#000000] System.ComponentModel;[/color] [color=#0000ff]using[/color][color=#000000] System.Data;[/color] [color=#0000ff]using[/color][color=#000000] System.Data.OleDb;[/color] [color=#0000ff]using[/color][color=#000000] System.Drawing;[/color] [color=#0000ff]using[/color][color=#000000] System.Web;[/color] [color=#0000ff]using[/color][color=#000000] System.Web.SessionState;[/color] [color=#0000ff]using[/color][color=#000000] System.Web.UI;[/color] [color=#0000ff]using[/color][color=#000000] System.Web.UI.WebControls;[/color] [color=#0000ff]using[/color][color=#000000] System.Web.UI.HtmlControls;[/color] [color=#0000ff]namespace[/color][color=#000000] lms[/color] { [color=#808080]///[/color][color=#808080]<summary> [/color][color=#808080]///[/color][color=#008000] Summary description for inc_search_books. [/color][color=#808080]///[/color][color=#808080]</summary> [/color][color=#0000ff]public[/color] [color=#0000ff]class[/color] inc_search_books : System.Web.UI.Page { [color=#0000ff]protected[/color] System.Web.UI.WebControls.TextBox Q; [color=#0000ff]protected[/color] System.Web.UI.WebControls.Button Button1; [color=#0000ff]protected[/color] System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; [color=#0000ff]protected[/color] System.Web.UI.WebControls.Label … | |
Re: I guess the following link might help you. [url]http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/[/url] | |
Re: This graphics progam might help you. [url]http://www.mycplus.com/source-code/c-source-code/knights-tour-with-simple-graphic/[/url] | |
Re: Check if the Data provider is present on that machine. Like MS Access Drivers etc... | |
This is a visual basic 6.0 wav sound player class that plays any selected sound file in .wav format. It has the filename property to select the file and play property to play the sound file. Visit [url]http://www.mycplus.com[/url] for more codes. | |
This is an automated system for Bank Management. It uses files to handle the daily transactions, account management and user management. Nice graphical layout and mouse functionality. Manager can add, edit and delete the users and manage the user accounts. Code From: <URL SNIPPED> | |
Re: In class calcPanel2 you can handle all the button click events. Here is a simple example that when the user will click on the * button then it will multiply the two values. First of all add the action listner to the Star button. [code] //For getting the mouse click … | |
Re: Here is a one page reference to grpahics.h library with the details of more widely used functions of this library. Also a small program to demonstrate the graphics. [URL="http://www.mycplus.com/Programming-News-Articles.asp?NewsID=33"]http://www.mycplus.com/Programming-News-Articles.asp?NewsID=33[/URL] | |
Re: [code]RewriteEngine on RewriteMap upper2lower int:tolower RewriteRule ^/(.*)$ /${upper2lower:$1} [/code] Amnot sure if it will work or not. You can read the full post here... [URL="http://balajin.net/blog/archives/2005/10/07/using_mod_rewrite_to_convert_u.html"]http://balajin.net/blog/archives/2005/10/07/using_mod_rewrite_to_convert_u.html[/URL] | |
This is a small function that will block the specific IP from viewing the certain page, and it will redirect the user to the main page or noaccess page. | |
Demonstration of Linked list in java. Very simple and well commented java code for the beginners. Linked list of points are used to create a Polyline and display it More java codes at [URL="http://www.mycplus.com"]www.mycplus.com[/URL] | |
Re: The quick solution is to refresh the page again. You will need to upgrade MDAC (Microsoft Data Access Controls) to the latest version. [url]http://www.microsoft.com/downloads/details.aspx?familyid=6c050fe3-c795-4b7d-b037-185d0506396c[/url] Also try to refer to your SQL server with IP address instead of instance name or server name. Another solution is to increase the timeout value … | |
Re: [QUOTE=asp_seetha;713069] I need specific table to be printed on following page if it does not fit in the current one. Unfortunatelly, I cannot solve this issue... Does page-break-inside not work? I have made some tests on IE 7.0 and it simply does nothing. How should I use this style?[/QUOTE] Well … | |
Re: Ok...here is what you need to do. [code=html]<script> function submitIt(myForm) { var w = window.open('about:blank','Popup_Window','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width=200,height=200,left=10,top=10'); myForm.target = 'Popup_Window'; return true; } </script> <form name="form1" method="POST" action="https://secureServerName/domain/register2.asp" onSubmit="return submitIt(this)"> Form content </form>[/code] Hopefully it should work for you. | |
Re: What I can understand that it might be a problem with File System object, that it can not read the fiels or ASP engine can not access the files in that directory. Check to see it IISUR has the permissions to access this directory. Also Dir=server.MapPath("\atpar\web" ) & "\*.asp" here … | |
Re: Here is the code you need to redirect a user from one page to another using html. [code=html] <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>HTML Page Title</title> <meta http-equiv="REFRESH" content="0;url=http://www.domain.com/page.asp"></head> <body> HTML Text </body> </html> [/code] Here content="0; is the time in seconds the browser will wait … | |
Re: [code] <% Dim lgn,pas ' Login name & Pasword lgn=cstr(Request("login")) pas=cstr(REquest("pass")) if ((lgn="login") AND (pas="123")) then session("admin") = True response.Redirect("somepage.asp") end if 'now if the user have not logged in then if NOT(session("admin")) then Response.Redirect("NoAccess.asp") %>[/code] The simplest code will look like this. | |
Re: As your SQL server is configured to run any query which will be executed with in 300ms. And now in your case, your query's estimated execution time is 353 which is more than the time set by the DB administrator. So either you will need to optimise the query to … | |
Re: Store all the values in a variable and then show them on the page. This would be easy to use and update at later stages. | |
Re: I think its not true. It is based on many other things as well like the domain age, quality contents, out going links. And the back links must be from the relavant site. Like if you have a clothing website then your links must come from clothing websites. | |
my website is about C/C++ << url snipped to comply with forum policy >> how can i get more forums members... i joined some programming groups but could not get much forum members. Any one advise me Saqib | |
Re: What type of text file do you need. Do you want to save the same HTML code in the text file or the search results only? | |
Hello all I am doing a research report on Operating Systems in my Masters Degree. I need your kind comments on the following topics, so that I can add them into my research report. A small comparison among operating Systems. (Windows 200, Windows XP, Linux, Linux, Mac OS). you can … | |
Re: [COLOR=black]Try to find out whether objRS("User_ID") has some records or not? Another thing is the data type of User_ID, is it int?[/COLOR] [COLOR=black][/COLOR] [COLOR=black]Mostly this exception occurs if you try to casst different data types of variables.[/COLOR] | |
Re: Try [code]SELECT TOP 5 ID, total, recipe_name FROM tblrecipes ORDER BY total DESC, ID DESC[/code] The thing is that you haven't manetioned to sort the ID colums as well. So IDs appear in the order of last modified data/time. | |
Re: Create an Array of 50 integers. Write a simple function to seach the inputted integer in the array. If the integer is found in the array return the index of that integer in that array. If integer is not found in the array just return -1 from that function. Now … | |
Re: If you knwo the VBA, ou can create a macro in EXCEL and when ever the data is entered into a specified columns then the macro calculates te IRR and put it back into a specified cell. And you can get the data again from the EXCEL sheet using the … | |
Re: C# is the best language I think for Windows Programmers. | |
Re: Hello, try using the other driver than MS Access driver. Might be the driver is causing the error. | |
Re: You can trigger more events on onChange event like OnChange="fun1();fun2();" | |
Re: [QUOTE]"Contract Job Marketplace for Webmasters, Freelancers, Programmers, Translators, Custom Web Designers and more..." [/QUOTE] Are you concentrating on all of the mentioned people above? If yes then I dont think so its a SPAM. As you are not repeating any words in your title. Am not an SEO but the … | |
Re: [QUOTE]The only advice I can give you is to POST POST POST yourself! I say this a real lot, but I might as well just repeat myself here, at the chance of being repetitive. Members are selfish. They only care that what they have to post gets seen and replied … | |
Re: I htink may be you system is slow or there is some problem in your browser. I guess you are using Internet Explorer. Try to use some other Browser, may be it solve the problem. Sometime secure pages take a bit long to open on a slower connection. | |
Re: Hello, You havent entered any cursor type for the recordset. You try the following line. [B][U][COLOR=#ff0000]objRS.Open "ilizarov", objConn,adOpenDynamic , adLockOptimistic, adCmdTable[/COLOR][/U][/B] [B][U][COLOR=#ff0000][/COLOR][/U][/B] [COLOR=#ff0000][COLOR=black]I think by default it take adOpenForwardOnly cursor tyep which [/COLOR][/COLOR][COLOR=black]conflicts if you try to enter the record in the data base using the add method. [/COLOR] [COLOR=black]Here … | |
Re: You can use the expression builder in Acess to validate the email address before entering, or if you are using any software to enter the data then you can validate the email address using the code. | |
Re: In MS SQL Server there is a wiard named "Import & Export Data". You can use this wizard to import data from any data source to the SQL server. | |
Re: Well if the data is not huge then u can use the querystring to forward the data to the next server. For posting the data you can use XML to post the data. I havent used that but i think it will work. | |
Re: Hello, You can use HASH Encoding to generate the random HEX values from any string of data in ASP. You can find lot of source code regarding Encoding in ASP and you can use any of them to generate the random values. Here are some of the encoding soure code. … | |
Re: Well the website looks good. But on their portfolio they haev just web applications and no software. The website projects look good. | |
Re: Well within three days you can not understand all of the three loops :P. It will take some time, all you can do is practice more and more and try to understand the code of others. This will help you alot while understanding the programming. | |
| |
Re: 1 day - If you ask 2000 people to visit your sit. 1-2 years - If you dont advertise your website. So the more you advertise the more visitors you will get. Try to have like exchanges with related websites, add your website to different directories under the related categories … | |
Re: Now what you haev to do is, just create an asp page with the name "SendEmail.asp" and save it. Then create an HTML form and in the action property of the form <form action="SendEmail.aso" Method="Post">. And thats it. You are done. | |
Re: Well some other program might be using that particular file you are trying to delete. In this case OS does not allow to delte the file untill the other program finished its processing. When ever a program/person opens a file, OS marks its attribute flag to "OPEN", so no other … | |
Re: [quote=trishainfotech]if you really fail to get rank you can use google adwords service to bring customers on your site or get some cpm deal for some smaller networks[/quote] Absolutely!!! Google adwords is the best way to get the targetted customers, you can also submit your website in directories, and get … |
The End.