199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for paulablanca

Hi! Can someone tell me on how could I display the data from my SQL to a ListView? I only have one column to display. Thank you very much and God Bless! :)

Member Avatar for paulablanca
0
2K
Member Avatar for weekendrockstar

Hello! I've created a script that allows you to create a 'page' by saving the relevant information to a MySQL database. One script will generate all of the pages that are created by the id # that is passed to said script. Of course. When saving the page's information MySQL …

Member Avatar for weekendrockstar
0
190
Member Avatar for rumahsolusi

hi, i am newbie. i have question how make search engine will crawl/spider [url]www.host.com/file.php[/url] for [url]www.host.com[/url] Thank You

Member Avatar for vikrantholidays
0
340
Member Avatar for aimbo

Hello, I'm having some troubles working with strtok. I'm having a string of numbers I want to put in an array, and say from the list I want to get an array with 1,3,5,6,7,8,9,10,12,13,14. First I just wanted to see the single numbers in one place and split that 5-9 …

Member Avatar for Adak
0
145
Member Avatar for sasi_88

if i want two submit buttons ok1 and ok2 if the user click ok1 control goes with 1.jsp or click ok2 control goes with 2.jsp but ok2 is not working. is there any mistake two submit buttons then what are methods to resolve my code is here [code=html]<html> <head> <meta …

Member Avatar for rakhi4110
0
194
Member Avatar for MaddTechwf

I'm wanting to compile my project to a single exe so that I can add it to a flash drive and be able to run the program without having to install anything. Does anyone know how to do this?

Member Avatar for sandeepparekh9
0
137
Member Avatar for MaddTechwf

I have been googling all day today and I've been trying to find some small, i know it won't be small, amount of code that will allow me to skin my VB.NET project. I don't want to do much to it as far as skinning. If you google GeekSquad MRI, …

Member Avatar for sling blade
0
825
Member Avatar for GatorAlli

I'm using Python, PyQt4, and QtWebKit to load a web page into a bare-bones browser to examine the data. However, there is a small issue. I'm trying to get the contents and src of every iframe on the loaded page. I'm using [B][I]webView.page().mainFrame().childFrames()[/I][/B] to get the frames. To problem is, …

0
171
Member Avatar for user543820

hi! i want to print a colored 'A' using putchar, let's say green. i am able to print * by doing just putchar('A'); but i don't know that how to print a colored 'A'. i have also tried to write: putchar('A',255); and also putchar('A',3); but no success.

Member Avatar for embooglement
0
274
Member Avatar for skald89

I want to add a + - for collapse and expand all. I would prefer to have them change accordingly but it isnt necessary. this is my javascript var toggleMenu = { init : function(sContainerClass, sHiddenClass) { if (!document.getElementById || !document.createTextNode) {return;} // Check for DOM support var arrMenus = …

Member Avatar for codewall
0
247
Member Avatar for Spartan_MSU12

I am compiling my two .cpp files that are linked with header file. i am getting the error ~/...>g++ -o test.exe diamondtest.o main.o Undefined first referenced symbol in file Diamond::Diamond(int) main.o Diamond::Diamond(int, char) main.o ld: fatal: Symbol referencing errors. No output written to test.exe collect2: ld returned 1 exit status …

Member Avatar for daviddoria
0
129
Member Avatar for TailsTheFox

Hello, I'm trying to make a program, and can't figure out the correct way to use [ICODE]Form::Diologue[/ICODE] I allready know you have to do someting like this: [CODE] #include "Form2.h" Form::ShowDiologue(Form2()); [/CODE]

Member Avatar for TailsTheFox
0
93
Member Avatar for Coyboss

Hey all, I have been working with this for about 4 days and pulling my hair out. I can't figure out why I am getting the error messages in my code, when I compile. Here is my code. [CODE]// Week3 Dwight Welsh import java.text.DecimalFormat; public class Mortgage { public static …

Member Avatar for Coyboss
0
251
Member Avatar for Darren76

/**This program is a simple number guessing game using the random class */ import java.util.Scanner; import java.util.Random; public class numGuessing { public static void main(String[] args) { Scanner input = new Scanner(System.in); Random rndm = new Random(); int num = rndm.nextInt(50); int numGuess; System.out.println("Please try to guess a number 1 …

Member Avatar for Darren76
0
240
Member Avatar for TheWolverine

Hi all, I've scoured the internet for examples that would allow me to figure out how to apply functors in my specific case, but I just can't seem to make the shift from the examples I find to figuring out how to use it for my own code. Here is …

Member Avatar for TheWolverine
0
95
Member Avatar for Phil++

Hey, I'm looking for some help and advice on set theory. Is set theory like arrays in C# and C++ for example? Like: [CODE] S = {1,2,3,4,5,6} // is a set of integers [/CODE] But how do you access each member? For example, in C++: [CODE] cout << S[1]; // …

Member Avatar for mrnutty
0
84
Member Avatar for k4it0xtr3me

hi, I am new here... I am currently facing some trouble in pulling out the Attribute as in its types and names. My program purpose is to read the Java file and display all the String into tokens. Then, it must be able to pull out the class name, attribute …

Member Avatar for k4it0xtr3me
0
149
Member Avatar for Unhnd_Exception

Having an issue switching a listview from Tile to Details View with groups. When the list view has groups and the Default View is Tile, when changing the view to Details the first Group is not shown. Its under the column header. I jerry rigged it with creating a global …

Member Avatar for Unhnd_Exception
0
193
Member Avatar for iokon

Hi to all! In the following code I am trying to implement a non-directed graph using adjacency lists. Even though there are no compilation errors, I don't get any results. When I am debugging the code it seems that there is a problem when I try to insert a second …

Member Avatar for iokon
0
2K
Member Avatar for RenanLazarotto

Hey guys! Its me again. I'm working with a SQLite database, and I want to list every entry inside a listbox (only the "Name" row). I know that I can list everything inside a DataGrid, but I don't want to list everything (: Also... sometimes, when you open a window …

Member Avatar for RenanLazarotto
0
124
Member Avatar for Neversleepin

Hello every one, is it possible to get files from a file list display with System.out.println. I mean for example if you code something like: System.out.println("file.getName"); Then you get a file list. After how could we use this file list to for example copy or move or anything else with …

Member Avatar for Neversleepin
0
121
Member Avatar for plasticfood

ok so the program gets a list of numbers, and it counts how many times a number is entered. [CODE]for(int i = 0; i < numList.size(); i++){ for(int j = numList.size() - 1; j > i; j--){ if(numList.get(i) == numList.get(j)){ count++; numList.remove(j); } } System.out.println(numList.get(i) +" " + count); count …

Member Avatar for plasticfood
0
107
Member Avatar for rhuffman8

I don't know if anyone here is familiar with the Scala digital signage programs but hopefully this question can be answered without any knowledge of it, just in case... I am working with a Python script that checks a csv file and shares some of the info with a scala …

Member Avatar for griswolf
0
961
Member Avatar for speer25

Ok so before I posted this I have been working on this code off and on for 2 weeks. Its probably so simple for someone. If any one could get me out of my rut I would so appreciate it! Basically I'm trying to get a select box to display …

Member Avatar for speer25
0
96
Member Avatar for iwanttolearnc

im trying my hand at calling c functions from python. im reading up the tutorial [URL="http://csl.sublevel3.org/C-functions-from-Python/"]http://csl.sublevel3.org/C-functions-from-Python/[/URL]. however part of the tutorial says that i should [QUOTE]Compiling dynamic libraries on Mac OS X is different from the usual gcc -shared you might be used to: gcc -dynamiclib -I/usr/include/python2.3/ -lpython2.3 -o myModule.dylib …

Member Avatar for gerard4143
0
229
Member Avatar for trebor-pl

Hi, i'm not very good at OOP, basically just started it. My program basically its like a system for a game shop, the main isn't fully done yet, however main isn't a problem. The other files must contain some kind of problem in them. Well enough of the talk, I'll …

Member Avatar for trebor-pl
0
338
Member Avatar for Ribamar23

Hi folks I'm trying a auction script that can be accessed in this link: [url]http://www.argoestores.com/V607/index.php[/url] it works well on this hosting plan when i try to use the same script in windows 7 using wamp the page renders like this: [URL=http://img232.imageshack.us/i/imgah.png/][IMG]http://img232.imageshack.us/img232/8066/imgah.png[/IMG][/URL] the script needs a folder to be chmoded to …

Member Avatar for Ribamar23
0
153
Member Avatar for katiep23

Relatively new to VB.NET coding. Am creating a pretty simple console application that needs to insert over 50,000 records into an Oracle table (OleDB connection). I tried 3 different methods so far: Individual INSERT, insert using a dataset, & using INSERT ALL (commit every 25 records due to # of …

Member Avatar for katiep23
0
1K
Member Avatar for ben.marks

Hi there, I am looking for some help on PHP/MySQL please :) I have a site where you add an item via a form which is then put into a mysql data base. I was wondering if there was anyway so that on this inital form there could be a …

Member Avatar for ben.marks
0
97
Member Avatar for Zvjezdan23

[CODE]#include <iostream> #include <string> using namespace std; int main() { // A switch program that shows the user his input choice string word1 = "Achieve"; cout << "Welcome to Your AccuWeather Report Screen." << endl; cout << "Your choices are listed at the bottom." << endl; cout << "Number 1 …

Member Avatar for WaltP
0
136
Member Avatar for Ashena

Hi. I have an external file where I have the results of a dictionary: [CODE]google.com {'facebook.com': 230, 'yahoo.com': 9, 'fifa.org': 67, 'msn.com': 3} yahoo.com {'apps.facebook.com': 13, 'msn.com': 9, 'myp2p.eu': 2} [/CODE] The results show the search engines, the links have been clicked from the search engine and the number of …

Member Avatar for Ashena
0
413
Member Avatar for Acute

Hi everyone, I'm building a microblogging system like twitter and I need help in optimizing the database structure. I have tables "user_info", "posts" and "friends". Each time when user logs in, lets say user X, all latest posts of friends of X should be displayed. So it means that when …

Member Avatar for griswolf
0
186
Member Avatar for Rimojenkins

Sorry about the title, but I thought it would be interesting. Here is my problem. I am supposed to convert a certain input into a desired output. The input is 2 201101190930 F76.4 201101191330 C16.3 The first number is the number of strings in the file. It then goes YYYYMMDDHHMM …

Member Avatar for Rimojenkins
0
116
Member Avatar for vbx_wx

Is there any difference between polymorphism implemented in c++ and the one implemented in python ?

Member Avatar for bumsfeld
0
74
Member Avatar for ana_1234

I'm working on a program that reads a line of code and stores each word into an index or a array of string and I'm stuck. Its a small part of a larger project I must used cin.getline: [CODE]#include <iostream> #include <string> #include <cstring> #include <cctype> #include <iomanip> using namespace …

Member Avatar for griswolf
0
91
Member Avatar for kardsen

I have a routine that is supposed to grab all email addresses within a certain group. The email address list can be well over 1000 emails. When emailing it out though I can only send around 150 emails at a time. So what I i've done is executed a query …

Member Avatar for kardsen
0
136
Member Avatar for hellotata

I am currently working on this graph "thingy" were I am told to produce 4 types of graphs. [LIST] [*]y=x2 [*]y=x3 [*]y=x*sin(x) [*]y=x*cos(10*x) [/LIST] Now basically, I have the GUI/Interface ready. I seem to have a problem linking the [B]y=x*sin(x)[/B] button in the PlottingWindow class to the PlottingPanel where it …

Member Avatar for hellotata
0
777
Member Avatar for BanKuZ

hi all, I have a class A that has a char* var, operator and methods. In addition I have a global func(char*s). I would like to run this code from the main function by adding operators to my class, I need help writing them. [CODE]A* pA; ... A** ppA = …

Member Avatar for BanKuZ
0
258
Member Avatar for emko

Hi I need to create an application that converts an image to an icon. This is for a school project, and I know there are libraries in VB that do image conversion, however I have to make the conversion process myself. My first task is to convert an JPEG into …

Member Avatar for emko
0
4K
Member Avatar for MaddTechwf

If I wanted to call the RUN prompt and the Command prompt in my application, what exe's would I need to reference?

Member Avatar for zinnqu
0
116
Member Avatar for Marty1963

I have another modification to make to my Random Image Script and I'm hoping someone can help me with the punctuation. I need to add an [usemap="#Map"] to the code on line #7 below: [CODE]<?php //This will get an array of all the gif, jpg and png images in a …

Member Avatar for Marty1963
0
124
Member Avatar for newbie14

Dear All, Attached is one sample image. I would like to make it dynamic with different tyre configuration. The next thing I want is the ability to drag (each of the different tyres) to say few different functionalities which will be represented as icons. Thank you. Any idea.

Member Avatar for diafol
0
88
Member Avatar for speer25

Working on this off and on for two weeks! Probably super simple with someone with more experience. I simple have a food search engine. You enter in lets say "blue cheese" it pulls all things with blue cheese from my DB. I click on one of the blue cheese links …

Member Avatar for speer25
0
108
Member Avatar for ajst

Hi guys and girls(?), I have created a 2d turn based board game game like chess, in java but my problem is that I wanna add some kind of walk through or tutorial system to explain the controls and features of the game. I was wondering if anyone had any …

Member Avatar for jon.kiparsky
0
129
Member Avatar for varia

Hi, I need your help... I need to get the value selected by a user from the HTML page and pass this value into my servlet program for processing. So I did something like this: Part of my jsp code: [CODE] <select name="tool" id="tool"> <option value=kim>KIM</option> <option value=ontomat>Ontomat Annotizer</option> <option …

Member Avatar for rakhi4110
0
92
Member Avatar for atticusr5

Hello, I have a program with the following variable: [CODE]char dateCode[13];[/CODE] and the this type of data is held by the variable -> 2011006+0000 Now if i want to print only 2011006, and ignore the + and everything after, is there a way to do that in c++? Would i …

Member Avatar for atticusr5
0
101
Member Avatar for onlinessp

hi, i have wrote the following code.... [CODE] private void button_MouseEnter(object sender, EventArgs e) { if ( button.Enabled== false) label1.Text = "Please Select the area to scan"; else label1.Text = "It will scan the specified area"; } [/CODE] and used mouse enter handler.The problem i am getting is it give …

Member Avatar for ddanbe
0
104
Member Avatar for Zvjezdan23
Member Avatar for pooran.c

guys help me in implementing "doubly linked list and circular linked lisct in c" . I know the logic but i am finding difficult to code.

Member Avatar for Ezzaral
0
129
Member Avatar for Translucentbill

So I have started learning Java for my senior project at school and I would really like to make a tower defense game as my project. I have been looking for tutorials that would help but I am having trouble finding some. I have been using [url]www.javacoffeebreak.com[/url] and I've been …

Member Avatar for jon.kiparsky
0
3K

The End.