199,114 Archived Topics
Remove Filter ![]() | |
I think I did post this some time ago, but can't find original thread to rehash. I have some questions regarding lifting data from a particular webpage. What makes this unusual and why I need to ask some questions is that within the tags, there is a lot of white … | |
Guyz I have again got a problem with functions. [ICODE]"" Write a function to input matrices"" [/ICODE] Or how can I input using fuctions ?? is it possble ?? so far I have developed a few lines. [CODE] //fuction to input a 2D-array. int multi_array(int r , int c)//r is … | |
All, I am working on developing a slideshow tool in JavaScript/HMTL. I have everything done and working except for some functionality that I would like when selecting the input images. The way I currently am doing this is by what could be called a standard browse button. When you click … | |
Hi, I'm trying to work out a way i can create my own "find..." or "find next" dialog for a textbox, because i don't think Vb.net has one that you can use, and its vital that i manage to get this otherwise the program wont be much use when editing … | |
I have created an application which populates a .csv file on the data-grid.When the user clicks a button a dialog box opens and the user selects a .csv file and opens it. The connection string that I've used is; "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='"+filename+"'ExtendedProperties=text;HDR=Yes;FMT=Delimited"; When I run the program the error that I … | |
Hi, I'm new here, so please be gentle :) For an application I'm working on I need to implement a callback function that takes a va_list as an argument. Inside that function, however, I need to pass the va_list (or rather all arguments of the callback function) to a function … | |
Hi all, I've been searching for hours but i can't find any solutions so i hope someone can help... Is there any way of proving that the += operator is more efficient than the + operator... i.e. A += B instead of A = A + B I'm hoping to … | |
can anyone please tell me how can i save my visual basic exe in such a way so that its exe run automatically when windows start if u know the answer please mail me at <email snipped> | |
Hi, have a look at my [URL="http://www.n33dlink.com"]directory[/URL] - on the rightside i have the Links by Pagerank. Icons should be kept on left side but numbers should be right aligned. How to do it - have checked several times but did not suceed. Would you require the script to verify? … | |
My ISP (Heart Internet) has told me on Monday that one of my pages is running a permanent server process. I have no idea what one of these is or how I have manage to start one running and their support dept is being [B][U]very [/U][/B]unhelpful. It appears my code … | |
Hi i want to insert the email into a table, i pass the parameter to the stored procedure if this email_id doesnt exists in the table only then it should be inserted into the table... how to do this using a stored procedure please help its urgent!!! | |
I'm having problems performing math in JSP. I have a line: double percentage = (useful / nonuseful) * 100; which is giving me an error, how do I fix this? Thanks | |
RUN-TIME ERROR '40006' WRONG PROTOCOL OR OR CONNCETION STATE FOR THE REQUEST TRANSACTION OR REQUEST. that is my problem,, here is my code that has an error. Private Sub Text2_Keypress(keyascii As Integer) If keyascii = 13 Then keyascii = 0 List1.AddItem (Text2.Text) Winsock1.SendData Text2.Text Combo1.SetFocus End If End Sub please … | |
Hi all, Could anybody help me in getting a FULL systax of SQL Statements in vb 6.0. Or could anybody suggest me a site that could do it. Rajesh Khanna | |
hello how can i send mail from my server based application program..the code that i wrote don't show any error but its not working..i am not getting any mail.. | |
what would i do if i want it to check if something certain has happened when there is a change on the form? because i have a tab control and each tab has 2 different textboxes and when they are the same i want a notice to pop up, but … | |
Hi All, Would someone please help me with this problem I've been struggling with for a few days now. I am trying to convert a file from this Upper Case:- 01m-matt-01-01 BIBLOS GENESEWS IHSOU XRISTOU UIOU DAUID UIOU ABRAAM To this Lower Case into New Testament Greek:- 01m-matt-01-01 biblos genesews … | |
I would like to have a search engine on my site. I tried Zoom suggested by josbro79 to another member. It is very good and easy to use. I am planning to buy it since the free version supports only 50 pages. i have a site larger than 200pages. Should … | |
Hello All : Is there any idea to change the name of any control exist in a form , while the form is executed I must have a button when I pressed it a dialog appear this dialog must have(textbox) the new value of the selected control must written in … | |
Hi, Im writin the followin code to connect with oracle `database.im` also using toad .I keep geetin errors even if i declare `private String AQC1_UID = "";` and so on.. import java.sql.*; public class Login { public static void main(String[] args) { String AQC1_UID = ""; String AQC1_USER_PWD = ""; … | |
How to move one Text Field to another Text Field by pressing Enter Key? in Java | |
I am absolutely new to C# , reading the Book , Beginning Visual C# 2005 ,byKarli Watsonet al. , Wrox Press . Using Visual Studio 2005 . Okay , I was practicing some of the concepts from Functions chapter and i faced a wierd error. This the code which is … | |
Hello- I have these two tables: [code] CREATE TABLE ampref ( ampref_id serial NOT NULL, amp_id integer NOT NULL, code character varying(255) NOT NULL, description text ); CREATE TABLE amp ( amp_id serial NOT NULL, name character varying(255) NOT NULL, description character varying(255), url character varying(255) ); [/code] ...and I'm … | |
i wrote a code to get hard disk info and used FindFirstVolume(). however, the console-based application was ok but when i made an MFC application doing the same thing, it did not compile correctly. i think the problem is with my redeclaration of _WIN32_WINNT in the MFC application. this is … | |
i am trying to load data from the database to a dbcombo but i am not getting it properly i am using the following coding : [COLOR="Green"]Set db = New Connection db.Open "PROVIDER=Microsoft.Jet.OLEDB.3.51;" & "data source= " & App.Path & "\db1.mdb;" Set rs = New Recordset rs.Open " select model_no … | |
Hi all, How Can i Download a Upload Word Document in PHP.Anybody Can help me For me Doing This. | |
i have this problem of mine, where i don't know the script if we want to retrieve the value of option value in turn to search data. i only the script to retrieve value from input type(text). please help me on this. i only know this. this script is to … | |
Hi, this is my first post. I have a website [URL=http://www.psychopanic.com]www.psychopanic.com[/URL] and theres an IP address that I want banned from accessing my site (203.213.0.10). Does anyone here know how to make a MsSQL script that can ban ip addresses? my webhosting Plesk control panel only lets me use MsSQL. … | |
Hello everyone! I am new to C++. I am learning GUI programming using gtkmm on linux. I have a frame class, and I have a library class (that writes data to sqlite) that belongs to that frame. How should I declare it - by pointer or reference? like - [CODE]class … | |
I have to develop a web-based application which will be deployed in a intranet. One of the requirements is formatted MIS reports, which can be generated and printed from the client. While I can use 3rd party tools like Crystal Reports if I use ASP, is there any such Reporting … | |
hey all :cool: !! me a new member here.. jsu joined up a couple of weeks back.. anyways peeps me is in fy B.E .CSE .. tho i am not a good programmer i dunno y i took it up... but i still like it... :D as all do i … | |
I have a program that i need to start when my computer boots up. Is there any way to do this? Any and all suggestions would be great. | |
Hi, Im a novice in Python, using Tkinter for the GUI developement. I am trying to figure out how to create my frame such that you cannot exit using the title little 'x' in the corner. In fact I dont want it at all! I did try overriding it by … | |
Hi - Wondering if anyone has built any .net apps (standard windows, not necessarily web apps) that connect to a Filemaker .dbf database. It doesn't seem to be a standard dbase file. Any help appreciated. | |
hey guys im new here can anyone teach how to start.(cus i want to learn c++ programming how will i start). | |
[code=c++] #include <fstream> #include <iostream> #include <string> using namespace std; string getFileName(); int numCharsInFile( ifstream &in, int &nLines ); int numWordsInFile( ifstream &in, int &nWords ); main () { int nLines, nChar, avgCPL, nWords; ifstream textFile; string fileName; fileName = getFileName(); textFile.open(fileName.c_str()); if(!textFile.is_open()) { cerr << "Cannot open file: " … | |
How can I handle the right-click event and how can I edit right-click menu Thanks... | |
On the attached, there are no bugs what so ever. My program simply allows the user to select a data file that contains historical stock / currency prices and displays it. The data files are included with the project. The only performance issue I found is that when ever the … | |
I have given a string and asked to write the code with out using any inbuilt functions.below is the description dim str as string="~~~This~~is~~~~the~~~~~Test~~~~~" The tilts are dynamically created and may not be the same everytime, but the output should be as follows str=This~~is~~~~the~~~~~Test we need to remove the tilts … | |
hi all, i newbie in this forum and vb.net too. i hope i can learning much from this forum. i want to play flash on my form. does anyone know how to do this?? thx... best regards... | |
Hey guys, I've got an input stream from the keyboard and wanting to know how much time passes between when the user enters something to when the user next enters something. That makes sence? Ive got a class called Timer [code] public class Counter implements Runnable { boolean startTimer = … | |
Hey folks - i am working on an assignment for school and would like some input if possible. I am trying to declare a class object in the form of an array so that i can read info from file and then manipulate the data. I need 3 seperate c++ … | |
I have been looking all over trying to find a simple example of how this is done... Basically I want to send info from a form to another website API via XML and get the information they send back to me. If anyone has any examples or knows of any … | |
Anyone have a clue what I am doing wrong here? I have tried to call this function a bunch of different ways, but here is the latest: mProfitPercent = GetProfitPercent Here is the function that I am trying to call: [code=asp] Function GetProfitPercent Dim rsRegx Set rsRegx = Nothing 'Set … | |
Hi all, I would like to execute an OS command like "cls" from my Java program, and am getting the following error: [code] D:\ext>java FileExtractionConsole Exception in thread "main" java.lang.NullPointerException at FileExtractionConsole.startExtraction(FileExtractionConsole.java:46) at FileExtractionConsole.main(FileExtractionConsole.java:33) D:\ext> [/code] Here's the snipt of my code: [code] public class FileExtractionConsole { public static void … | |
hello plzz help me out how to write the event for a button or anything created at runtime whoever bothers to help ,thanks to them in advance | |
Hi i know hw to read the textfile using filereader and stringtokenizer used to split the data into token,now i want to know hw to assign the readed value into vector and display it in to the jsp. anybody can help me. thankyou [code=JAVA]import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import … ![]() | |
Hello, I am writing a program that connects to a webservers db. I have a testing db on my local machine and i add a new dataset to this local db. I have tried to go into the app.config and change the connectionstring to a global variable i created useing … | |
i don't know how to discuss it clearly but i'll try.. my problem is when my index page loads, the current value of my variable year is null.. so it displays the word null.. ahm, only if i click the submit button that's the time that a value is inserted … ![]() | |
well i have been told to write a 7 segmet display so when i type in a number the numbers 'convert' and output to a seven segment display basically from 8 to this:- _ |_| |_| like in petrol stations does anyone know how i could do this, i have … |
The End.