132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Ninjaboi

In a nutshell: How can I statically link .dll files into my programs executable? I know it's possible, just have never done it before. I know there is also some issues that arise in doing so ( as well as bloating the executable's size ) but I'm still game for …

Software Development c++ ide
Member Avatar for Ninjaboi
0
2K
Member Avatar for mushahidh

CONVERT THIS QUICK SORT PROGRAM INTO PARTITION OF 3,5,7OR 11 ELEMENTS. [CODE] #include"stdafx.h" #include<iostream> using namespace std; #include <stdio.h> #include <stdlib.h> #define size 50 void swap(int *x,int *y) { int temp; temp = *x; *x = *y; *y = temp; } int partition(int i,int j ) { return((i+j) /2); } …

Software Development c++ programming-construct
Member Avatar for Momerath
0
221
Member Avatar for toferdagofer

i wrote some code to take an array and run it through a function to reverse the elements of the array and then return a pointer to the new array. For some reason im not getting the results i want. It has to do with my reverseArray function. Specifically in …

Software Development c++
Member Avatar for toferdagofer
0
107
Member Avatar for plasticfood

i am getting an error in this. basically it sorts a queue in abc order. [CODE]public class Queue2{ public static void main(String [] args){ LinkedQueue q = new LinkedQueue(); q.enqueue("d"); q.enqueue("v"); q.enqueue("b"); q.enqueue("a"); q.enqueue("d"); System.out.println(q); System.out.println("----------------"); sort(q); } public static void sort(LinkedQueue q){ LinkedQueue qFinal = new LinkedQueue(); int count …

Software Development java queue
0
76
Member Avatar for stow19

hey all, I've been trying to shuffle a deck of cards but my shuffle results in the deck duplicating cards. i've used the the knuth shuffle and I had no luck i've found: [CODE] var cards = Enumerable.Range(0, 51); var shuffledcards = cards.OrderBy(a => Guid.NewGuid());[/CODE] but I don't know how …

Software Development
Member Avatar for stow19
0
124
Member Avatar for Morten Brendefu

I did an experiment regarding sorting of 256.000 random "names" using TListBox component. A friend of mine say that TListBox is faster than my code at sorting, so I wanted to test this out of curiosity. Method of testing. When I have created 256 thousand random textstrings, each 6 characters, …

Software Development delphi pascal
Member Avatar for TrustyTony
0
2K
Member Avatar for kazekagerandy

i need to set the transparency of a bitmap using a trackbar. how can i do this? if i change the value of the trackbar, the image's transparency will change. codes will be greatly appreciated. thanks!

Software Development vb.net
Member Avatar for Unhnd_Exception
0
1K
Member Avatar for luislupe

I'm trying to build my first template function, but it generates a compile error when lines 21 and 22 are not commented. What I'm trying to do is to have a template function that can return multiset<int>, multiset<double> or multiset<string> depending on the attribute I want to extracto from the …

Software Development algorithm c++ ui-ux
Member Avatar for mike_2000_17
0
329
Member Avatar for salty11

In the display function when i output it shows multiple output for some agents, but i only want it to show the final one, how can i do this? [CODE]#include<iostream> #include<fstream> #include<conio.h> #include<iomanip> #include<cmath> #include<string> // Associating program identifiers with external file names #define in_file "data.txt"//input file name #define out_file …

Software Development business-entrepreneurship c++ display
Member Avatar for salty11
0
547
Member Avatar for ashley11

i have a sortedLIst. The value in sortedList is already change to percentage. when i key in the minimum support, if the value is not fulfill the minimum support, then it will be ignore. MY sortedList: 1: 55 2: 70 4: 25 3: 65 6: 15 5: 30 my expected …

Software Development
Member Avatar for ddanbe
0
105
Member Avatar for twigan1015

I know im suppose to show code, but im stuck on how to make an integer, I kinda feel bad wasting a thread for a simple answer, but I cant figure it out, what im trying to do it make an integer values in the range of 10 to 1000. …

Software Development vb.net
Member Avatar for twigan1015
0
108
Member Avatar for Wrai

I'm having issues with basically moving the snowman itself. I know I have to repaint image in a different position, but I tried and failed. The snowman always end up having a line of color and shape following it as an aftereffect. Can anyone help me out on how to …

Software Development java
Member Avatar for Wrai
0
1K
Member Avatar for TrustyTony

Here is code to execute these printing commands from file: [CODE]talk("How Are You") bark("I am fine") bark("...and how are you") snarl("...sorry I asked") [/CODE] from file INPUT, do printing of results to screen without tags and to file with tags, and open the html output with webbrowser.

Software Development html-css python web-browser
0
312
Member Avatar for Mafiasays

Im having an issue with making a few test to overload the == operator in my linked list stack. i have the standard header files containing pop push and so forth. But Im having a problem writing these test. i was thinking maybe a test that would copy the stacks …

Software Development c++ linked-list
Member Avatar for Mafiasays
0
386
Member Avatar for arezz09

i hve create 1 listview and all data from accessdatabase (using oledbconnection) in database hve 4 column, so in listview 4 column.. can i view only 2 column in listview, example only column 1 & 2 only in listview.. i using this code [CODE] ListView.Items.Clear() While (myDR.Read()) With ListView.Items.Add(myDR("column1")) .SubItems.Add(myDR("column2")) …

Software Development listview vb.net
Member Avatar for debasisdas
0
136
Member Avatar for thedonflo

I am having trouble ascending and descending an array with an insertion code. I know the while loop displays it in ascending order but i cannot get it to display from the original, ascending or descending. It just keeps repeating the first element in the array. Any help will be …

Software Development c++
Member Avatar for thedonflo
0
102
Member Avatar for MackSwagga

I need help with my final project, I think I have the basic structures set up already. I'm a little lost on loops, do I need one to populate the list? and one to go through the list to display the information back in the text boxes? Also how do …

Software Development
Member Avatar for MackSwagga
0
191
Member Avatar for Suzie999

Sorry for noob question. If a condition is tested with or, and the first condition is met, are the further conditions tested? For example, is "b" even tested in the following code?... [CODE]bool a = true; bool b = false; bool c = false; if (a || b) { c …

Software Development
Member Avatar for Suzie999
0
143
Member Avatar for stan_l

I have a generic script in another language which I use to query an ASA5500 firewall. Because of thousands of possibilities in even the 'show' commands, I write small .cmd files which are macro-executed from the main script. A .cmd file looks something like outfile("config.dat") showline("terminal pager 50000",0) makebuff(2000000) showline("show …

Software Development python
Member Avatar for TrustyTony
0
299
Member Avatar for MeandJava

Hello everybody, I am working on a school project now and I want to have a blinking LED. The piece of hardware we use is not familiar because it is designed by school. I have the methods to put on the led and to put off, but can't get it …

Software Development java
Member Avatar for MeandJava
0
150
Member Avatar for debeloglava

I have never programmed a client / server before but I would like to create a game where objects can be passed back and forth between two players who reside on separate machines. An example object would be a game piece and the reason it would be passed is because …

Software Development client-server gaming java
Member Avatar for JamesCherrill
0
207
Member Avatar for Formby

I have an array set up to receive the names of forms when they open. The form name is sent as a Form not a String therefore when I run my code I cannot check for whether the field is empty in the normal way (ie. array(1) = "") as …

Software Development vb.net
Member Avatar for Formby
0
140
Member Avatar for aamira_s

this is a simple code to test whether a number is prime or not...i dont know y it is taking this much time to execute...can ne1 tell where m mistaking?? heres my code [CODE] #include<stdio.h> #include<math.h> int main() { int a,n,prime,l=2; printf("Please enter a positive integer.\n"); printf("To end the program …

Software Development c
Member Avatar for Adak
0
166
Member Avatar for arshi9464

I was reading a bit about the JDBC, i've made a lot of programs related to JDBC, but i've never been able to understand the concept of Class.forName(). Please explain it fully, i know the basics, as what are the strings passed, what is done and all. I wanna know …

Software Development java
Member Avatar for arshi9464
0
97
Member Avatar for yosi501r

Hello everybody, I try to find out how to download any file from a URL that doesn't specify. For example: [url]http://translate.google.com/translate_tts?q=Daniweb[/url] ^^This URL directs to an .mp3 file, which is the spoken text by Google Translate. I have this code already, but it helps only when I use URL with …

Software Development file-system java pdf
Member Avatar for yosi501r
0
454
Member Avatar for Javam

Hey, I am having a problem figuring this out. I didn't use file I/O before this so be gentle at me :P. Here is my problem: I am writing to a file, an object Book. The constructor looks as follows: [CODE]public Book(float bookId, String bkName, String bkAuthor, int year, String …

Software Development java
Member Avatar for Javam
0
168
Member Avatar for ThatGuy2244

I was wondering how I could display more than 256 colors with the VGA color palette. correct me if I'm wrong, but the reason that you can't display more than 256 colors at once is because each byte in video memory corresponds to one pixel on the screen. But because …

Software Development assembly motherboards-cpu-ram video
Member Avatar for ThatGuy2244
0
317
Member Avatar for shack99

Hey everyone, I have an Xml file in which I want to compare elements; [CODE] <Students> <Student id = "a"> <Name>*** </Name> <Age>17 </Age> </Student> </Students> <Students> <Student id = "b"> <Name>*** </Name> <Age>17</Age> </Student> </Students>[/CODE] if student "a" is of the same age as "b" I want to display …

Software Development c# xml
Member Avatar for shack99
0
701
Member Avatar for stupid guy

hi all! i have a saimple applet which tries to insert a text from textfield init oa table named samp.here is my code [CODE] import java.sql.Connection; import java.sql.ResultSet; import java.sql.PreparedStatement; import java.sql.DriverManager; import java.awt.*; import java.applet.*; import java.sql.*; import java.io.*; import java.awt.event.*; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; public class Appletsamp extends …

Software Development java
Member Avatar for JamesCherrill
0
166
Member Avatar for Ravenn

hi:) i'm writing a windows form program that controls 4 stepper motors, using visual studio express 2010, c++ i'm using a for loop that has to cycle for up to 1200 times. it works well enough but it's kinda slow and, when it's connected to my hardware and given more …

Software Development c++ visual-studio
Member Avatar for jonsca
0
254
Member Avatar for Thigina

Hi, im a student doing a project on attendance system.... i have problem where the text entered (username)from formA jTextField1 need to pass to FormB in order to the combo box in FormB shows(subject,course,time) that correspond to the username was entered in Forma....i have try it....but got error... Here is …

Software Development java microsoft-access
Member Avatar for Thigina
0
141
Member Avatar for P.manidas

Dear Sir/Madam, I want to know two things here.. 1. Can we create object variable on Run time? 2. Can we store one object variable's data (Object) into another object variable? Please guide me sir/madam. Because, i have no idea in this regard.

Software Development visual-basic
Member Avatar for P.manidas
0
225
Member Avatar for shazzy99

[COLOR="Green"]Trying to take input from user, put it in array and do the sorting[/COLOR] The code is: [CODE] #include <stdio.h> #include <conio.h> #include <stdlib.h> class Sort { static int array[5]; static int index; static int i; public: void insert(int num) { array[index] = num; index++; } int sortarr(const void *x, …

Software Development c oop
Member Avatar for Narue
0
186
Member Avatar for smandape

Hello Experts, I am trying to extract data from XML file which is as follows [CODE] <lineage> <taxon scientificName="Homo" taxId="9605" rank="genus"/> <taxon scientificName="Homininae" taxId="207598" rank="subfamily" hidden="true"/> <taxon scientificName="Hominidae" taxId="9604" rank="family"/> <taxon scientificName="Hominoidea" taxId="314295" rank="superfamily" hidden="true"/> <taxon scientificName="Catarrhini" taxId="9526" rank="parvorder"/> <taxon scientificName="Simiiformes" taxId="314293" rank="infraorder" hidden="true"/> <taxon scientificName="Haplorrhini" taxId="376913" rank="suborder"/> <taxon scientificName="Primates" …

Software Development xml
Member Avatar for smandape
0
187
Member Avatar for msqueen082

Hello Today I am trying to put an error message showing that the client has no stock..I think I have to use the clientidlist to show if the client id does not show up in the clientidList than show error message stating the client has no stock..but I am not …

Software Development vb.net
Member Avatar for HookDevil
0
111
Member Avatar for coolpintud

dear all Friends i need to make one application so plz help me quickly as possible and i am very Thankfull if direct give me code or project file because i am no more knowledge of vb6 i have one application have one exe and many other files like graphics …

Software Development visual-basic
Member Avatar for coolpintud
0
259
Member Avatar for Resentful

As many of you know, GOCR is a common Optical Character Recognition software that can be implemented into almost any programming language. You must convert the image you wish to convert into a PNM file and then proceed to call the executable OCR file. I cannot find any conversion methods …

Software Development vb.net visual-basic
Member Avatar for HookDevil
0
236
Member Avatar for globberbob

Hey there, working on a program thats going to have a bunch of functions, but for now I am stuck on something that will be reused throughout the program alot: passing a string pointer to a function. It may seem redundant or arbitrary that I am passing it as a …

Software Development c++
Member Avatar for globberbob
0
7K
Member Avatar for Eyo
Member Avatar for GLOBusa
0
1K
Member Avatar for k4zz

Need help in transforming xml to xsl. I am trying to create a timetable and am trying to transform the xml data that i have into an xsl data. [CODE]<Timetable> <Week> <Day DayID = "Monday"></Day> <Day DayID = "Tuesday"> <Session no = "1"> <Module type = "CMT111"> <ModuleName> CPM </ModuleName> …

Software Development session xml
Member Avatar for xml_looser
0
289
Member Avatar for missc

hi i have two table : Guest and Country.. which are linked by a country id foreign key in guest table .. now in my program i would like to do a data grid view showing all guests details .. how can i show the name of the country instead …

Software Development
Member Avatar for missc
0
79
Member Avatar for malengavictor

Hi every one. I'm creating a website using jsp. One of the functionality required is to process online payment which will be made by credit cards (e.g visa card numbers). So how shall I go about? Thanks in advance.

Software Development java
Member Avatar for jwenting
0
64
Member Avatar for hkarthik

Hi everybody, I just want to develop a web application for sending sms using java/jsp. Normally i have seen people using either gsm modems or bluetooth or connecting mobile to pc and then send sms. I am planning to develop a web application in such a way that it sends …

Software Development java java-jsp
Member Avatar for MingMing
0
552
Member Avatar for sdr001

Hello my problem is that I am not for sure my vector < vector < string > > addresses; is correct. What I am looking for is to read in from a file which looks like: name:dfsd@msn.com name:dfsd@msn.com name:dfsd@msn.com Once my code parses through the file, addresses should look like: …

Software Development c++
Member Avatar for sdr001
0
185
Member Avatar for jwxie

I am new to assembly. I found this code here [url]http://www.daniweb.com/software-development/assembly/threads/117744[/url] What I am having trouble with are the following lines [CODE]L0_95: ; this segment prints ASCII code 0 - 95 mov si,6 ; refers to the string we declared at the beginning mov cx,4 ; I think this is …

Software Development assembly
0
116
Member Avatar for jowana

Hello, How can I calculate the normal vector giving a vertex on a 2D plane in OpenGL. ? All what I read was all about 3D and cross product of two vectors. the only thing that I have is that vertex and I want to construct a vector coming out …

Software Development c++ opengl
Member Avatar for jowana
0
119
Member Avatar for leo88

hi, anyone know how to fix the inputs in a textbox must be a number ?

Software Development c#
Member Avatar for leo88
0
182
Member Avatar for rockerjhr

radixsort.c [CODE]/**************************************************************************************/ /* Radix Sort of integers numbers using polymorphic linked lists. */ /**************************************************************************************/ #include <stdio.h> #include "list.h" #include <stdlib.h> #include "numberinterface.h" #include <math.h> void static refill( int A[] , list Bins[] ) ; int static getdigit( int number, int position ) ; int main( int argc, char *argv[] ) …

Software Development c linked-list
Member Avatar for Ancient Dragon
0
238
Member Avatar for Kath_Fish

Hey..i have no idea to solve this problem..could some one help me.... If i add in the min support, the result will all run away... i do not know why like this: The result will like this: 2 3:1 2 3 4:1 2 4 2 3:1 3 4 4: 1 …

Software Development
Member Avatar for Momerath
0
158
Member Avatar for spencer.kindt

I'm supposed to make a banking system that allows me to make transactions for individuals bank accounts. I'm also supposed to primarily use arrays and for loops and those kind of basic things... It's an intro to programming class. I'm having trouble getting my account class to work. I'm trying …

Software Development java
Member Avatar for VernonDozier
0
135

The End.