199,114 Archived Topics
Remove Filter ![]() | |
Dear Sir/Madam, As I have seen VB 6.0 is supporting Icon files, Metafiles and BMP files for using in the PictureBox property of ImageBox, PictureBox, and CommandButton. I have tried ICON file to use on those Controls, but some ICON files are supported and some are not supported. So, I … | |
i've done a of couple searches on this board and i haven't really found any answer to this. so- how can i get graphics into my c++ programs. From the books i've been looking through there aren't many, if any graphic commands, in the .net and visual c++ versions of … | |
hello members how r u another query for u people, can any body help me in sending sms through code.any kind of help will be highly appreciated... | |
//Trying to read double values from each line of a file..and try to store them in arrays //when i debugged,it doesnt do the parsing for the alldoubles e.g txt file consists 2.3,4.5,6.2,4.5 2.8,2.4,4.6,1.2,3.5 3.6,3.8,5.9,4.9,12.6,112.8 trying to put them in separate arrays [code] //CODE?? #include <stdio.h> #include <stdlib.h> #include <string.h> FILE … | |
Hi, I've got two programs (client and server) using sockets. The program are working fine if I set the client IP to local host (127.0.0.1) or the LAN IP (192.168.0.3), but can't connect if the IP is set to external Internet IP (92.24.xxx.xxx). Anyone have an ideea, please? Thanks! | |
Can anyone tell me how to convert an int to a string value that I define? | |
please help me on this.. i have to make a payroll system using turbo C program but i don't know how to make it.. pretty please...:) | |
HI, I wish to get the values from the drop down menu selected by a user from the HTML page and pass this value into my servlet program for processing. In my servlet program, I've used the getParameter() function to obtain the value from the drop down menu selected. <SELECT … | |
Hi, I am new to PHP. I wanna know how the button reacts on the click event. [B]This is my code snippet.[/B].. [code]Name: <input type="text" name="fname" /> <input type='button' name='Release' onclick='hello()' value='Submit'> <script type="application/javascript"> function hello(clicked) { alert(clicked); return false; } </script>[/code] Whenever I click the button, it triggers javascript … | |
Hi friends... I need to write a program in C which will print all the combinations of a string with non-repeating characters. Example: “Say” will have the following: S, a,y, Sa, Sy, aS,Sy, yS, ya, aSy,Sya,ySa and so on. The string length is not known. The string will be a … | |
how to write a program in c++ for this type of question? Write a calculator program in c++ that allows the user to select which operation they would like to perform such as: Addition, subtraction, multiplication, division, modulus, Square, Square root, Convert Celsius to Fahrenheit (Fahrenheit = 1.8 Celsius +32), … | |
I want to read all files in a particular folder using C programming. HOw to do this. Thanks. Ex: I have some 5 files in folder named c:\temp. I want to read all files one after another and want to write output file for each input file. The output files … | |
okay so im new to programming and have an assignment im not sure how to do the question is. The original U.S. income tax of 1913 was quite simple. The tax was [INDENT]1 percent on the first $50 000[/INDENT] [INDENT]2 percent on the amount over $50 000 up to $ … | |
I have written a program for the famous game of life problem. The program is running perfectly for the sequential version. Now I am trying to implement it in parallel with MPI. I am just sending the main function where I am calling two functions. Calculate is updating the array … | |
ok ... first i had to make a function that tells you if the number you choose is a magic number or not ....(perfect number) ... i figured that out now i have to make a function that prints the magic number ... The second function, called print_magic, has a … | |
Hello Friends , I from India, name samrat. i am c# sharp beginner. The Problem is My code is showing Error 1 The name 'choice' does not exist in the current context. So any help would be appreciated. code- [CODE] using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BasicCalculator … | |
Hi all, Here is my dilemma: I have an aspx page with a button on it. onclick the button calls some javascript to pop up a window with a listBox with a bunch of values. I'm creating the popup like this to avoid a popup blocker from stopping it: [CODE] … | |
Hello, I have been working on a very simple Python Game so far (Not using pygame atm) and I ran into a problem that is very simple but I just do not know what to use to get it to work. Basically what I have right now is that the … | |
Hey Guys, I was wondering if I could get some feedback on this E-R diagram I am doing for a project. Not looking for a straight up answer, just pushes in the right direction if something is amiss. This is the problem as given to me, and I've attached what … | |
hey ppl... this question may sound cliched.. but plzz help!! gimme some ideas for a project in software engineering.. :eek: | |
Hi guys! Ok so this is my first year in college and I am having a lot of trouble with my computer course which mostly consist of writing java programs. I am falling way behind in class and i have a mid term due next week. It is REALLY causing … | |
Dear all, [B]aspx file[/B] [code] <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CellPadding="10" CellSpacing="1" OnRowDataBound="GridView1_RowDataBound" OnSelectedIndexChanged="GridView1_SelectedIndexChanged"> <Columns> <asp:BoundField DataField="g_id" HeaderText="S.no" ReadOnly="True"/> <asp:BoundField DataField="gcdate" HeaderText="Date" /> <asp:BoundField DataField="gc_no" HeaderText="G.c #" /> <asp:BoundField DataField="consignor_detail" HeaderText="Consignor" /> <asp:BoundField DataField="consignee_detail" HeaderText="Consignee" /> <asp:BoundField DataField="qty" HeaderText="Nos" /> <asp:BoundField DataField="package_type" HeaderText="Contains" /> <asp:BoundField DataField="total_amount" HeaderText="Amount" /> <asp:BoundField DataField="acc_type" HeaderText="Remark" … | |
Hi All, I hope someone out there can help with this. I'm writing an app where a user selects a folder on the network for a job to deposit output into. The person setting up the job will not necessarily be the same person who runs the job and that … | |
I have a poor background in database design. i have only heard of distributed database once now i am meant to write a project on it(managing distributed database system) and also to create a sample application that manages a database for an organisation with distributed branches (making use of distributed … | |
1) The class interfaces do not follow good object-oriented design principles, which make them bug-prone and hard to extend/subclass properly. Improve the object-oriented design of the classes. 2) The class interfaces are almost completely undocumented. Include proper interface documentation in the .h-file. 3) There seems to be a bug somewhere, … | |
Assembles under NASM 16-bit, invoke INT 0x65 to display message. | |
Okay, Im using Python 2.6, and the latest version of pygame. In my game, I have circles moving away from you, you have to catch them, and if you catch them, they disappear. The amount of circles can vary, and that is the issue I am having. As of now, … | |
Hi everyone, I've created an application that runs queries against a SQL server (via Data Adaptors) in VB.NET 08 and returns the results to a DataGridView. It works great and returns my data, but when I switch to a different query that returns different columns, the DataGridView keeps the old … | |
i want this software rite now 4 m final year project to be linked with opnet modeler 7.0. Other version of C++ did'nt compatible with this opnet.pliz help me....tq | |
I having a little trouble to figure out how can I replace the specific lines in a text file by the lines from another text file marching certain pattern. !?!? For example: I have two files: file1 and file2 , I want to search lines of the first file for … | |
I am new to C programs. I have tried to write the code for game of life. I started with just the first part. But its still not done. There are some errors. could you please point out where I am wrong? [code] #include<stdio.h> #include<stdio.h> #define NUM_ROWS 100 #define NUM_COLS … | |
Hi all, right now i am going to make my own application like remote desktop sharing. I search a lot on google. mostly suggetion is like, USE microsoft RDP Active X control. I used it and its working properly. But after all it's through inbuilt RDP control. I wanted to … | |
bad.c [CODE]#include <stdio.h> main(t,_,a) char * a; { return! 0<t? t<3? main(-79,-13,a+ main(-87,1-_, main(-86, 0, a+1 ) +a)): 1, t<_? main(t+1, _, a ) :3, main ( -94, -27+t, a ) &&t == 2 ?_ <13 ? main ( 2, _+1, "%s %d %d\n" ) :9:16: t<0? t<-72? main( _, … | |
i need to read contents of a file(of any format) into a char array, how can i do this | |
Hi, I need to write a program to send data from a particular excel sheet in a workbook to a notepad. Say,I've an xl sheet with the following columns: "Name,Age,Salary" with values "john,24,1000" respectievely,Now I need a C# program to read the xl sheet and write the values onto the … | |
any body can help me on how to embed powerpoint in c# form ?? tnx people god bless.. | |
Hi Everyone, I am currently doing T.Y.Bsc (Computer Science). I have to do 2 live projects. One in software development and other of website creation. Can you help me get the project? OR are there any web services where I can get the project online?:?: | |
Hi, i have this assignment and i would like some help with it please. It is my first assignment ever in c++ and it is my first go at writing code for it. Ill post the question and my code so far if anyone could help me get the code … | |
:?: hai...i need ur help...i need sumbody here can send me a complete student profile system coding and interface..i really really need it pls.........it urgent.. | |
i need to display the webpage in webbrowser but which it fit the webbrowser there is no need to scroll it and it shows as thumbnail | |
I want to replace 'nf' with 1.0, so that the resulting string should be: '(1.0+nfpermult+1.0)' I tried various approaches using find(), re.sub but I am not able to make it work. eg. re.sub('nf', '1.0', str) replaces all occurrences of nf. also re.sub('\bnf\b', '1.0', str) does not work either as 'nf' … | |
I need help with my code. this is a simple calculator. My addition seems to work fine. but in subtraction, when the answer is only one digit.. the first digit seems messed up. Special character shows up. This program is supposed to be accepting 2 digit number, example 02 + … | |
I'm having a bit of trouble finding the info I need about copy constructors. Actually, I'm having a bit of trouble figuring out the right way to use them in the first place. My question: How do I correctly call copy constructors for a derived class so that it correctly … | |
hello members...........i need a help from someone to give me an idea of how can i write a code for cryptex i have an assignment and i couldn't figure out how to start writing a code i just need an idea of how the program will work in order to … | |
Dear Everybody How r u all? Does anyone know any idea for a graduation project in the field of computer science.....i thought abt an idea.....like a software to help blind people or something....but i don know how or wht tools to use or even wht specifically this software might provide....?! … | |
Hi, "DriveDetector();" work with "using Dolinay;", but "Dolinay" is only in Framework 2.0 Now i work with Framework 3.5. How i can run "DriveDetector();" in FW 3.5? | |
hi evreydby Read the selected text from webbrowser control and display in the texbox(only text not document text) in winforms using c#.net. y i need this means im doing spell check in winforms. | |
Hello, I'm a newbie here and also to Perl... Have a big task of finding the lines of the form from a file ATOM 1 N LYS A 257 -5.036 -29.330 -27.709 1.0041.51 N ATOM 2 CA LYS A 257 -3.873 -29.331 -26.757 1.00 41.55 C . . . ....n … | |
![]() | Hello people!! Hoping someone can help me out with this, i have a game of life program where a grid is draw using private string[,] paintSequence = new string[50, 50]; (note i tried switching to 2d string arrays, but this caused looooads of problems so switched it all back to … ![]() |
The End.