132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Kcin

OK, first of all, thank you for coming trying to help. anyways, i need help on making a program that counts how many words you have typed. REstriction: Must use Strings... Please help me, thx in advance.;)

Software Development visual-basic
Member Avatar for dspnhn
0
507
Member Avatar for lordx78

[code=java] import javax.swing.*; import java.awt.*; public class CreateToolbar{ public static void main(String[] args) { JFrame frame = new JFrame("Create a toolbar Which have three buttons Such as: Cut, Copy, Paste"); JToolBar toolbar = new JToolBar("Toolbar", JToolBar.HORIZONTAL); JButton cutbutton = new JButton(new ImageIcon("cut.gif")); toolbar.add(cutbutton); JButton copybutton = new JButton(new ImageIcon("copy.gif")); toolbar.add(copybutton); …

Software Development java java-swing
Member Avatar for lordx78
0
99
Member Avatar for 2ashwinkulkarni

Hi, I wanted to know if there is a way to read multiple csv files from a folder, process them one by one and write the output to corresponding output files. Also it is necessary that the if the name of the input file is foobar.csv then the name of …

Software Development python
Member Avatar for 2ashwinkulkarni
0
2K
Member Avatar for rapture

Hey all, I know this is probably easy but I'm going cross eyed looking at my code. When I used [code] List<string> SOID; //SOID is the database name for the filepath List<string> filesInDatabase = GetDatabaseFileName(out SOIDs); List<string> filesOnServer = GetServerFileNames(); foreach ( string fileName in filesOnServer ){ string fileWpath = …

Software Development
Member Avatar for rapture
0
138
Member Avatar for snurd

I need to open the Worksheet exactly as in my shortcut target otherwise my other software I'm using can't find it. My Software will only update my cells if my shortcut is open. My Shortcut Target is: "C:\Program Files\Microsoft Office\Office10\EXCEL.EXE" "c:\Batch Records\ShiftRecords" My Shortcut Start in is: "C:\Program Files\Microsoft Office\Office10"

Software Development microsoft-office visual-basic
Member Avatar for snurd
0
103
Member Avatar for xyzt

hello do the member functions of a class occupy memory or just the member variables occupy memory?

Software Development c++
Member Avatar for Narue
0
825
Member Avatar for timb89

i just started a new programming course and feel absolutley overwhelmed compared to my last one, we have to wrtie a program for the game of life. could somebody point me in the right direction, i am so confused right now... [url]http://www.comp.mq.edu.au/units/comp125/assignments/ass1/assignment1.html[/url] thanks! [CODE=cplusplus] #include <iostream> #include <fstream> #include <string> …

Software Development c++
Member Avatar for Salem
0
92
Member Avatar for Stefano Mtangoo

Hello guys, I'm new to python I want to use wxPython for Gui programming The main problem to me is how to start wxpython have good looking but then no documentation regards steve

Software Development gui python
Member Avatar for ZZucker
0
135
Member Avatar for asymmetric

hi! i'm doing a university project in asm using the assembler found in tanenbaum's book "[i]structured computer organization[/i]"([URL="ftp://ftp.cs.vu.nl/pub/evert/"]ftp here[/URL]), which produces code to be run on a [B]8088[/B] emulator (s88) so, what i wanted to ask is: say i want to call a subroutine that needs some variables. the most …

Software Development assembly
Member Avatar for Salem
0
127
Member Avatar for T&T

Hello, I need your help in updating the loop in this code. the purpose of this loop is to open and read all data file in the programme area that has a name (passenger xxxx) where x is any number from 0 to 9 . please help me, [code]void Print_allPass() …

Software Development c
Member Avatar for T&T
0
354
Member Avatar for bprabhumdu

hi friends, How to send the data through serial port and receive it in the same form . I type welcome in text1.text , it will send through serial port and received in a another text2.text .. thanking you ,

Software Development visual-basic
Member Avatar for bprabhumdu
0
112
Member Avatar for harshchandra

is there anyway to print out any string on stdout without using semicolon at the end... ?? plzz reply

Software Development c
Member Avatar for Nick Evan
0
429
Member Avatar for ceyesuma

[code] Query q =session.createQuery("from Person"); [/code] ? so there is a Query q named "from Person") I don't understand how the actual query reads(via SQL). Can someone explain this code: because clearly there is a personList and a personOptions of the type Option[] the size of personList.size() and the 4 …

Software Development java session
0
64
Member Avatar for RaooF

Hi how to create log files by c# code. Suppose we have windows XP and our application requirement is to create system_idle logfile for performance check of the system. and at last i will check performance in the application. Thanks in advance...

Software Development
Member Avatar for RaooF
0
131
Member Avatar for francisprite

Hello there.. Can anyone give me an idea for a fun project in C? I just need something that will keep me busy and pretty much entertained. It's also for practice. What I mean when I say a fun project is something like the last Machine Problem I made. It …

Software Development c
Member Avatar for onkar81
0
277
Member Avatar for ajithraj

haii.. [B]do anyone know any garbage collection command for java.... did we have to did that command for all object or will be done collectively?? [/B] thank u.....

Software Development java
Member Avatar for onkar81
0
108
Member Avatar for Sukhbir

Hi, Can any body explain me about overloading concept of () operator? I need to know why do we need to overlload () operator and how do we achieve that? Thanks in Advance

Software Development c++
Member Avatar for Narue
0
126
Member Avatar for ping24

Hi Guys, I have just came into the wonderful world of Python. I am really enjoying it. Anyways I am having a query on Python. Here is my Query.. I have downloaded the python module Linkchecker. And you must be knowing that it dumps the website URLs of a specific …

Software Development python
Member Avatar for ping24
0
170
Member Avatar for jobs

Line by line I need to get the whole content in a line from a file. I have looked at fgetc, fgets. According to fgets, I need to specify max number of characters to read. If I have file content like this: 1235690,9087657788888770000,89977553223456789\n I wouldn't know how max characters in …

Software Development c
Member Avatar for Narue
0
266
Member Avatar for Maxine

Hi guys, I just got a headache trying to work with some files with .wlc extesions. I would like to know which applications open such files and how can i access the content. URGENT PLEASE.

Software Development c++
Member Avatar for ArkM
0
101
Member Avatar for OmniX

vector<string> div; div.pushback("a"); div.pushback("b"); div.pushback("c"); for(int i= 0; i < div.size(); i++) { cout << "Letters: " << div[i] << endl; } cin.get(); Output: Letters: a Letters: a, b Letters: a, b, c I would like the output like this: Letters: a Letters: b Letters: c Thanks for your help …

Software Development c++
Member Avatar for iamthwee
0
120
Member Avatar for jainendra.shah

hi frds, I have created a user control with the Imagebox control, label and a checkedlistbox control. then I want to access checkedlistbox control from my application form. But unable to find any properties or event who manage directly to checkedlistbox control. Plz provide way how to access that control …

Software Development
Member Avatar for AmirBedair
0
3K
Member Avatar for amrhesham9

hello , well i have to deliver a program that demonstraits classes and inheritance , but i don't have any ideas

Software Development c++
Member Avatar for Ancient Dragon
0
3K
Member Avatar for murderotica

Hello there! I'm currently doing some VC++ programming. I'm using MFC programming and DLL which is explicitly linked. I have placed my initialization and the usage of GetProcAdress inside my "buttonClicked" function. When a button is clicked, the function in the DLL should be called. [CODE] void CSample::buttonClicked(){ if(hLib){ pSampleFunc …

Software Development c++
Member Avatar for murderotica
0
155
Member Avatar for Stefano Mtangoo

Hello guys! How are you doing all I again need help:?: Can anyone help me to get SPE IDE run as executable using py2exe? I have tried using code below what I get is exe file but when I run it I get message .....needs higher version of wxpython... error, …

Software Development ide python
Member Avatar for Stefano Mtangoo
0
157
Member Avatar for Manoj1984

Hello , I have a requirement to convert an xml document to another xml document using xslt. I am new to xml and xslt and need your help in solving this problem. I have a xml file which looks like below <Vendor> <contact Id="1234" CmpnyNm="ABC" ContactNm="Sheryl"> <Phone Number="555-5555" Type="WorkPhone"/> </Contact> …

Software Development xml
Member Avatar for divakar kumar
0
207
Member Avatar for murderotica

Hello there. I'm a bit new to creating DLL's. I've been learning a bit and I have created my own (finally). Well, my goal is to load my DLL to an application in VC++ and VB. I have successfully loaded my DLL in VB but having some trouble in VC++. …

Software Development c++
Member Avatar for murderotica
0
108
Member Avatar for tspj20

I have an arbitary vector where I have to try all combinations (sum up different combinations) of elements within the vector. I want to use recursion for this but I have trouble in coding that. I have tried something similar but with a fixed vector size, using for loops. But …

Software Development algorithm c++
Member Avatar for ArkM
0
124
Member Avatar for peyman_k

Hi All, I want to play MP3 files in my C++ program. I am using MSVC++. I have already found libmpg123 but it seems to be written for Linux and I could not use it in windows. I appreciate if anybody can help me with finding some MP3 decoder/player library …

Software Development c++
Member Avatar for zcindori
0
242
Member Avatar for M V Mack

I am exporting data to excel but inserting rows is very slow about 2 seconds per row, the line of code I used sucsessfully in VS 2003 was "oSheet.Rows(oRow + 1).Insert()". I am now using VS 2008 to excell 2007 and as well as the previous code I have tried …

Software Development microsoft-office vb.net
Member Avatar for M V Mack
0
154
Member Avatar for zahidullah

Below are the two lines code. Plz give a detailed explanation of these two lines while (cin.get() != '\n') continue;

Software Development c++
Member Avatar for ArkM
0
116
Member Avatar for tzushky

Hi again, I am trying to do something really sillya nd it isn't working:( I have a main where I want to start two threads using the same handle function, but the second thread generates the following error: Unhandled exception in thread started by Error in sys.excepthook: Original exception was: …

Software Development python
Member Avatar for tzushky
0
172
Member Avatar for ml2662

I am having trouble with the following program. I am trying to create a linked list that behaves like a FIFO queue. I need to be able to add new items to the end of the queue and remove them from the front. My confusion is with trying to use …

Software Development c linked-list queue
Member Avatar for findsyntax
0
179
Member Avatar for mark192

What I'm trying to do is for example, click a button on the program and have the program send a keystroke to another program that is not the active window. So far all I have is this [code]SendKeys.Send("TEST");[/code] This works fine if the program I want to send the keystrokes …

Software Development
Member Avatar for mark192
0
130
Member Avatar for dinilkarun

Hi, I have two functions. The first function fills the first three fields of the first row of an MS_Access table. I want to fill the remaining fields of the same(1st) row in the second function. Presently the second function fills the remaining fields of the next(2nd) row while the …

Software Development visual-basic
Member Avatar for dinilkarun
0
180
Member Avatar for TheBeast32

Hi, I was wondering how to use TAPI in C++ to communicate with my modem. How would I accomplish this? I'm not using Visual C++. I'm using dev-c++ 4.9.9.2.

Software Development c++
Member Avatar for Salem
0
432
Member Avatar for joannmallow

Hi, I would like to ask if I have a gridview. And I want the records to be deleted after 20 records automatically & all the 20 records will be gone after I've added in the 21st record in. How do I do so? Thanks a lot.

Software Development vb.net
Member Avatar for joannmallow
0
54
Member Avatar for OmniX

I have variables a, b, c = 1, 2, 3. I would like to make it a string abc. [code] int a = 1; int b = 2; int c = 3; string abc = ""; abc = a + "" + b + "" + c ; count << …

Software Development c++
Member Avatar for OmniX
0
169
Member Avatar for TheBeast32

Hi, whenever I compile [B]any[/B] sample code for DirectX, I get this error: [Linker error] undefined reference to `D3DXCreateFontA@48'. I'm using Dev-C++ 4.9.9.2, I'm linking it with: libd3d9.a libd3dx9d.a libdinput.a libdinput8.a libdxguid.a I don't know why this is happening. Please help.:twisted:

Software Development c++
Member Avatar for TheBeast32
0
65
Member Avatar for nizam_khan

Hi ! I m a new guy in software development. Recently i m assigned wit a job where i got to modify a C++ project built in Visual studio 6 to work in visual studio 2008! any one got any advise where should i start frm?

Software Development c++ visual-studio
Member Avatar for nizam_khan
0
138
Member Avatar for scru

:eek: This is the strangest thing. The program ignores all of my for loops in this method. I double checked the syntax and everything. Am I missing something? BTW, I know that it skips those, because I tell it to play a sound when it enters, and it doesn't play …

Software Development
Member Avatar for jOhN_pRattZ
0
134
Member Avatar for Pikachumanson

I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++. I get two of each of these errors. C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(51,39): error CS1518: Expected class, delegate, enum, interface, or struct C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(57,9): …

Software Development visual-studio
Member Avatar for Pikachumanson
0
140
Member Avatar for Kadence

I believe indefinite arguments can be defined with '...', but then how do you access them? For instance for the following function: [CODE]int test(int n, ...){ return n; }[/CODE]

Software Development c++
Member Avatar for Kadence
0
282
Member Avatar for papuccino1

Hello guys. This is my first post on the site and I think I'll like it here very much. :) I already have the site set as my home page. So here is my dilemma. The program is supposed to do some pretty basic comparisons of two numbers typed in …

Software Development c++
Member Avatar for sparty
0
169
Member Avatar for morraine

Hello I'm new to python and I'm programing an application using PyQt at the moment now i would like to know how to pass some variables from my main parent page to included pages which in the own right have a lot of processing, event handling and data entry and …

Software Development python
Member Avatar for woooee
0
267
Member Avatar for newtechie

i have a problem in getting the required display in barchart my intended display is year91 -------------- 110 but i get a display as year91 -------------- year91 can anyone please let me know what is wrong in my html file or java code. [CODE]import java.awt.*; import java.applet.*; public class BarChart …

Software Development java
Member Avatar for newtechie
0
116
Member Avatar for Wiki_Tiki

Hello everyone, I need help with a program I'm busy working on. I've created a test application, and I need it to move one pictureBox control (pictureBox1) to move to a random location (either 70,233 or 204,146 or 46,46) each time a button (button1) is clicked. Take note again that …

Software Development c++
Member Avatar for Wiki_Tiki
0
225
Member Avatar for shaynicb25

I'm having trouble getting my program to compile. I have to add the method equalStack to the class StackClass that takes as a parameter a StackClass object, say otherStack, and returns true if this stack is the same as other Stack. When I compile the program I get lots of …

Software Development java
Member Avatar for Ezzaral
0
136
Member Avatar for sanbal

I developed c# windows application and included a windows installer, after building the project , i am having a msi file. All the clients will install it to execute our product. We added a new dll and we give it to client through auto update. Now the dll will be …

Software Development c c# c++
Member Avatar for dickersonka
0
178
Member Avatar for leegeorg07

hi again ive been lookin at this code that i found on the internet that test someones mathematical skills i have ironed out most of the errors but i cannot work out this one please help the code is [ICODE]name = raw_input("\t\t\tPlease Enter Your Name: ") print print "\t\t\t\tHello", name …

Software Development mathematics python
Member Avatar for Ene Uran
0
122

The End.