199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for vermeet

I have xml file for my project which is in vb.net and asp.net. I want to create exe file from the xml file, Can anyone guide me please. Regards

Member Avatar for vermeet
0
93
Member Avatar for sbenware

I am trying to convert an Enum type called: enum Category{unknown = -1, meat, poultry, seasfood, diary, vegetable, fruit, grain,sweet}; And a struct Food that contains array Category category. The user is given numbers to enter for the Category types, ie: 0 = meat, etc. My program can take that …

Member Avatar for Dave Sinkula
0
941
Member Avatar for cassyjack

OK I had C/C++ programming classes a few years ago and now I'm taking a ASP.net class and programming in C#. I need a little help with an assingment. We have to create an if state to display text depending on if the day of the week is a weekday …

Member Avatar for Maidomax
0
221
Member Avatar for jonathan.jbkt

I have a site that I am working on for a friend. The test site is located at: http://linux1.jbknowledge.com/AJW/AJW%20Photo/ In the image galleries when you click on the large image it greys out the background but it does not fill the screen. I know it is probably just something simple …

Member Avatar for jonathan.jbkt
0
139
Member Avatar for fesago90
Member Avatar for cassyjack

Can someone take a look at this. Create a method called findElement, which takes an integer value and a two-dimensional integer array as inputs and returns true if the value is in the array. If the value is not in the array, the method should return false. This is what …

Member Avatar for Infarction
0
154
Member Avatar for degamer106

>_< I've been searching for nearly an hour and trying to find this memory leak. If you guys could help me find it it would be great. Thx. [CODE]#include <iostream> #include <cstring> #include <crtdbg.h> using std::cout; using std::cin; using std::ios_base; /////////////// user defined data ///////////////////// /////////////// function prototypes //////////////////// class …

Member Avatar for Salem
0
201
Member Avatar for stupidenator

Hello everyone, I am fairly new to oracle and SQL and I am having a little trouble figuring out how to accomplish a task. I have three columns from a table, we will call them 'a', 'b', and 'id'. I first want to order by 'id' and then query the …

Member Avatar for stupidenator
0
525
Member Avatar for iaaan

Hey everyone, this is my first post. I have viewed these forums alot in the past for C++ help and it has helped me out alot, however I have reached a problem myself. I have been doing C++ since last September and until then i was a complete newbie at …

Member Avatar for iaaan
0
146
Member Avatar for dami06

Hi guys, I have a problem in a GUI i am trying to build. Below is the question and I was hoping you could help me out with what to do. Basically, I have do the first program which is to create a GUI but I am having a problem …

Member Avatar for iamthwee
0
105
Member Avatar for kapil.goyal

i have developed a website.it downloads the file from web server.the code works fine on windows 2000 n windows XP but the code doesn't work on windows 98?

Member Avatar for jbennet
0
104
Member Avatar for alex_wil

Hi friends, I am using Perl Tk for a GUI application. It uses a telnet part wherin I need to login to a unix machine, execute a command and process the result. The code is as follows : my $result = $t->cmd(("grep - $filename.txt~ | wc -l | awk '{print …

Member Avatar for mandible
0
192
Member Avatar for iceghost

Hello Im sorry to ask such a basic question - but I am doing some development work in ASP and need to know where I can find a reference library of standard functions for string handling and Date functions. A complete library would be really great. The next question is …

Member Avatar for iceghost
0
102
Member Avatar for Klitzy

Hi guys...I am currently writing a program and it compiles fine but when I run it it says... Problem with input/output IOException:Null Problem with input/output IOException:Null I have two files in it and I dont know what to check anymore...Anyone have any idea on what I need to look at?

Member Avatar for mzd12111
0
111
Member Avatar for ankit_the_hawk

I was starting off with making the game " Cows and Bulls". And to start off i am having a problem in inputting the 4 digit number in a mannar that it appears in form of "*" on the screen. similar to a password. And each digit should be separately …

Member Avatar for Nick Evan
0
153
Member Avatar for ankit_the_hawk

How can i include graphics in my C program which is compiled in windows compiler like Dev-c++? I was wondering whether it was possible to make the game "SNAKE" in C [B]without[/B] using commands like [INLINECODE]gotoxy[/INLINECODE] But a few moments later I realised that it was practically impossible to make …

Member Avatar for vegaseat
0
124
Member Avatar for Thinka

Hi, I am new to Java, and have been trying to write a program that calculates the square root of a number using the Babylonian/Heron method. I have been able to make it work, largely due to a lot of help from a PhD student. So yeah, what I'm trying …

Member Avatar for Thinka
0
159
Member Avatar for Jergosh

I'm working on an IM client in Python and my idea was to make it fully modular. It seemed to me that the obvious approach is to make all plugins derive from a Plugin class (with ProtocolPlugin, UIPlugin subclasses) and to be loaded on program startup by yet another object, …

Member Avatar for woooee
0
98
Member Avatar for Firestone

I'm starting to learn C++, and I wrote this program as a test: [Code=c] #include <iostream> #include <fstream> using namespace std; int main() { char *cString; ifstream File("file.txt"); File >> cString; cout << cString << endl; system("PAUSE"); return 0; } [/code] And when I try to run it it gives …

Member Avatar for John A
0
308
Member Avatar for wait4the1

Hi guys, I have a really puzzling question... I really want to start programming more. (Programming will be more of a hobby than a job for me.) The problem is that I can't figure out which language would be better to learn...C or C++ I want a language that: * …

Member Avatar for Ravalon
0
92
Member Avatar for mindfrost82

I have a form on my website that requires the user to enter data. They are all single line text boxes. At the bottom of the form I have two buttons, one for Print and one for Submit. The Print button just opens the print dialog box and allows them …

Member Avatar for MattEvans
0
103
Member Avatar for Covinus

i need to access a variable from a class to another class currently running at the same time. my plan is to: Save the values of the variable to a file and access it from the other class other options i have Use a database use RMI what other features …

Member Avatar for Covinus
0
103
Member Avatar for stan yost

Could someone please suggest a way I can get the following sub to work? I'm trying to check to see if a field in a datagrid has been changed. I get runtime error 424 Object Required. Thanks [Private Sub DbGrid1_BeforeUpdate(Cancel As Integer) If DBGrid1.Columns(1).Value.DataChanged = True Then ' Check for …

Member Avatar for stan yost
0
105
Member Avatar for umadas

package umadas.examples;import java.io.*;import java.util.*;class Counters{int iCount = 1;} public class Wordfreq { public static Reader r; private static String str=""; public static void main(String args[]) { try { r = new BufferedReader(new FileReader(args[0])); fnWordFrequency(); r.close(); } catch (IOException e) { System.err.println(e); } } public static void fnWordFrequency() { HashMap map …

Member Avatar for jwenting
0
154
Member Avatar for cassyjack

Can someone please take a look at this for me. I have to create a program that models a simple card game. I have to shuffle the card and deal 1 card at a time and display the card that I have dealt. Not sure how to do this. The …

Member Avatar for peter_budo
0
308
Member Avatar for nisrin

hi Excuse me for sounding amateurish, but I need help..Im doing a three tiered architecture proj, is it feasible to use JSP codes to store details about calendars and set reminders with Oracle? Im willing to take up challenges, but Im a novice.. Please advice..

Member Avatar for nisrin
0
96
Member Avatar for edmicman

I'm working in VBScript and want to sort a multidimensional array on two of the columns in it. I've got a function (based on TONS of examples around the Net) that is sorting on one column, but I can't seem to get how to then do a second column. I'm …

Member Avatar for edmicman
0
384
Member Avatar for amirwan

hi, i want to add library to borland c++ it consist of header files and .lib files I try to put the header files in include file and .lib in lib file but they still not working, does that mean the .lib files are corrupted

Member Avatar for amirwan
0
285
Member Avatar for Braga_ESI

Hi, I'm in colledge and I have to finish this thing by tomorow mornig... So I'm asking if anybody cal give me some help on how to call and execute mysql procedures in PHP... I already tryed this but it dosen't work... :eek: [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=41143&highlight=procedure+php+mysql"]link[/URL], Sorry for my english and thanks …

Member Avatar for Braga_ESI
0
79
Member Avatar for nekesa

I'm using this code to place Time\Date stamps in specific Access Columns: [code=asp] Dim conn,strsql,sql_update,ssn,cps,hdDate,TOD,PageDate,h h=hour(now()) ssn = "Select SSN From CWCT07 where SSN = '" & Request.Form("SSN") & "'" If _ (Request.form("PageDate")) = "1/30/2007" And "h" < "12" _ Then _ sql_update = "Update CWCT07 Set Jan30AM = '" …

Member Avatar for campkev
0
114
Member Avatar for dowen

and when i add a new int data type my program has an error and yet when i add a new String data type it has no error // objectSort.java // demonstrates sorting objects (uses insertion sort) // to run this program: C>java libmainsys //////////////////////////////////////////////////////////////// [code] class libary { private …

Member Avatar for Phaelax
0
99
Member Avatar for Rocksoft

Hi, i got error "class not registered" when i try to create web setup and deployment project to my web application. i created web setup and deployment project many times to my application, but i getting this error now.please anybody try to help me out, if anybody solve this problem …

Member Avatar for sedgey
0
130
Member Avatar for multimediakt

I am looking for PHP coders that would like some experience with an online order form (donations). If you would like you may use the website as an example in your portfolio. The project is for a non-profit organziation called LifeLine Pilots. They are trying to set up their website …

Member Avatar for multimediakt
0
99
Member Avatar for Sarah Lee

Hi Everybody I am trying to explore the master page fanctionalities, in which I come across a question. I am trying to change the CSS of the master page, based on user options I have tried the below code,in the master page page_load. But it seems it is not working. …

Member Avatar for sedgey
0
122
Member Avatar for shouvik.d
Member Avatar for shouvik.d
0
85
Member Avatar for edogan

Hi to everyone, I am using createProcess("setup.exe","",...) to launch an installation. When I call this function from a "normal application program" everything works fine. However, when I call same function from a service application, it hangs up when writing information to add remove programs. Can you tell why this happens …

Member Avatar for edogan
0
77
Member Avatar for assgar

Hi I need help solving a porblem. I have a form that displays a checkbox, service code, description and dropdown with fees on each row. The fee_money and unit array only returns a selected value from the first item (checkbox). When I used the line below in the processor, it …

Member Avatar for php_daemon
0
122
Member Avatar for Turnkey_Websites

Hello, I have installed my turnkey website , a photo rating website, since two years or so. We did add features to prevent the average internet users from taking the pics, like stoping the drag&drop, disabling right click, disabling print screen. The website was working fine until recently, i dont …

Member Avatar for einfoway
0
104
Member Avatar for rpjanaka

hi all, i am using the tomcat server.. can i show the java out puts(System.out.println) on the browser that is issude from java classes, not from the jsp pages. i think there may be a way to change the configuration in the tomcat server.. thanks..

Member Avatar for masijade
0
574
Member Avatar for apurv

[B]Wat according 2 u ppl is the strongest cryptography for c ?:!: [/B] [B]I mean that can be acctualised using a C program.[/B]

Member Avatar for sham51
0
149
Member Avatar for jblacdao

I've been testing on uploading files and I encountered a weird bug while testing it out because on the initial uploading of the file, my localhost uploads it to the root directory of my xampp rather than in the directory inside my htdocs folder. To make things clear here's what …

Member Avatar for vssp
0
114
Member Avatar for bluecat

I'm making a shape editor. When I choose the circle button if I press the mouse button it appears a circle in the form, if I choose the square button it appears a square in the form. But I have to do an MDI Application with this. When I want …

Member Avatar for bluecat
0
148
Member Avatar for bluecat

To do shapes in the form I use a vector that stores a struct with the x, y, color and shape values of every shape I put on the form. I have to save and open these values. To save and open files with shapes. I use a TOpenDialog and …

Member Avatar for bluecat
0
98
Member Avatar for GuruGhulab

Hi there, I need to create a program that generates a random number, and asks the user to guess the number and the program tells them higher or lower, and if the program tells them higher, and they enter a number lower, or vice-versa, you call them a moron. For …

Member Avatar for Ancient Dragon
0
127
Member Avatar for coolman2006

Does anyone know about LISP Programming I am trying to make this program where I have 3 types of cars, which are ford bmw merc ford has focus and fiesta BMW has 1series and 2series and the merc has SK100 and SK200 well basically i am trying to put them …

Member Avatar for ~s.o.s~
0
129
Member Avatar for tehloki

Hey, I have here a piece of code that works in parts but does not work together. If I test all three parts at once, I get a segmentation fault immediately before the program is supposed to test for a (null) value in the string array. However, if I comment …

Member Avatar for Ancient Dragon
0
976
Member Avatar for motox16

Hi, I really hope someone can help me, you guys seem nice and all and I really like ur website :cheesy:. Here is what I want to do: [URL="http://img454.imageshack.us/my.php?image=helpqj7.png"][IMG]http://img454.imageshack.us/img454/6193/helpqj7.th.png[/IMG][/URL] Basically I want no spaces in between that navigation bar and the banner so the chain appears to be attatched to …

Member Avatar for motox16
0
126
Member Avatar for ycpc55

hi i was wondering if anyone can help me out with this watermark script my problem is that the png image is resizing with all my images i have to watermark in the folder here is 2 link so you can see what im talking about im trying to get …

Member Avatar for theonlydrayk
0
116
Member Avatar for andy3250

Hi, I really need help with text field with css image. I have wrote code, this code is works great but I could not figure out how to write the rest of code, there is a text field that are relate to email address, for sample if person enter email …

Member Avatar for andy3250
0
95
Member Avatar for flageolet

this the full code, which works like a charm, except for the error when i close the program. (a normal 'send report' / 'do not send report' error). I've narrowed it down to one line (a variabele being read from a file -> posted in red), but can't seem to …

Member Avatar for Salem
0
154

The End.