199,114 Archived Topics
Remove Filter ![]() | |
Hi All, I has a question how can i insert a image into a specific cell in excel using the vb6. I already store the image(jpg) in a specific location then i want to display it at excel Can you all teach me what the method i should use? Or … | |
Hello can you help me please i got problem in making the crystal report 9,i have form which is inquiry of customer no. if i will input 0001 keydown this will display the data and i want to print it to have hard copy...can you help me please how to … | |
Hi, The following program takes all the items off of an excel sheet that are selected and puts them in a single file. I would like all of the items in a column to go to a single file, and then put all of the items in the next column … | |
hi! help me.. Construct a c++ program that will accept the integer value. The program will get the factor of the integer.. | |
Hi Can anybody explain, How to copy folder in VB6. All the files in that folder should be copied. Please help | |
Hi everyone, Well I have developed a site in PHP and now I want it make live. While talking to the hosting company, they have asked about the server configuration that I want. But actually I don't have any knowledge about hosting the website. So can anyone tell me the … | |
Hi friends, Please tell me the process of creating and use of module. | |
How do I plot a continuous sine or cosine wave on a Dot marix LCD using C++? Can I have a sample to see? Thank in advance.. | |
Hi Guys, I am having trouble with my links, i am currently trying to use my $_SESSION['SESS_MEMBER_ID']; to automatically link it directly to the specific user page. However I always have this error: Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ThesisDB\DisplayThisUser.php on line 21 [CODE] … | |
how to store an image from one directory to another directory using jsp? | |
Hi VB .NET experts, I was wondering if you could give me some help. I am planning to write a simple program which reads two binary files and apply a simple math function ((file1-file2)/(file1+file2)) then outputs the file (file3). Then the user selects the file (file3) outputted as an input … | |
Hey Guys! :) Sorry to bother you all I can't seem to get my code to work and I would be much obliged if you could help me out. So what I was trying to do was get a column from a table of my database and show only the … | |
Hi, im getting an error 'Invalid term expression else'. [CODE] private void button1_Click(object sender, EventArgs e) { ClassLogin clgn = new ClassLogin(); bool sts =clgn.Check(textBox2.Text, textBox1.Text); if (sts == true) { MessageBox.Show("OK"); else MessageBox.Show("Your Username or password is incorrect"); } } [/CODE] WHY? | |
Hi, I have dynamically created radio buttons. [CODE] $i=1; <input type="radio" name="qtn-$i" value="yes"> $i++; [/CODE] Now how to get the values of these buttons using post method? | |
In lstresult i put in the item name. in lstresult2 i put in the the numerical value for that item. i included a picture to show what i mean. I want to alphabetize lstResult but i want the value in lstResult2 to stay with the value. A better example is … | |
Trying to use [URL="http://mythreads.sourceforge.net/demo/"]MyThreads links manager[/URL] to update links on our front page without having to directly edit the code. Here is the page we're trying to include on the home page: [URL="http://www.ealantamagazine.com/links/index.php3?category=1"]http://www.ealantamagazine.com/links/index.php3?category=1[/URL] and here is the home page: [URL="http://www.ealantamagazine.com/"]http://www.ealantamagazine.com/[/URL]. Notice that the original page shows up but the area … | |
Hey guys, I'm having trouble with an error message in my code, would you mind taking a look and helping me out? [CODE]private void button1_Click(object sender, RoutedEventArgs e) { if (textBox1.Text == "user" && passwordBox1.Password == "password") { Window2 W2; { W2 = new Window2(); W2->Show; } Close(); } }[/CODE] … | |
OK, I was working on a project where I needed to randomly generate tens of thousands of 1s and 0s. I started noticing it didn't seem very random. To test it out I created an array of 458752 (896x512) ints. Then, I tested by seeing how many 1s were generated. … | |
Hey everyone, I've got a question about something called struct tm. I'm not really even sure if it is a string, array, or what, otherwise I would've said that instead of 'something'. I need to know how to use it. I've been searching the internet for the past hour, and … | |
Hi guys, It's been forever since I did any programming, and came upon a project where a simple program would speed things up for me tremendously...Basically, I have a folder with thousands of text files in it and I want to add a block of text to the beginning of … | |
Hey, Most of you who help in this forum have probably read my posts, and this is another one for my math bot. :) I am using string arrays to assign to math operands, for example I would have an array such as this for a basic math equation: 5 … | |
Hi pals, I am newbie in C++ Development. I saw a code in a book named "Beginning C++ Game Programming". I have a doubt regarding the Following Working Code. [CODE]#include <iostream> #include <string> #include <vector> using namespace std; //returns a reference to a string string& refToElement(vector<string>& vec, int i); int … | |
I want help in writing a digit display(3 digit number) in java (using sub strings). Example 524 if user inputs then computer has to display 5 2 4. | |
I have a few been studying OOP for some time. I keep reading in almost every book that OOP was developed in order to write more complex software and has many features not available in procedural programming like code re usability, security, modularity, encapsulation etc. I haven't developed any real-world … | |
I have one table that I need to pull data from to display. there are two fields that a user's id can be attached to. Field1 and Field2, but they are always either or. In addition, I have a couple of extra where clauses in my query. My experience in … | |
Hi, I was trying to use my friend's hard drive the other day, but my Windows computer would not recognize it because it was in a Mac file format. I'm now trying to create a program (simple cli), pretty much a file folder, but that would be able to read … | |
Hello, I am supposed to alphabetize an array created from an HTML entry form. The array is supposed to take the information entered and place it into individual strings which will them be placed into an array which I must then alphabetize by last names. This is the code for … | |
Hello everyone :) Please help me in my problem about putting the data from database (MS Access 2003) to a label. What syntax should I use?. I used AccessDataSource for connection and Datagridview for the output.. Thanks! :D Your help will be highly appreciated ;) | |
Hello everybody! I wrote an example about a copy constructor and the result wasn't what i expected. Here's the example: [CODE] #include <iostream> using namespace std; class A { public: A(const A& cp); A(double t[], int size); ~A(); double *getTab() const { return tab; } double *tab; int size; }; … | |
How can I do this? I'm not even sure what the problem is so I can't really search google. Why is this not possible?: [CODE] #include <iostream> #include <cmath> using namespace std; void vGameLoop(); void vDoMenu(); void vDealMenu(); void vDoDeal(); int main(){ vGameLoop(); return 0; } class CCards{ const int … | |
I am trying to find an adjustable counter that I can use on our site to show a steady increase in dollars collected. I guess similar to the the national debt counter, but the values need to be programmable and adjustable (starting amount, increment amount, speed, etc) by me. It … | |
I have 2 forms, I want 'form2' to open when I click a button on 'form1'. Any ideas? | |
I have found out a program similar to mine, a chess interface, named jin, jinchess.com, deploys on mac as an SDI program. This means all the windows are free floating and i think the menu is detached. Any idea how this is done? the same program deploys under windows as … | |
i have to declare an integer array, float array ,and character array of 85020 indexes..when im declaring it ..my compiler is giving error that array size is too large. please tell me how can i declare array of this size. [code] <iostream> <conio.h> int main() { int a[85020]; float b[85020]; … | |
hiii ALL!! I have to match/compare fields of one table with the fields of another table. basically m i have to search a record from another tables using some fields of a different table. for exmple I have two tables. Table 1: newjobs table 2: employer form Table 1 newjobs … | |
Hi, I am working on web application in java. I need to copy table from local database to web table database. So please help me solve this query. Thanks in advance. | |
Hello, I have table with test results. Every user have 3 records in the table RESULTS Table RESULTS contains fields USERID (int), TEST_POINTS (int), TEST_TIME (int); I need query to sort up results, but only the best result per user. Best result for user is one with MAX points for … | |
I have written a program in Visual C++ Express. I have finally finished and that's why I wanted a release version of my program. To give to some of my friends. There was no problem when I used the compiler to create the debug version. But when I run the … | |
Hello, How do you determine the frequency over ranges, i.e instead of returning the frequency of each of the 40 values, how could we find the frequency from 1-10, 11-20, 21-30, 31-40 ? Cheers. Zander | |
I have a problem. I wrote: [CODE] for(i=0; i<n; i++) { m++; char **exP = realloc(exParam, m*sizeof(*exParam)); char **exT = realloc(exText, m*sizeof(*exText)); exParam = exP; exText = exT; explode = strtok(lines[i], "#"); while(explode != NULL) { exParam[m-1] = malloc(strlen(explode+1)); strcpy(exParam[m-1], lines[i]); exText[m-1] = malloc(strlen(explode+1)); strcpy(exText[m-1], explode); explode = strtok(NULL, "#"); … | |
Hi all, I have a textblock that is bound to an xml document. This displays the innertext of an xml-node element and the width of the textblock is fixed at "auto". The issue is that of the display as the innertext may exceed the width of the textblock and therefore … | |
How does incrementing the variable count by the recursive call to the function, save count from being reset to zero everytime it is invoked? I am trying to get a firm understanding of how recursion works. [CODE] def countSubStringMatchRecursive(target,key): """Searches for instances of the key substring occuring inside the target … | |
i know what registers are, i know a lot of things about registers. but my problem is: a register is able to store data/instructions. like a 16 bit register can store 16 bit instruction/data BUT HOW MUCH DATA/INSTRUCTIONS CAN IT STORE AT THE SAME TIME? like an accumulator is used … | |
okay, i don't have a problem coding the game... that part would be easy. but the problem is to output the lease number of rotations needed to complete the game, so for example... 123 => 413 456 => 526 789 => 789 (rotation of the top left corner) that's what … | |
Hey I'm trying to set a Strategy in my program that should allow me to do something I've never tried before and have no idea if it's either the best approach to the problem or if it is possible or not. I have a class with some fields and one … | |
hi all, have some question on displaying a countdown system i have the following code <?php date_default_timezone_set('Singapore'); // Define your target date here $targetYear = 2011; $targetMonth = 9; $targetDay = 10; $targetHour = 12; $targetMinute = 00; $targetSecond = 00; // End target date definition $targetDate = mktime($targetHour,$targetMinute,$targetSecond,$targetMonth,$targetDay,$targetYear); $actualDate … ![]() | |
I have a database, test.db, with a table called Events. I tried this: [code] <?php try { // open the database $database = new PDO('sqlite:test.db'); $result = $db->query('SELECT * FROM Events'); foreach($result as $row) { // both of these lines produce a blank page //echo $row['EventName'] . ' | ' … | |
I dont know how to start. I learn python by myself, hopefully i can solve this problem. but i think i need your guys help A palindrome is a sentence that contains the same sequence of letters reading it either forwards or backwards. For example "racecar". Write a recursive function … | |
Today I tried to write a vba macro with the vba editor in excel to perform some stupid and time-consuming job. but then ,after 2 hours trying to write the macro in vba, I found that I don't know how to write vba, and the tutorials is not completed in … | |
I have a table with one record per certification a user has. So, user SMITH can have multiple records, one for DMV another for CPT and another for ICD. SMITH has three certificates but can have up to 20. The desire is to have a second table with one record … |
The End.