199,114 Archived Topics
Remove Filter ![]() | |
I want to develop some plugins for Mozilla Firefox and Internet Explorer. I download de Gecko SDK from mozilla.org, but all mozilla SDK development is by default focused on Visual Studio. And i don´t have Visual Studio. So then i adapted my own version of Gecko for Dev C++ ( … | |
Hello, I have a problem that someone can hopefully help me with. I have a page where Make, Year and Model menus are dynamically created via mysql. Upon selection, the user presses submit and those values are fed to the database where the production numbers for say, a 1958 Plymouth … | |
Hi All I am having a bit fo an issue with an if/else statement inside a while statement. Basically there are two while statements. one to retrieve a distinct value, the second to list all links associated to that distinct value. I am trying to build a favicon fetcher to … ![]() | |
Hii, I have output from computation code called cdof and it is double. i want to creat a file either cdof.log or cdof.dat where i can store values of cdof after each iteration or time step. Please suggest me how to create files using iostream. Thanks | |
im a newbie in c# well, our professor asked us to: Write a program in c# to print a triangle composed of a symbol. The number of | |
I've created a software using vb6 and mysql as the database. The exe runs ok but whenever I try to open a report, I get the error "ActiveX component can't create object". Can anyone shed some light on this problem? I'm using crystal report 11. The reports will run on … | |
Hello, Usually I can find solutions to problems that seem to arise when I'm coding for this game, but I'm stumped on why this is happening.. So I found out how to get the text from the last line of the text box on this game, and I want to … | |
Hi All, I am having problems with reading input from a sequetail file and I can't figure out what is wrong. Can someone please help me out, I don't know if I am even doing it right, very new at this. The code below is how I generated my .txt … | |
Help - I am fairly new at MS SQL, but understand the concepts and have looked at the code in MS Access many times. But here's my problem: I need to create a complex query across multiple tables within the same database, but I'm just not sure how to do … | |
HI, all, I want to ask a question as what I described in the topic. For example, now I have some data in the text box, such like : $VTG,,,,,,,,,N*30 $GGA,,,,,,0,00,99.99,,,,,,*48 $GSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*30 $GSV,1,1,00*79 $GLL,,,,,,V,N*64 $ZDA,,,,,00,00*48 $GSV,,,,,,,,,,00*67 . . . . . From all these data, what I want is only … | |
Hope I am posting to the right place. I am creating a form in Acrobat that needs a little Javascript, but I don't know anything about JavaScript so any help will be appreciated. In the form there are for separate price fields and a field that automatically fills in an … | |
Hi friends, I want (a C++ code) to hide a process in kernel 2.6, I don't want monitoring even in /proc. please help me. Regards, Eilya | |
Hi, I've been working with PHP for about 6 or 7 years now, and recently I came across a problem that I really couldn't figure out. At my work, we have management software that has been worked on for years and years by a lot of different programmers. It is … | |
oh my god ! the teacher let me 2 do the hangman !! u know, it is difficult 2 my--a VB learner who can give me the code for hangman ! @_@ thx | |
Hi - Can someone please help me? I have a html table generated by php mysql and have a header to download it to excel. My problem is, I have this cell/table data that displays .10 in html and when I exported it in excel it displays as 0.1. The … | |
Hi all, I'm using a common Lisp compiler and I don't know the syntax to get the node "NIGHT" from the list (((GOOD))((NIGHT))). Could someone help me? Thanks | |
Hi everyone! I have just signed in at daniweb, I hope you can help me. I am new to perl and have the following problem to solve: I have loads of files with 16 columns full of numbers. I need to 1. take column 6 and substract column 10, store … | |
Can somebody tell me whats wrong with this codes? I’d try to write this program but have error. I don’t how to make it correctly. Please help me! -da question- Write a program to process weekly employee time cards for all employees of an organization. Each employee will have three … | |
I was tinkering around with code in C++ last night trying to make a template algorithm that would be evaluated at compile time and also print information. Unfortunately, because std::cout and std::cin are references to objects and they aren't considered built in types (directly at least), I suppose the compiler … | |
I am currently writing a Poker Clock program in VB 2008. I have got everything working up until I try and type this (on a button) Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Timer1.Interval = 120000 End Sub End Class 120000 being 2 minutes, I … | |
What's wrong about this code? ($matches is a 2 dimensional array) for($i = 0; $i < count($matches); $i++) { [INDENT]echo $matches[$i][0]->getName_team_home()."<br />";[/INDENT] } It's not the actual code, it's just an example, originally it has to put the names of a team playing home in a table. It only shows … | |
Hi all, I,m reading "Art of assembly language" and author says that he had included a library files on a companion cd-rom, but I had downloaded the book for free on the internet and now i don't have these files,can you help me to find them? | |
Hello Everyone, I've created a jasper report in pdf format , and it is getting stored in the dir, can anyone tell me how to read that pdf from jsp and to display in that...cond:i cannot make the report from jsp.i have to read that from the dir(d:/reports into report.jsp)..........................Thanks | |
Hi, Stored proc code below works fine in MySQL command prompt. It returns John because it is in table. However, i can't return or read the Out parametter in PHP. I mean i cant retrieve John. I did ask this in PHP forum but no answer. [code] CREATE PROCEDURE `findname`(IN … | |
Hey Hey everyone :) I need some serious help with writing this game. Its called Nine Men's Morris! If some one has any idea how to write it, or possibly has the code for it. PLEASE PLEASE LET ME KNOW!!! You will be a life saver!!!! Thx Lexi | |
[B]Problem:[/B] Consider a computer with identical interpreters at level 1, 2 and 3. It takes an interpreter n instructions to fetch, examine, and execute one instruction. A level 1 instruction takes k nanoseconds to execute. How long does it take for an instruction at levels 2, 3, and 4. [B]My … | |
Well I am sure that my code is right. but in my main ().. my cout <<myTree casues an issue and I dont know why . any help would be much needed... I am almost there. | |
hey y'all i just started messing with VB about 3 days ago i just created a countdown timer. it works as far as result goes but here's my prob. i created a command button, when i click on it, it shows me the correct countdown and all how can i … | |
I'm almost done with my assignment but now I'm stuck with some binary file problems. Below is the binary file section of my work. [CODE=cpp]cin.ignore(); cout << "\nPlease enter filename: "; cin >> openBinary; ifstream finBinary; finBinary.open(openBinary, ios::in | ios::binary); if (!finBinary.good()) cerr << "File could not be opened" << … | |
hello. Am having a hard time intepreting this java error. The last post made somethings clear but I dont know what am missing. I am getting the error "cannot find symbol construtor Student(java.lang.String, java.lang.String,char,boolean,int,int)" Iam getting the error on this line of code [code] Student studentObj1=new Student("mark","251461",'m',false,3,5);[/code] Here is the … | |
I'm drawing onto a PictureBox, using the code [code=VB.NET] Dim XPrev, YPrev, XCur, YCur As Integer Private Sub picCanvas_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles picCanvas.MouseDown 'Setting the previous points for line drawing XPrev = e.X YPrev = e.Y End Sub Private Sub picCanvas_MouseUp(ByVal sender As System.Object, ByVal … | |
Hows it going everyone. Im pretty sure theres a simple way to do this, but cant figure it out right now. Im still relatively new to vb .net, and have a function that reads a csv file into a datatable and fills a datagrid. But what I want to do … | |
How can I refresh parent page when popup page is close in ASP.NET . I update the db in popup page. I list the information on parent page. | |
this is the program: [code=cplusplus] #include <iostream> using namespace std; int main() { double f0, speed, f1; f0 = 2e-10; speed = 75; f1 = ((speed + 6.685e8) * f0) / (6.685e8 - speed); cout << "The return frequency corresponding to 75 miles per hour is " << f1 << … | |
Hello experts ! I'm a newbiee to this shell scripting! I try to write a "diff" kinda script which compares two text files and echos the differences. The only different is, my script doesn't care about the character "x" in the first file , being replaced with any other character … | |
I am relatively new to XSLT, but I have a problem which seems very strange to me and I hope you will be able to help me out. I have an xml file which contains information about the x and y sizes of sheets in a document and x and … | |
Howdy guys, I would like to know weather it's possible to add html links within a listbox ? I have had a quick play around and yes i can insert the link as static html link ("http://thisite.com") but not clickable. Or if so use the tooltip to some how launch … | |
Hi I've used Access to model a new database that now needs to be created in SQL Server Express. Wow - that's alot of data types! Can someone tell me what the SQL version of the Access Memo data type is? Thanks _________________ [url=http://www.freefixit.net/monitoring-parental-control-software-advice/]Parental control software[/url] [url=http://www.loans.cc]free parental control software[/url] | |
Hi Can anyone please help me sort this problem out I create store procedure in mysql and I want to call this in php. The store procedure is executing ok in mysql but when I call this into php I get fatal error: call to a member function prepare() on … | |
Hi I have gridview and I am using gridview1_rowupdating event to update the gridview, but when I am using the code given below its not working. I do not know why it is not updating, it is not even showing error. please help me resolve this problem. Thanks [code=aspnet] protected … | |
On my game , my bank and money is being limited to 2 billion. Seems like the first 4 numbers (2147) are the same for everyone who has that much, I tested it out on money too and it's only going up to that number even though I edit db … | |
I am using Microsoft Visual Web developer for a site that was already created in PHP. I maintain the site, and have to add a .jpg image of a poster next to the PDF link of the poster for teacher's to download. I am not sure what code to use … ![]() | |
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home2/fellowes/public_html/createaccount.php on line 108 [CODE]include("conf.inc.php"); $tbl_name="tbl_courses"; $sql=mysql_query("SELECT * FROM $tbl_name WHERE crs_semister=1 AND crs_period='A'") or die(mysql_error()); $result=mysql_num_rows($sql);[/CODE] [CODE] <?php while($rows=mysql_fetch_array($result)) { ?> <option><?php echo $rows['crs_code']; ?>//Line 108</option> <?php } ?>[/CODE] | |
I have a class that has functions which use <stdio.h> and <stdarg.h> to take in indefinite arguments, and one of the member functions taking in filenames. There's another function (call it the "do" function) where I want to read from ifstreams created from those indefinite number of filenames. I can … | |
I am writing a forum site and this is an error message I randomly ran into. I have used this code structure before but never ran into this problem. "Fatal error: Call to undefined function form() in /home2/fellowes/public_html/comment.php on line 14" [CODE]<?php session_start(); $tbl_name="???"; $userid=$_SESSION[userid']; $username=$_SESSION['username']; $comment=form($_POST['txtComment']);[/CODE]This "$comment=form($_POST['txtComment']);" is line … | |
Hi, I want to sort my search results from a access database in 10 at a page and showed in page 1,2,3.....last. Now Im just using next and previous to goto frm one page to another. [code=Coldfusion]<cfif pageno GT 1> <td><a href="searchResult1.cfm?page=#pageno-1#" class="style3">< Previous </a></td> </cfif> <cfif counter LE #rec_count#> … | |
:confused: I have to modify a hangman game to open a sequential file, read thru the file and count the no. of words, generate a random no. from the file and read the word from the file corresponding to the random no. and use it in the game, as well … | |
I have this problem. This program runs well except that it skip the value of the first item in list. I think it is because of the cin.ignore(). But if I don't use the cin.ignore(). The cin will only read the first input and none after that. Help? [CODE=cplusplus] #include … | |
Hi there all, I am brand new to php (3 days under my belt). I am trying to modify a webmail.php script that came on this cd that I got with the learning php book. I am having difficulty getting the new fields I added to work. I am getting … ![]() | |
[code=c#]StreamReader reader = File.OpenText("mystations.txt"); string line = reader.ReadLine(); while (line != null) { // string[] stationtxt = line.Split('\t'); string name = line.Split('\t')[0]; string url = line.Split('\t')[1]; string desc = line.Split('\t')[2]; Image img = Image.FromFile("c:/pictures/"+ name + ".jpg"); line = reader.ReadLine(); dgLogo.Image = new Bitmap(img); dataGridView1.Rows.Add(name, url, desc, img); //(stationtxt); } … |
The End.