199,114 Archived Topics
Remove Filter ![]() | |
Hi all im Implementing wordcount feature in my appliction it counts the numberof lines in the document,number of pages, number of charecters with space and without space, numberof paragraphs in the document i implemented this function it is working fine but the problem is becoz of loops and im checking … | |
Hi all. Hope you can help me out with this problem. I am trying to get a bluetooth finder to stop, and start again. What I can see is that the first time it stops and then start again, it work. the next time I do it, nothing happens. When … | |
hi friends my site is a gallery based on zenphoto but i want to add an ajax theme that gives this error: "An error occurred in your response function, NOT mybic related. Error Name: TypeError Message:document.getElementById("imageSource") is null" i have tried almost all!!! if you want to see my try: … | |
If anybody could let me know how to create a bullet in an xml file using php. This piece of knowledge will be highly appreciated. Thanks | |
Hi I created one website with login form.In that form after login with username and password i entered into welcome page after that i clicked logout then my page gets logout then i clicked back option in my browser that time it shows well come page i want to avoid … | |
Hi all, Im very New to My SQL and have done alot of googling and simple studies. I have two Questions: 1. Where can I start with Complete no knowledge of MySQL and databases in general (though i know a little) 2. I have tried to play with MySQL for … | |
[CODE] CREATE TABLE `categ` ( `id` int(10) unsigned NOT NULL auto_increment, `categ` varchar(32) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; INSERT INTO `categ` (`id`, `categ`) VALUES (1, 'General'), (2, 'Politica'), (3, 'Sport'), (4, 'International'), (5, 'Cultura'), (6, 'Hitech'), (7, 'Showbizz');[/CODE] [CODE] CREATE TABLE `ziare` … | |
Hi, i have a major issue in program and i cannot figure out why. It is an image stacker which averages, brightens, darkens multiple images to a single image. When i call function self.saveFile() straight after the program has started, it acts as it should. I can specify a new … | |
Hi Everyone, I am having some problems here and it must be that I don't have something turned on or something. I just started a new program and have placed buttons, text boxes ect. on the GUI. The problem is that when I go to the code portion of the … | |
Hello daniweb, This is my first post, and coincidentally my first program! (more like a script though I am told) At my work there is a lot of programmers, unfortunately they do not like Python. I cannot agree with their sentiment! It is my first language (computer wise) and so … | |
Hi, I am a newbie in python, and i am currently using py2exe in Windows and python 2.5 platform. The problem is, my python code is residing in several subdirectories (1 folder for images, 1 for other .py files etc). Now, I would like to use py2exe to create an … | |
In this management software I'm working on, I've built a messenger for the employees to use to IM each other. Recently we moved to a brand new server and upgraded from PHP4 to PHP5. Now the instant messenger won't work. I've opened port 7357, which is the port it uses … | |
Hello, I'm new to Javascript and I'm trying to write a code that when a user enters three numbers will tell if the numbers can form a triangle or not, or if the triangle is a right triangle. I can't see why the code won't work but I bet someone … | |
Hey everyone, I am supposed to write a program that counts the number of vowels in string of characters. It must include "Struct counter_t (it must be declared as in the code i've written)" and function "int CountVowels (IN text[], OUT Count)". the OUT parameter must be of type counter_t. … | |
Hi!!! This is my first time to post here and I have a problem and I want your help..... This is the case my teacher gave me a question to add 1 to 100 using while loop and its really confusing me... but here is my idea and I jsut … | |
Hey guys, I'm trying to send an array as a parameter and it is not working.... I have set it to passed by reference in my sub. Visual Basic says: "Compile error: Type mismatch: array or user-defined type expected" How may i solve this problem? Yours words of wisdom are … | |
[CODE=C]#include<stdio.h> #include<conio.h> int main() { float a=0.7; if(a<0.7) printf("C"); else printf("C++"); getch(); return 0; }[/CODE] The above code prints 'C'. Whereas the following two codes prints 'C++'. Why is that? [CODE=C]#include<stdio.h> #include<conio.h> int main() { float a=0.7; if(a>0.7) printf("C"); else printf("C++"); getch(); return 0; }[/CODE] [CODE=C]#include<stdio.h> #include<conio.h> int main() { … | |
Hi... As im new to .Net .. I just wanted to know if their is any "event or method" in C#.net to find the DISTANCE between the two Points.... Say for example:" I have two points on a web form and i need to find its distance by Dragging the … | |
This is what i am doing: EXTRA CREDIT: Write a program that calculates and prints the take-home pay for a commissioned sales employee. Create appropriate variables and enter the values of variables that will change for each employee using Console.ReadLine(); Jessica received 7% of her total sales. Her federal tax … | |
I need major help on this. I am so lost in C++ and don't understand what is going on. I have the first three done! Please help, I am begging! 1. Draw a UML diagram for the follow class: --Class name is game --Privage integer member called level --Public constructor … | |
I need to FICA and Federal Tax % to a weekly paycheck calculator. I think I have everything in the program that needs to but, I think I might have a line in the wrong spot or in the wrong order. Any help would be greatly appreciated. Thank you. [code=VB] … | |
I will explain... I downloaded `"mysql-5.0.45-win-src.tar.gz"` from Mysql download area.I tried to built Mysql.sln inside that,but i am getting errors(about 58) like Error 149 fatal error LNK1181: cannot open input file '..\zlib\release\zlib.lib' mysql_upgrade Error 319 error PRJ0019: A tool returned an error code from "Performing Custom Build Step" mysqld Error … | |
hello, I 'm still a noob at programming in vb.net I have a problem. I 'm trying to get my selected rows values to another page. Basically, there two values that not being displayed in the gridview, but is part of the selected statement in the store procedure that populated … | |
Hi, I am trying to learn asp.Can anyone tell me how to run asp and wr we type code is this possible to type the code using Macromedia Dreamweaver. Thanks and Regards Punitha Pary | |
Hi, I have come to ask about "System.IO.StreamReader.ReadLine" I want it to read line 1, then 2, then 3, and it keeps going for 20 Please just give me the code to read line 5 for example, then i will do the rest, here is the code for you to … | |
Hi, I'm new here, and still a noob in sql. This is my query [code=sql] SELECT Payments.ClientID, Payments.CreditorID, Clients.FirstName, Clients.LastName, Clients.SSN, Clients.Address1, Clients.Address2, Clients.City, Clients.State, Clients.ZIP, Clients.HomePhone, Clients.WorkPhone, Clients.OtherPhone, SUM(Payments.Amount) FROM Payments INNER JOIN Clients ON Payments.ClientID = Clients.ClientID WHERE (Payments.CreditorID = 1015 or Payments.CreditorID= 1014) GROUP BY Payments.CreditorID, Payments.ClientID, … | |
I have always wondered? When you submit a form in ASP the page refreshes so in order to edit a value you have to press back on the browser or at least that is what I have been doing. Is there any way you can hold that value so that … | |
i have a webpage running where it goes to an SQL Server and displays the data that's returned from it. however, the users can select to see some data or a lot of data. in the ' a lot of data ' version they are going to get 10,000 records. … | |
Hey guys & gals, I have a homework problem, and I'm having problems looping the month. I will share the problem, then what I've got so far. Thank you in advance for any advice :) The problem is a typical wolf/rabbit population, but the solution asks for the population every … | |
i am new to asp and would much appreciate your help with my problem. i am trying to retain the selected "state" input from my form's drop down menu after it is posted and then gets returned to the form page for incorrect or additional input on the form. Presently, … | |
Hello all! I have a few questions about putting images into the database. I have chosen to put the images on my server and then the location will be put in the database, instead of doing the blog thing. However, I am having a hard time trying to figure out … | |
Hi, I need to implement a dynamic array of pointers to structures.Here's what I've done [code] struct node{ int freq; node *lptr; node *rptr; }; class M { private: node **A; int length; public: M() { length=10; A=new node*[10]; } M(int a) { length=a; A=new node*[a]; } [/code] Firstly, am … | |
Hi everyone! this is Rupam, I've been building a web application where I need to include a web page where I'll display images from two different tables in a database. I want to show only two images one from each table at a time, i.e. in one page. What I … | |
Help me with the code or tutorial on how to connect vb .net with sql. dbase. thank you | |
I am new to building web applications and I am developing my skills in programming. I have a few questions about JavaScript that I cant find the answers too easily. 1. People seem to think that there is a cold war going on between Adobe's Flash, Microsoft's Silverlight, and JavaScript. … | |
I have a simple javascript that pans through webcam images. I does not update the images until one goes in and clears the cache, at that point the most recent images show up. Is there some code in javascript I can use to have this done or is there another … | |
CIS350 Project Choose one O(n log n) and one O(n2) sorting algorithm. Choose a third algorithm of any time complexity. For each of the three algorithms you have chosen, implement the algorithm. Then, write a short piece of code that will generate the following: 1. A file of 1000 random … | |
Hi can u call an Instance method from the constructor in java. thanks for your help. | |
Hi! :) Im developing an application with visual basic 6.0 for front end and MS SQL 2000 for backend. I've been trying to create a data grid but the error above keep showing up. I wonder what's wrong with the code (since it was system generated I tought it would … | |
i am new for php and mysql. i am using three textbox and one submit button. it consider as userid , firstname, lastname and add button. and i am using mysql data base. when i give the input and click the add button it will store to mysql database. and … | |
Here's my problem. I'm writing a program that has the user input a string. That string is then compared to the values in a string array within a class. Here's a sample of what I'm trying to do (sorry about the spacing. I use tabs, not spaces): This is my … | |
Hello is there anyone here that is agreat forum creater I need your help please!! I just cant seem to make a great forum can someone help me create a forum? | |
HI im new here, i would like to ask the code for generating words in random letters.. i have a 5x5 dimension of textboxes, each textbox is randomizing as the button1 was clicked,how am i supposed to generate words with the given random letters??pls help me , teach me the … | |
Hello I am using windows XP I need a small programme in Visual basic 6 with Access 2000 I have two tables for example one table named student other table named section In student table rno is primary key. In section table Rollno is primary key Both tables have datas, … | |
Hi I have created a small program which just adds two char* with the help of overloaded + operator, but getting problem with destructor. [CODE] #include<iostream> #include<string.h> using namespace std; class base { private: char* name; public: base(); ~base(); void display(void); base(const char*); base(const base&); base operator+(base foo); }; base::base() … | |
Hi friends, I took a date picker control on form but it is not showing current date. Is there any way except this datepicker1.value=date ? | |
Hi, I am creating website for e-shopping.In that e-shopping i want to sell some products in online can anyone tell me how to do this using paypal or anything. Thanks in advance Punitha Pary | |
I dont know where I post this question.,anyway i run sql statement in C#,but once i run my applcaiton it gives me error message .It says [COLOR="Red"]incorrect synatx near keywork 'AND'[/COLOR] this is my sql statement. string str1 = "UPDATE dbo.Retailer SET SalesExecutiveCode='" + this.comboBox1.Text + "'" + " AND … | |
write a programme to show in which programming language i have written this programme | |
Hey Guys Can anyone help me with JavaBeans The error says my Bean cannot be resolved to type. Any solutions? Thanks in advance |
The End.