199,114 Archived Topics
Remove Filter ![]() | |
Hey guys. Please bare with me since I'm only learning asm for about 48 hours or so.. I've learned enough to open files, read from/write to them... I know how to use the WIN API from within ASM and ..honestly, it's much simpler than C++ (IMHO)... So..I've written this basic … | |
Hello to all.I have this project and I must say I am quite stumped with this ASP.Net ( I just can't feel the freedom when I was using JSP:-| ) Anyways the problem is this: After connecting to the database and verifying that the given password and username was correct … | |
[code]#include<iostream.h> int rek(int i) { double s=0.9; if (i) s+= rek (i/10)+i%10; return int (s+0.5); } int main () { cout << rek (1234); }[/code] We have test. This is one of the question from last year. My question is: From where is solution/result: [B]15[/B]?? I'm beginning, where main () … | |
Dear ALL, Iam a PHP programmer and I have one year experience in php programming. Now I would like to study PERL and its features. can any PERL prorammer let me know the good tutorial or URL for studying PERL. Really its helpful for me..... Thanks in advance.... | |
I've did a program using vb6 to connect to oracle9i, i can establish the connection, the problem is when i execute the query in oracle sql*plus, it can execute successfully, but when run in vb application, the records affected return 0, it do nothing for this query, any setting need … | |
Can someone point me to one, because our high-school library is way too old. And it wont work with Dev-C++(we using in it in CS class). Thank you. [code=c]/* Lawrenceville Press Random Library */ /* October 1997 */ /* The following code works correctly under BOTH */ /* Borland and … | |
Hello I have a search page where you select the letter of the alphabet and the person's information who's name beginning with that letter is displayed. This function is placed on the web page to search and display the information. Everything works except one thing. The problem is if there … | |
Please any one know :- ------------------------ 1- How to change the size font in c++? 2- How to get one char without press "Enter" ? | |
When coding in Tkinter, you can make a button, then when the button is pressed, it refers to something that you defined, or whatever its called when you use the def statement. What I'm wondering, is if there is a way to do this in non Tkinter programing. I am … | |
Hey everyone new to the board and in a bit of bother. I've got this assignment thats been plaging me for two weeks but i can't do this one bit as i just don't get it. I've got to write a programme that takes data in from a file and … | |
I am new in VB.NET/ASP.NET, I want a user to logon to the aspx page using access level, If Access level is Administrator or User Or Manager different links or page be display or if Access level is User all the link relevent to admin should be disabled visa vesa. … | |
For a program I'm making the user needs to enter a string and then it will be checked to see if it is a palindrome. So far I've managed to reverse the ordering of the string entered so that I have the original string and the reverse version of it. … | |
hye guys Hi plz help me i need to run following java commands but in console [B][COLOR=blue]CLEAR CPU // printall CPU Registers ( GENERAL purpose Registers , Speical Purpose Registers, Program Counter & flag) [/COLOR][/B] [B][COLOR=blue]KILL // Kill process Id [/COLOR][/B] [B][COLOR=blue]Load // Load a process and suspend it untill … | |
Does anyone know what is the best function to use if you want to read user input and not have the return key carry over? Everytime I write something that reads in two things, the second read in always ends up being '\n' because the return key carries over to … | |
Hello: I am trying to use the Python Sleep Function via [I]import time;[/I] I get results but not the results I am looking for. What I am trying to do is rather simple and only for visual effect in a Python GUI: [B]Display GIF --> Sleep (pause) 5-seconds --> Display … | |
I have a password protection for my website. The LogIn name and passwords are stored in a mysql database. My question is: How can I define that a person who has a LogIn can only see some pages of the whole website? How can I connect the information about which … | |
Hello , i have in a director c:\files_t several files t1 t2 t3...t300 i need to analize each on-the analize operation is not importent how can i [B][U]open each file in a loop[/U][/B] and analize them?-in [U][B]C[/B][/U]code thanks ahead | |
Last night I took the advice of a DaniWeb member and looked at some posted Python code; this code was based around a card-type game and involved creating a GIF deck, shuffling, then displaying it. My original question had to do with using a Python dict for my GIF images. … | |
I need help in writing a fuction call delete_repeats that has a partially filled array of chararcters as a formal parameter and that delets all repeted letters from the array. It should also have two formal parameters: an array parameter and a formal parameter of type int that gives the … | |
I wrote code for an assignment that will output 4 triangles, 1 next to the other. It uses the While and nested For loops. The problem is the output is ok for the 1st and 4th triangle but the 2nd and 3rd need to be mirror images of what the … | |
First of I am not engllish speaker so if something its off forgive me please. Now on the topic, I have not touch VB in 4 or years and now changing from VB6 to VB 2005 Now I used to work with dataset on VB6 but the teacher is really.... … | |
Hi, Can anybody send me a tutorial on how to handle a dynamic dropdownlist in vb asp.net. What I want is to have 2 dropdownlist. In my first dropdownlist, I have the list of departments. Then in my second dropdown list, I have the list of the members of each … | |
Hi, I am new to shell scripting.So someone please do help me out.I have stored two dates in the given format below. cur_time=`date '+ %b%e%T'` time=`ls -lu f1 | cut -d "" -f6` I hope both these will show the dates in this format. for eg. Dec 23 10:10 Now … | |
when I selected my *.mdb files, it shows"unrecognized database format", I use VB6.0 and ACCESS2003/2007, who can tell me why? thank you ! | |
How do I read data such as song titles from a file and store them in an array? I have: [code] const int SIZE = 50; int main() { char theFile[SIZE]; cout << "Please enter a file name: " << endl; cin.getline(theFile, SIZE); ifstream theFile(" "); ... [/code] | |
Hi, you guys helped me on a program about a month ago and it really helped me get through the program. Therefore I really appreciate what you all do and thank you for the help last time I am having trouble finishing this program on classes the assignment is this: … | |
Is there a method that VB uses to get the drive letter of the directory where the program files reside witout specifying it explicitly? :rolleyes: | |
I have a code, and this is another problem, that's not working; Given: an int variable k , an int array currentMembers that has been declared and initialized, an int variable nMembers that contains the number of elements in the array, an int variable memberID that has been initialized, and … | |
I've read my book, and there's some topics where I feel weak about: - inline functions - static members - this pointer - copy constructor I've read some tutorials online, but they use some complicated code, and I'm a beginner programmer, so I can't understand their explanations. Just wondering, if … | |
Hi Everyone, I am trying to compile code for a FAT file system implementation. I define my struct as struct DirEntry { uint8_t status PACKED; uint32_t start_block PACKED; uint32_t num_blocks PACKED; uint32_t fsize PACKED; MC_Time created PACKED; MC_Time modified PACKED; uint8_t fname[31] PACKED; uint8_t unused[6] PACKED; }; typedef struct DirEntry … | |
I'm reading Larry Ullman's C++ Programming:Visual Quickstart Guide. He says to use the command std::cout.setf(std::ios::fixed)) (with others) to set the number of digits after a decimal. But all of his code uses std::cout::setf(std::ios_base::fixed). What is the difference? | |
ive created this currency conversion program which converts the currency then adds commission, but its got a error saying undefined symbol true in function main can someone help me ive only got the one error with it. [code]#include <iostream.h> int choice; double pounds; double USdollar; double Euro; double interest; int … | |
Alright, here's my code... [code] import java.util.Scanner; public class Letter { public static void main(String[] args) { //needed for scanner class Scanner kb = new Scanner(System.in); int charCount = 0; // get users string System.out.println("Please enter a string: "); String userString = kb.nextLine(); // get users character System.out.println("Please enter a … | |
Hey im abit of a novice at all of this programming, but im trying to give it ago anyway. What im wanting to do is write a program that takes an array of words which wil then return ana array which alphabetically come after a certain word, in this case … | |
| |
Hello to all! I've been parusing this site for awhile now, must say that its very helpful for tips and learning about coding in general. Anyways, here is my first foray into posting and of course, it begins with a question. I have to emulate a blood bank in Jess … | |
Ok, basically I have this giant, great, big, long variable and I still haven't learn the syntax for this sort of thing. How would I break this up? Basically, the variable is information that is being displayed in a tooltip that hovers after a mouseover. [code]var msgBrackenRidge = '<b>Eco-Friendly Residence</b><br><br>51 … | |
Here is another shot at it. It all most complier but falls short . still I know it doesn't mean its right. thanks for the help so far. ![]() | |
Anyone here that can help me write a multithread program to generate 3 different Fibonnaci sequences? ![]() | |
Hi all, I'm working in the C language. I've been stuck for 2 weeks trying to figure out how in the world to populate arrays after reading in an input FILE. the input file has numbers and words, I need to write a loop that grabs the integers and stores … | |
The problem An audio signal is sometimes stored as a list of int values. The values represent the intensity of the signal at successive time intervals. In a program these will be stored as an array. Often a small amount of noise is included in the signal. Noise is usually … ![]() | |
Hello All, I have a javascript image preloading script I'm writing, and it basically creates an array called "array_name" which contains the image filenames, and then uses a for loop to assign "array_name"'s elements to another array called "preload". I know my syntax is good, but the firefox javascript inspector … | |
I have a quick question regarding windows forms. Say I have a main form and it has a toolstrip with 2 buttons on it. Lets say one button displays a calendar form in the main form and the other displays a list of contacts in the main form. What is … | |
Hi, I'm more than likely in the wrong place and if I am can somone please direct me to the right place! Heres my query. I am an [URL="http://www.daniweb.com/techtalkforums/thread62723.html#"]online[/URL] promoter and I do a lot of my promotional work by sending out thousands of messages a day on social community … | |
Hi all, I would like to provide some features to the users when they are uploading their images in my site. For example once the user uploaded their image into the site. They have options to change the image as following. convert the image to black & white. Invert the … | |
hi guys i'm trying to write a code that will ask a user to input a string and then check to see if its a palindrome when trying to run what i have done so far i get an illegal instruction error. i know its something to do with 'get … | |
Hi was wondering if any one knows what scripting language resource hacker uses as i would like to add a new menu to my team speek client so my clan members can open there americas army game from with in team speek also would like to know haw i could … | |
I am writing a program that has two lists set up, and then the user is prompted for input. I want to tell the program to do one thing if the users answer is found in one list, and do another thing entirely if the variable is in the second … | |
Yeah, uhh I've heard about it, but where do i get it and how do i use it? HElp is appreciated |
The End.