199,114 Archived Topics
Remove Filter ![]() | |
i run a forum powered by phpbb version .19... one of my moderators is very concerned about an ip address been seen logged onto 10-30 pages on the forums, at the exact same time. spme of these pages were private messages, profiles.anyway the ip is called a googlebot, but this … | |
I am trying to download some applets for my physics class (my students like applets a lot) and cannot download them because I don't know how to interpret the tag CODEBASE="." The web page source code looks like this: -------------------------------------- <applet code="Lab.class" name="Lab" archive="Lab.jar" codebase="." width=640 height=440> <param name="simulation" value="single … | |
I need some help with the following assignment. I think I'm pretty close, but I'm missing something. Any help is very much appreciated. Assignment: [I]Part 1 : "Create a function template called average(). It will accept two arguments of the same type and computes the arithmetic average. The average is … | |
Hi, I admit i'm a complete newbie in perl although i have been invloved in php : ) hope somebody can help me out with this I want to run a simple perl scrip : [CODE]#!/usr/bin/perl print "Content-type: text/html\n\n"; $request_method=$ENV{'REQUEST_METHOD'}; print "request method:",$request_method,"<br>"; print "O.K.!";[/CODE] but it shows this error … | |
:lol: Now on my to certification path, have completed college and going to take MCSE exam 70-290. Can any one help me to get all the useful resources regarding this exam? Your info will greatly appreciated! :cool: | |
Hello, I am trying to move data from a client to a server, and save it in a file. However, I am getting a "Runtime Error!" when I use the substr() function, here: [CODE]char buffer[256]; int sr = recv(acc, buffer, sizeof(buffer), 0); string buffStr = buffer; outfile << buffStr.substr(9,buffStr.size()-1) << … | |
Hi Friends I am Doing Application to interface with the x25....... The Company Eiconcard provided the sample code but that is in c language. I want to develop it in c#. Below I write the Code which is equivalent to c Language code but its not working properly. Plz Help … | |
I have a matrix class which there are matrix objects. I want to call `.value(int,int)` directly on the matrix objects and set the internal 2d vector to the value on the right side of the equal sign. Here is what I want to do: new_matrix.value(row,col) = 0; Here is what … | |
Hi.I have been trying to write a simple program that teaches how to read and write Japanese.Unfortunately not every windows does not support Jpanese characters.So like when my program starts I have a pop up which has to give a japanese chared message altough I write the code as such … | |
Hello, I am writing a java program that reads a flat file and process each record. I am maintaining a counter that keeps track of the record/ line being processed. I want to print this counter on the monitor screen. Using System.out.printf("Processing Record: %d\r", counter); is printing the the required … | |
Hi all i use a small java script in an aspx page by using something like this window.history.forward(1) [[url]http://www.daniweb.com/techtalkforums/thread35732.html][/url] to inactive backspace, then i may be sure about some user error in data entry, but sometime its needed the user allowed uses backspace and sees the previous page, i wish … | |
Hello Everyone, I am a very green programmer, lol, and I really need alot of attention right now. My assignment consists of me writing simple codes, but I just cant figure this out out. > Question: > > > write a program using a function and a series of if/else … | |
How can I prevent a registry key from deletion ?? I want to have my application store passwords of the users in a registy key ... so I want to prevent users from deleting the registry key manually. | |
i have to make a simple calculator program in c++ the program need to have the all the calculation in a function called do_next_op. i tried to make this program but it turns out that my program returns incorrect results, i think it may be caused by the value of … | |
How do you make an insertion sorting algoritm using a liked list, first of all, i really dont have the slightest idea about link list, can anyone pleeeeeeeeeaaaaaaase help me.... :?: :?: :?: :?: :?: :cry: :cry: | |
I need some help using Visual basic 6.0 to read the computer's clock and use it to execute a command at a specific time of day. I am using the computers parallel port and visual basic to control a stepper motor and I need the motor to turn on at … | |
I am new to Visual Basic 6.0 and need help with the DataGrid control. I am trying to: 1. Have data in one of the grid column's that is in "lower case" forced to "upper case" I have tried using the Before Update event, but cannot get it to work. … | |
Hello to you all , i have recieved an assignment to build a recursive function which will recieve an array which has to check if it is "Up&Down" from both sides : Example : 2 5 6 12 7 5 2 . according to the specs of the H.W assignment … | |
[CENTER][COLOR=Navy]Hi i am creating a database im ok, just havent used it for years and years. I need a defult value which will add todays date. And a validation Rule that will prevent date entries prior to 1/1/2002[/COLOR] [COLOR=Navy]Can anyone please help me!! Thanks Jay[/COLOR][/CENTER] [CENTER][COLOR=Navy]AND MY INPUT MASK IS … | |
There are two things which I didn't or could not achieve with using maths.cos() from Java. First - When I calculate cos90 or cos270, it gives me absurb values. It should be 0. Meaning it cannot calculate if the angle lies on X axis. I tested with 91 or 271, … | |
Havent written any code in along time but took up a little project that requires some C++ , Just need a little help getting started. Does any one have the source code for a program that will Read file write what it reads to another file. Pick out specific tokens … ![]() | |
anyone can teach me about JComboBox ?? i nid to know how come my program .. 1) if i don't click anything on my JComboBox, how the system going to capture the default value? it returned a "null" | |
hi everyone, i am looking for a brief introduction as to what exactly is jdbc and how do i install and use jdbc drivers with oracle 9i. and how shoud i write a code to execute queries on the tables in my oracle 9i database. | |
What is the advantage of writing the button as a seperate class. Like [CODE]private class button implements ActionListener { public void actionPerformed (ActionEvent e){ { }[/CODE] chipsncoke | |
Quick question while learning C++: Say you have class A, you can instantiate an object of class A like: A a; And then you can do stuff with that class (eg, a.method(), etc.) But you can also do: A a = new A(); And do stuff with that, and delete … | |
Hi evryone I using MVC++ and built my project using Win32 app. My program do not have any interfaces. it reads files and it put the output in another file. ( I do not mind put interface only to enter the path) the thing is I made my program read … | |
Hello, I know this is probably a very elementary answer, but how does one convert a character into a character pointer, for use strcpy()? For instance, I need this: [CODE] char sendBuffer[5]; char ch; // assume code in between makes ch something strcpy(sendBuffer, (char*) ch);[/CODE] However, the console window that … | |
Is anyone up to a challenge? I have some problems linking to a C++ DLL with a VB program. The program has this error: [code]Run-time error '13' Type mismatch[/code] It crashes at a line of code that is supposed to be calling a funciton in the C++ DLL. The line … | |
hey.. again i wud like to ask for ur help.. im a really newbie to vb6 n a really stupid one.. so.. my teacher want me to test the time on how long does da program save the file to database.. so i have to put timer.. on save capture … | |
Hi, I want to make a dynamic webpage using the Master pages in ASP.net (C# Language, VWD 2005). 1) First about, I've created a panel where will be my whole webpage (thanks to that I can center my web on screen). 2) In this panel, I want to create a … | |
Hi guys, I am a new member on this forum. I had a Visual .NET 2003 Trial Version last year and I installed this to my office using Windows 2000 and at home I installed it to Windows XP Professional. After installation I installed the IIS as the software requirement … | |
I have been having some problems with strtok. I'm not very experienced in C/C++ so I'm not used to using strtok. the code I have is this: [CODE] char *cmnd; string cmd[100]; char inpt[81]; while(1) { cout << "statsh$: "; cin.getline(inpt,' '); cmnd = strtok(inpt," "); int c = 0; … | |
Hi I am trying to access a database that is going to be located on a remote server, but i have no idea how to do it. i tried this commands so far but they don't work: [CODE] Dim oSqlConn As New SqlConnection oSqlConn.ConnectionString = "Network Library=DBMSSOCN;" & _ "Data … | |
Hi everyone I am trying to code a program using loops that prints triangles. for instance: * ** *** **** ***** then the other way ***** **** *** ** * My problem is I am using For---Next, but I am not sure how to start my counter. I had for … | |
[COLOR=Navy]Yo, im new to Python and have been working on a personal project but can figure out how to save data to a file then read it in another program. im might have the writing down but cant tell bacause i cant read it. Iv been trying to work it … | |
I have a Nuke php site. The problem is that the meta tag is setup to display what the creator wanted the keywords to be. I need it changed so that I can make it relevant to my site. Please let me know how to do this. [URL=http://casino.finditjack.com]My Site[/URL] Thanks | |
I need to rename all the files in the current directory,if it contains specific letters using shell programming. For that I used foreach file if (`grep $2 $file`) then mv "$file" newname; in $2 the specific characters are stored. How should I modify this code? Are there any simple way … | |
Is there any way to resize a console program while its running also whats a better way to clear the console then [CODE]system("cls");[/CODE] cheers | |
Can anyone explain to me how can UML be used in the design phase?can u give me some examples of it... thanx | |
Hi all, I'm new to programming and I'm learning VB. Anybody pls. can help me to find sum source for learning systems analysis and design, I mean the phase of analising and disigning the structur of a software which is pre-coding phase , and how to write a Pseudo code. … | |
Here is my attempt, could you look over it and tell me what I am doing wrong? #include <cstdlib> #include <iostream> #include <ctime> #include <cmath> using namespace std; void add(float[],float[],float[]); int main() { float a[500000000],b[500000000],c[500000000]; for(int count =0; count<500000000;count++) { a[count]=rand(); b[count]=rand(); } add(a,b,c); return 0; } void add(float x[],float … | |
can any body help me to add icons to the toolbar, i know that we have to use PhotoImage class to add but i'm not able to see the image in the toolbar. here is the code which i wrote, the following code is not an error, but im not … | |
I found this c source code in some website wich is very complex and interesting to study . so i get the code and look at it its really complex so i decided to try it out and compile it and i get errors. [CODE]Compiler: Default compiler Executing g++.exe... g++.exe … | |
whether it is true for following statments: the skill sets required to build an web-based application on Oracle XML DB Server and RDBMS are totally/almost different! | |
Greetings All, My Setup: ---------- - Windows XP - Apache 2.0.52 - PHP 5.0.3 - PHP Nuke 7.8 My Problem: ------------ After attempting to upgrade from PHP 5.0.3 to a later version, Apache no longer reconizes my PHP website What I tried to do: ------------------ I had a perfectly running … | |
Hello, I am working on a server program that deals with opening files, or at least that is all that is relevant for this post. I am using VC++. I use multithreading so that it can be multi-client, of course, but when I try to use this line: [CODE]infile.open(filename, ios::in);[/CODE] … | |
I in the process of making an oRPG game called Book of Souls using an open source oRPG engine called Konfuze D-Bugged. This is similar to the Mirage Source engine. We are currently looking for a coder who can modify the source of this engine in order to help us … | |
Hi, is it possible the html file convert to pdf documrnt and vice versa ? if, YES than I wanna source code for convert the html file to pdf document and vice versa. plzzz give me proper instraction. i m waiting for rite remady SANJAY | |
Hi everyone I used MVC++ and built a project win32 app( world) which has in it folder(world.dsw, world.dsp, world.cpp,world..., Input.csv,output.csv) , my program do not have an interface. because it open and read in.csv and do some calculate to put the output in out.csv. Now I would like to make … | |
Been banging my head against the wall for the last several hours. What the &^*% am I doing wrong. Code to set the cookie [code] Response.Cookies["mydomain-LoginName"].Value = ((Login)sender).UserName; Response.Cookies["mydomain-LoginName"].Expires = DateTime.Now.AddDays(30); [/code] code to read the information back in [code] strLoginName = Request.Cookies["mydomain-LoginName"].Value; [/code] |
The End.