199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for kothaisaravan

Hi, I have developed a VB.NET Application with backend MS Access. Now I want to install on the user's machine, so i deployed the setup project. I need to know how can i create a desktop shortcut for my VB.NET Application. If I just copy and paste the filename.exe file …

Member Avatar for IrshadIkhlas
0
171
Member Avatar for zachattack05

Thanks to Antenka I have located the HTML Help Workshop to create a Help system for my software. Problem: writing HTML code is a heck of a lot more tiring than I expected. Does anyone know of a WYSIWYG HTML editor that only does the basics (fonts, tables, images etc...) …

Member Avatar for Cap'nKirk
0
99
Member Avatar for violette

I got an error when i run my program. it says; you have an error in your sql syntax;check the manual that corresponds to your mySQL server version for the right syntax to use near 'VALUES ('2011',5,5131,678,'342',809 at line 1 what does it mean? here's my code. can someone point …

Member Avatar for WaltP
0
598
Member Avatar for jerox

Hey guys, I am new to programming in C, I am trying to save "tc" into a variable using for loops. I understand for integers, multiply the result by 10. Is there a similar way to do this for chars? For integers, [CODE=C] for(j = 0; j < i; j++) …

Member Avatar for jerox
0
141
Member Avatar for mikedee7282

Can someone interpret this code for me? I dont understand whats going on. This code is supposed to take a number n that is inputted and show all the numbers below n that are frugal. A little background, a frugal number is a number where the amount of the digits …

Member Avatar for stereomatching
0
279
Member Avatar for Despairy

as you can see in the picture this happens the second i add to that kamapatchi class 1 more integer. [CODE]#pragma once #include "Configuration.h" class Kamapatchi{ public: Kamapatchi(); Kamapatchi(Point ); Kamapatchi(int,int); int getAge(); bool isAlive(); void drawSprite(char world[][BOARD_SIZE]); void eraseSprite(char world[][BOARD_SIZE]); void act(char world[][BOARD_SIZE]); void updateStatus(); string getStatusString(); string getSpecificMenu(); …

Member Avatar for WaltP
0
198
Member Avatar for lbgladson

I have a program to write an application that takes the initial balance, annual rate, and number of years and finds the balance of the account at the end of each year. I have the following code but my Annual Rate label is in the incorrect place, the calculate button …

0
77
Member Avatar for toneranger

Hi, I've got stock market data in a structure as follows. [CODE]struct PriceInfo { double Open; double High; double Low; double Close; unsigned int Volume; unsigned int Time; std::string Date; };[/CODE] My program imports the data from a csv file and stores it in memory etc. The date and time …

Member Avatar for WaltP
0
2K
Member Avatar for jmaass20

im a new student to c++ and classes has really confused me. the program is creating a bank account. i have already completed the header file but the implementation file has be confused. can someone please help me with this. thanks! here is my header file: #include <iostream> using namespace …

Member Avatar for Lerner
0
137
Member Avatar for AleWin

I can not find the error in this program [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace test { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { webBrowser1.Navigate(" http://www.httpsurf.com/ "); …

Member Avatar for mcriscolo
0
134
Member Avatar for wezel

Hello, I am trying to query a table for todays date based on this format mm/dd/yyyy hh:mm:ss AM/PM I tried date() but it only returns results based on the mm/dd/yyyy formate. Any assistant is apprecaited! Thanks, Wez

Member Avatar for adam_k
0
97
Member Avatar for mkab

I have a problem making a select tag in php code dynamic. I'm creating a website (homework) using php and connecting to an oracle database which has all the info needed. Each agency has a list of vehicules. I created a select option tag for agencies and for vehicules. I …

0
172
Member Avatar for kurohige

so i'd being working on an access app, VBA and i need to restart it, the application usually goes stops running when error 3043 or internet connection goes down.. is there any way i can restart this application without having to build another app to check if is running.. thanks …

Member Avatar for kurohige
0
941
Member Avatar for Vasthor

can anyone tell me particular code that work opposite way for "sort", where.... [QUOTE] sort(b, e) Rearranges the elements defined by the range [b, e) into nondecreasing order. Defined in <algorithm>. [/QUOTE] from Accelerated C++

Member Avatar for stereomatching
0
92
Member Avatar for codenoobrebel

Hello all, I am working on an assignment for my OOP1 class that requires reading a .DAT file, performing a bubble sort according to user input using the keyboard and then writing the sorted data to an output.DAT file. I am able to get my program to compile with no …

Member Avatar for Lerner
0
108
Member Avatar for ginnipig

Hello All, I have two tables that can't be changed. One contains Stock codes / country codes, the other has country code / description for each code. I have a combobox with all the country descriptions that can be added to the stock code table. my problems is i can't …

Member Avatar for ginnipig
0
244
Member Avatar for Tajinderpal

I have made a media player in java using jmf which plays mp3,midi,mpeg1,mpeg2&avi. How to play the [COLOR="green"]mpeg4[/COLOR].Also i want to make a [COLOR="Green"]playlist[/COLOR] for it which can add,delete and save the songs in the playlist.here is my code of media player..... [code]import javax.media.*; import java.awt.*; import java.awt.event.*; class MediaPlayer …

Member Avatar for JamesCherrill
0
197
Member Avatar for Baxtula

Hello, I am a computer science student working as a bartender in a restaurant. My boss was complaining that his monthly inventory audit was taking too much time (as he has about 2000 unique items to count) and I suggested I could build a mysql database to help him (and …

Member Avatar for Baxtula
0
299
Member Avatar for terence193

This is what the question is asking: Write a program to get the user to enter a positive number. Validate the input so any negative or zero number entered is rejected and the user is to re-enter the number. and this is what i have done [CODE]#include<stdio.h> int main (void) …

Member Avatar for YAMNA MIDHAT
0
203
Member Avatar for arunkumars

Hi, i cant seem to get my head around this 1. its about utf8 to u32 and vice versa. I have a file which is written using a custom logic by someone else in vc++, and am reading the same in my c sharp application. Initially while i was debugging …

Member Avatar for mcriscolo
0
423
Member Avatar for luweegee

Hi Guys! I have a category name and a post_title in different table. i fetch all category and the post_title in my index let say my category name is "sport" then my post_title is all about sport now proceed to the code i used the query of inner join for …

Member Avatar for luweegee
0
374
Member Avatar for narekm

Hi there. I am developing an application in which I am using AJAX and PHP. Lets say from my initial.php files I am making request via AJAX to ajaxResponse.php file where I execute some code and interact with MySQL .Since I am handling with dtabase I am using my written …

Member Avatar for narekm
0
200
Member Avatar for mattyd

**Note: I'm not sure if this is the appropriate area for this post-- please move if necessary. Hello. I am working on a small Macromedia Flash project, just learning more about Flash and getting acquainted with the Flash interface as well as Actionscript; my question is not in regards to …

Member Avatar for gusano79
0
233
Member Avatar for kyros

Hello Everyone; I am asked to draw dfd for Employee Monitoring System. Before it, there is a question about the methodology that I should use. I think it is more likely to use Waterfall model, because of the time schedules in the system. Anyway, I might be wrong, can you …

Member Avatar for gusano79
0
156
Member Avatar for jpico

Hi, I've been trying to write a converter that converts several units. I want it to be able to prompt the user to retype an input if they type an invalid input... I'm struggling with this part. This is what I have so far. [ICODE] #include <iostream> #include <iomanip> #include …

Member Avatar for Red Goose
0
156
Member Avatar for zainji

Write the ideal weight calculator so that height in inches is entered by using a slider. Use the approximate formula: W = H2 / 30 , for female W = H2 / 28 , for male where W is the ideal weight in pounds, H is the height in inches …

Member Avatar for hfx642
0
90
Member Avatar for Reverend Jim

I have a NumericUpDown control that I want to allow the user to change with the mouse scroll wheel. The problem is that even with the following code [code] Private Sub numSeries_MouseWheel(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles numSeries.MouseWheel If e.Delta > 0 Then numSeries.Value += 1 Else …

0
219
Member Avatar for Capn_Pipp

#1 - I'm a newb to java :( #2 Im having a problem getting getting my JTable to update when the user edits a cell. Im using a abstract model which is basically what the sun tutorial did word for word( i used a abstractmodel so i could make columns …

0
139
Member Avatar for couldxbe

Hi everyone! I know there have been quite a few threads on this topic but I'm having a lot of trouble with one piece of code. Basically, I have an input file with three columns and 500+ rows. I want to find the average of each column, and then subtract …

Member Avatar for couldxbe
0
133
Member Avatar for martin11ph

Hi guys, I'm wondering if there is a way to solve this problem. Currently, I have an SQL statement that goes this way: [CODE]SELECT distinct name,id from list [/CODE] My understanding is that it selects the things that are distinct on both tables. Example: id name 1 Joe 2 Joe …

Member Avatar for martin11ph
0
155
Member Avatar for VengefulToast

Hi members, just a simple question, how would I show a constant in an UML diagram? For example, here is a double field the class contains. - radius : double But how would the constant PI (3.14159...) be shown? - PI : constant?? Future thanks for the responses!

Member Avatar for niranga
0
1K
Member Avatar for rohit.k2903

I have a page it is working fine but header function is not redirecting onto another page, it stuck. When I enter the url then its works.. Here is my code.. I changed my server recently [CODE] <?php include "../dbconnect/cnn_mysql.php"; if($_POST) { $doneurl=''; if(array_key_exists('doneurl',$_POST)) $doneurl=$_POST["doneurl"]; else $doneurl=$_SERVER['HTTP_REFERER']; if(true)//$doneurl=="") $doneurl="mykpojobs.php"; // …

Member Avatar for pzuurveen
0
279
Member Avatar for jekMCMXC

Can anyone help me how to load an external page into a <div> tag? I've search the internet and still no answers.. please give me an example.. I have not started a thing yet...

Member Avatar for stbuchok
0
140
Member Avatar for phoenix_2000

Heya people, Here's my problem: i have a (for me quite lengthy) piece of SQL code which is automagically generated by my own application. However, when i try to execute it, it gives me an recordSet error ("Either BOF of EOF is true, or the current record has been deleted"). …

Member Avatar for phoenix_2000
0
245
Member Avatar for garyrichard

Hello everyone.. How to print web page in PHP without Header and footer when print button is clicked by user Thanks in advance

Member Avatar for KamranArshad
0
249
Member Avatar for kaosjon

Hi, i am trying to create my login script for my website, however when i enter my details it does not do anything, it just goes to the same screen. I have used the same script roughly as i used for another website of mine, but i cannot figure this …

Member Avatar for Treasurepet
0
300
Member Avatar for pkrai

[CODE]#include<anil_pkr.h> void main() { menu();getch(); } /* header file- #include<iostream.h> #include<conio.h> #include<dos.h> #include<string.h> #include<ctype.h> #include<stdio.h> #include<stdlib.h> ////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////// int i,j,k,l,x=5,y=5; char n; void smallbox(int,int,int,int,int); void smallbox(int col,int x,int y,int len,int brth) {textcolor(col); gotoxy(x,y+brth);cprintf("%c",192); for(i=1;i<len;i++){gotoxy(i+x,y);cprintf("%c",196);} for(i=1;i<len;i++){gotoxy(i+x,brth+y);cprintf("%c",196);} gotoxy(len+x,y);cprintf("%c",191);gotoxy(len+x,brth+y);cprintf("%c",217); for(i=1;i<brth;i++){gotoxy(x,y+i);cprintf("%c",179);} for(i=1;i<brth;i++){gotoxy(len+x,y+i);cprintf("%c",179);} gotoxy(x,y);cprintf("%c",218); } /////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// void paint(); void paint() { for(i=1;i<75;i++){textbackground(15); gotoxy(3+i,19);cprintf(" "); …

Member Avatar for Ancient Dragon
0
121
Member Avatar for cb0058385

I have a Java Script loop which will be polling if any child windows are closed. The code is working fine in all versions of IE in the local system. But when we invoke the application via CITRIX and IE6 then we are getting the PERMISSION DENIED error. and the …

Member Avatar for cb0058385
0
337
Member Avatar for ChrisTech

I am developing a point of sale program for a project subject. The trouble im having is when i press on the button to add the item from a textbox to a listview i receive an error: See attached Screenshot. my code is: [CODE]Private Sub SalesScreen_Load(ByVal sender As Object, ByVal …

Member Avatar for Reverend Jim
0
241
Member Avatar for stuidabest

this is all of the code i have so far [CODE]Public Class Form1 Dim SelectedWord As String Dim IntNoWords As Integer Dim stringarray(1000) As String Dim strword As String Dim Wordlength As Integer Dim UnderscoreWord As String Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EndButton.Click End …

Member Avatar for Reverend Jim
0
93
Member Avatar for PriyalRao

How to add sub menus that should appear on mouse click and should disappear on mouse click. [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Blurry Menu</title> <style type="text/css"> body { background: #1a1a1a url(bg.jpg); } #blur { position: relative; top: 50px; …

Member Avatar for AleMonteiro
0
678
Member Avatar for nickg21

Hey everyone, What i'm doing is building a step through form that will basically store relational keys between databases. I begin by storing Information about the individual asking about the program, I then want to query the table this was stored in to get the Unique ID that is being …

Member Avatar for nickg21
0
161
Member Avatar for kshahnazari

hi everyone , i want to edit , delete and update classes in css with c# . what shall i do?

Member Avatar for thines01
0
131
Member Avatar for Saima_Khan

Is it possible to make ASP.NET web based ? i m trying to do so. so, please let me know if it is possible. thanks.

Member Avatar for hericles
0
95
Member Avatar for jcdisciple

I have an application that I modified from [url]http://offbeatmammal.com/upload_resize.aspx[/url] Can someone show me how to convert the vbscript UPDATE Query at the end to a DOT NET????? [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <%@ Page Trace="False" Language="vb" aspcompat="true" debug="true" validateRequest="false"%> <%@ Import Namespace=System.Drawing %> <%@ …

Member Avatar for hericles
0
214
Member Avatar for schoolboy2010

I have this script that is supposed to check if a number the user guesses is the same as the randomly generated number. Problem is that the random number generated at the start of the program keeps on changing everytime I click on the "Check if I'm right" button, the …

Member Avatar for schoolboy2010
0
223
Member Avatar for narekm

Hi . I am building a live chat using mysql and the database is updated because of users entries . So the number ow rows in the table changes constantly . And need to use a query which will select the rows that hasnt been selected. SO how do I …

Member Avatar for urtrivedi
0
147
Member Avatar for Joey_Brown

Hello :) Lets say I have a text file that looks like this : [CODE]*DataString1 info1;info2;info3 //newline delimiter *DataString2 info1;info2;info3;info4 //newline delimiter . . . //and so on [/CODE] What is the best container with which I could process and manipulate the information stored in this file? Thank you for …

Member Avatar for JamesCherrill
0
92
Member Avatar for brax4444

Hello all, I'm trying to read in an entire tab-delimited files with the following data layout: File Title Line is always at the top. DataName1 DataNam2 DataName3 12345 123.4 12.456 9876 987.65 45678 There may be any number of rows and columns after the title line. I want to read …

Member Avatar for voidyman
0
472
Member Avatar for voidyman

I want to remove blank lines (empty or with spaces and tabs) from a file from within a perl script. here's what i tried. [CODE]`sed '/^ *\$/d' $file1`;[/CODE] Does not seem to work for some reason. Any Help please?

Member Avatar for voidyman
0
939

The End.