132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for jemz

hello can you help me how can i remove the flexgrid lines or to be invisible lines in my flexgrid and to put some background color in every rows..just like in I-Tunes software blue and white color of the grid rows...please help me hoping for your positive responds... thank you …

Software Development visual-basic
Member Avatar for jemz
0
251
Member Avatar for niemo

hi all, I'm trying to make a C++ application that visualizes the computer structure (drivers, folders and subfolders, ...) in a 3D tree. I want to access my hard disk to get its structure and use it. How can I do so?? Is there a look-up table or something that …

Software Development c++
Member Avatar for Narue
0
216
Member Avatar for BastienP

Hello everyone, I'm currently working on an automated process which extract user info from AD with csvde, then do some treatments with perl scripts, convert the csv file into xls in order to do some modifications by a specific user in Excel, then convert the xls to csv, format it …

Software Development perl
Member Avatar for BastienP
0
240
Member Avatar for Dr-Delta

Hi Please tell vb.net equivalent of following: [B]C# Syntax[/B] [code] public class AuthorList : Control { static AuthorList() { Post.Saved += delegate { _Html = null; }; } [/code] [B]I tried using C# to VB.NET code converter which gave me this:[/B] [code] Public Class AuthorList Inherits Control Shared Sub New() …

Software Development c# vb.net visual-studio
Member Avatar for Dr-Delta
0
143
Member Avatar for rudasi

Hi, I have a file.txt, I need to enter the data in string. Currently my code looks like this, [CODE]#!/usr/bin/perl open myfiles, "file.txt" or die "couldn't find file: $!"; while (<myfiles>){ $string .= $_; } print $string; close(myfiles);[/CODE] The output when I print the string is like hello.c work.c office.c …

Software Development perl
Member Avatar for d5e5
0
116
Member Avatar for bghodsi

The following is the complete coding for moving data from sql to access, I get an error saying that Microsoft JET Database Engine missing (;) at the end of sql statement!!!! Could you tell me what I am doing wrong? Imports System.Data.OleDb Imports System.Data.SqlClient Public Class frmMain Inherits System.Windows.Forms.Form Private …

Software Development microsoft-access open-source sql vb.net
Member Avatar for bghodsi
0
161
Member Avatar for Buttacup

I've been doing research on how processes communicate for the past like 4 months and I still can not answer this very simple question, how do most present day applications communicate within their own framework? Which tends to get me asking another question, do application programmers still program using C++? …

Software Development c++ client-server
Member Avatar for Buttacup
0
191
Member Avatar for Ja14

This is as much of a question about algorithm as it is about code. I’m training monkeys to input data into a keyboard in the form of a table. I have created a special keyboard with nothing on it but numbers 0 - 9, a period, tab key and a …

Software Development c++ matrix-multiplication
Member Avatar for Ja14
0
130
Member Avatar for Stefano Mtangoo

Hi guys, I have been away Python for long now. I need to brush with small project that will be downloading images from give url. I give url and it crawls through all pages in give location and its subfolders and download image. Now two challenges: 1. Crawl through all …

Software Development image python
Member Avatar for Tech B
0
199
Member Avatar for Cap'nKirk

Hi, firstly, sorry about the title of this thread, I couldn't really think of one to explain what I am trying to get at. In my app I have an XML file that is loaded on formload and looped through to extract the required data into a listbox. That bit …

Software Development xml
Member Avatar for Cap'nKirk
0
136
Member Avatar for rb3rd

Good day! We have to push an input XML file (see format below) thru an XSLT to transform it to a regular XML which can be read by our 3rd party software. The problem is, the XSLT will only store 1 set of "Identifier" and its subsequent "Quantity" values. I …

Software Development xml
Member Avatar for rb3rd
0
144
Member Avatar for ssmg

Hi everyone, How do I make sure that user input is of integer data type. not char nor alphanumeric..? when the user inputs character string or alphanumerics it should output "Please enter an integer" Is there sopme wayh to do this? Thanks.

Software Development c++
Member Avatar for hypernova
0
432
Member Avatar for macca21

Here's a question from my assignment, I need HELP! i'm after a basic structure of code that I can work from. pls try explain steps in code. THANX Create an application that utilizes your Order class to implement a simple Order tracking system. To do this your system must be …

Software Development python
Member Avatar for woooee
0
94
Member Avatar for G-nom

Hello In my program i have a matrix the code for which is [CODE] test = [ ["x" for x in range(5)] for y in range (5) ] for y in test: print " ".join(map(str,y))[/CODE] which prints something like: x x x x x x x x x x x …

Software Development python
Member Avatar for woooee
0
114
Member Avatar for faa77

Hi, im trying to find out the process name/id which caused a registry key change? Im using an example from codeproject as my basic template to build up from: [url]http://www.codeproject.com/KB/system/registrymonitor.aspx?msg=3475799#xx3475799xx[/url] I've also borrowed a class which helps getting the process owner (as you cant access handles of System processes?) from: …

Software Development
Member Avatar for faa77
0
156
Member Avatar for roachae

I'm trying to get my items in my domainUpDown control to spin for a few seconds rather than just increment/decrement one item at a time and then stop randomly on any item, but not sure how to go about it. I have the Wrap property set to True so the …

Software Development
Member Avatar for roachae
0
97
Member Avatar for judithSampathwa

hi there how can i make the datadrid view edit and read, i have a button called edit when the user clicks it the cells can be editable ,or else the datagrid view in read only mode how can i change the modes in code, programatically thaxxxxxxx

Software Development
Member Avatar for judithSampathwa
0
174
Member Avatar for sdhawan

Hi, i am getting error Line 1: Incorrect syntax near 'Valuesstuntto'. and its an sql error.Can anyone help me with this thanks. [code] using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using GermanDict; using SimpleFrenchDict; using System.Web; namespace DicttoData { …

Software Development dataset web-server
Member Avatar for sdhawan
0
347
Member Avatar for daniel88

Hi guys, Well, I am currently taking a C++ course focusing on learning about object-oriented design concepts, including polymorphism. The assignment I am currently working on involves the creation of a point-of-sale system. The details of the problem are quite involved and challenging (for me, at least!). I am determined …

Software Development c++
Member Avatar for daniel88
0
163
Member Avatar for Isaaac

So I've got some lines in my richtextbox, but when i click btnSaveLog, it saves, but everything is on one line... I have to use a richtextbox to show all info. I've seen it does show the lines with Wordpad, but i'm saving it as a *.log file, so i'm …

Software Development
Member Avatar for Isaaac
0
828
Member Avatar for noobday

I've been trying to use member functions from a class (prototypes define in counter.h) in my main file. The class implementation is in file counter.cpp and i am trying to compile countertest.cpp. The error message is : g++ countertest.cpp Undefined symbols: "counter::counter()", referenced from: _main in ccmTnGJX.o _main in ccmTnGJX.o …

Software Development c++
Member Avatar for daviddoria
0
153
Member Avatar for PierlucSS

I'm currently developping an app that is going through all the files on a server and checking every single hrefs to check wether they are valid or not. Using a WebClient or a HttpWebRequest/HttpWebResponse is kinda overkilling the process because it downloads the whole page each time, which is useless, …

Software Development
Member Avatar for Ketsuekiame
0
170
Member Avatar for yongj

I know that the .txt file is being opened correctly, however, I don't know why the getline function is not storing the first line and outputting it correctly. [CODE]//Joseph Yong //CSC2430 //Homework 7 //Main File #include <iostream> #include <fstream> #include <string> #include <iomanip> #include "Customer.h" using namespace std; Customer cust; …

Software Development c++
Member Avatar for Ketsuekiame
0
151
Member Avatar for leowasif

hi every one, i make a application in C# visual studio that store username and passwords or students now i want to make a login form in c#. it is window form based application (GUI) not Cmd base:- my main objective is that first my application check that whether username …

Member Avatar for leowasif
0
104
Member Avatar for Sandhya212

Hi, I have code as follows wherein I pass a 2D array to a function and want to receive this array with its contents tripled. [CODE]#include <iostream> #include <cstdio> using namespace std; int** test2 (int arr2[][4],int mul){ for (int i=0;i<2;i++){ for(int j=0;j<4;j++){ arr2[i][j]=arr2[i][j]*mul; } } return arr2;//sending back the address …

Software Development c++
Member Avatar for Sandhya212
0
459
Member Avatar for Steven.T

Write a spell checking tool that will identify all misspelled word in a text file using a provided dictionary. The program will accept either one or two command line parameters. 1. The first command line parameter is the name of the text file that will be checked. 2. The optional …

Software Development python
Member Avatar for TrustyTony
0
1K
Member Avatar for schoenfelder.p

I'm trying to teach myself classes. I decided to create a class to represent a date. It's more for me to learn than to actually be useful. When I have the variables month, day, and year under private setting, the program will not compile (I am using Dev C++). When …

Software Development c++
Member Avatar for Ketsuekiame
0
148
Member Avatar for steveh44

Hello, I'm new to XML and working on a searchable movie reader application which will read an XML file called MovieData.xml. The XML file contains the following nodes: Example, [code=text] <movie> <title>Silence of the Lambs</title> <disc>5</disc> <year>1991</year> <director>Unspecified</director> <cast>Unspecified</cast> <genre>Horror</genre> <riptype>DVDRip</riptype> <codecvideo>DIVX</codecvideo> <codecaudio>MP3</codecaudio> <imdbrating>8.7</imdbrating> <comments>Some Comments Here</comments> </movie> [/code] To …

Software Development xml
Member Avatar for apegram
0
140
Member Avatar for sadaf K

plz tell me .....how can i put the textboxes values of form 1...itni form2 textboxes at load time.....?

Software Development
Member Avatar for sadaf K
0
73
Member Avatar for judithSampathwa

hi there, i have a datagrid view in C#. in it it have to combo box columns and three text box columns, what i want is when i select a value fron the datagridview combobox column i want to get the data from the database and display it in the …

Software Development c# display
Member Avatar for judithSampathwa
0
168
Member Avatar for tuomari

I'm trying to return a dataset from another function to be used in another function, but i am running to trouble. So i have this Binddata function which populates the dataset and then returns it, that goes thru the debugger and runs fine at my ASP.NET page. But when i …

Software Development asp.net dataset
Member Avatar for tuomari
0
147
Member Avatar for dhruv.mani

hey !! i am working on a project for development of dynamic crawler .. can anyone help me out ?? suggest me some code for implementing it and ebooks..

Software Development java open-source
Member Avatar for jwenting
0
92
Member Avatar for sparkle_jam

Hi guys, I'm having a few problems with my code. I run the program and input 10 users for my account system, but when I try to recall the values for any account, I can only call the first balance I entered. I've been looking at the code, trying to …

Software Development c++
Member Avatar for sparkle_jam
0
129
Member Avatar for macca21

OK, how do I make this program allow the user to modify the price of items and save and load the modified catalog? i've spent ages trying and failing. pls help! [CODE]'''maintain a catalog''' def main(): global catalog loadCatalog() while True: pick = showMenu() if pick == 0: break elif …

Software Development python
Member Avatar for Lizzard013
0
91
Member Avatar for Learner7

Hi, I have the following code in my form. I would like to retrieve data from the MS Access database to ListView1. What will be the code? [CODE]Public Class frmContacts Dim inc As Integer Dim MaxRows As Integer Dim con As New OleDb.OleDbConnection Dim ds As New DataSet Dim da …

Member Avatar for kvprajapati
0
70
Member Avatar for LeafProduction

Helllooooooooooo There..I'm new here..and there's something i want to ask ..Please help me if you don't mind..^^ Is it possible for me to restrict my desktop application only for 1 computer..can anyone teach me how to do that?or maybe gimme some references or ebooks for it ..thanks a lot .. …

Software Development vb.net
Member Avatar for etftw
0
93
Member Avatar for jank.iris

Hai there, Now im doing to display data in XML file to many textbox.. Can anyone show me how to do that..Thanks Here i give u the sample XML file: [CODE=xml]<ClearanceLogItem> <RecordID>C73B5191-C426-4306-8FDE-26D41773C895</RecordID> <TxnTimestamp>20100324154140</TxnTimestamp> <SiteID>1708</SiteID> <ClientID>MAG02</ClientID> <MoveType>1</MoveType> <TxnStatus>0</TxnStatus> <FailureType>4</FailureType> <WLStatus>0</WLStatus> <DocType /> <DocNo /> <BearerName /> <DOB /> <DOE /> <Nationality …

Software Development c# display xml
Member Avatar for jank.iris
0
167
Member Avatar for dwel

i'm using VB.NET AND SQL SERVER AND HAD PROBLEM TO RESTORE PREVIOUSLY BACKUP TEXT FILE.

Software Development client-server sql vb.net
Member Avatar for dwel
0
151
Member Avatar for Euphan

The queue class needs to inherit protectedly from the list class My code won't compile because of this line towards the bottom listPtr = &myqueue; if i comment out this line, it compiles and runs, but without this line i can't do what i want. I need this line to …

Software Development c++ linked-list queue
Member Avatar for griswolf
0
170
Member Avatar for kashimushi

My Question: I have created a text file named it kashif.txt and i have placed this file in the same folder where .exe and .ccp of this program is placed but file is not opening. My code is as under. #include <fstream.h> #include<iostream.h> main() { char name[100]; char sal[100]; char …

Software Development c++ file-system
Member Avatar for chiwawa10
0
87
Member Avatar for Veneficae

[I]EDIT: For a console application, not sure if someone can add that to the end of the title?[/I] I could only think of it as a function, as I'm not too heavily into C# just yet. What I'm doing is creating a MUD-style game as a console application, so players …

Software Development
Member Avatar for Veneficae
0
527
Member Avatar for kerek2

Hi all, I'm really need your help regarding how to insert image into blob field in Firebird/Interbase 6.0....I'm using connection trough ODBC ( "DRIVER=Firebird/InterBase(r) driver;UID=SYSDBA;PWD=masterkey;DBNAME=c:\ibss\database\ibssdemo.gdb " I can manage to pull into SQL Server 2008..but not for Interbase....can anyone help me...here my code that giving error...(SQL -104) [CODE] If Not …

Software Development image vb.net
Member Avatar for kerek2
0
973
Member Avatar for ranit

hi this is a program to perform insertions and deletion in doubly link list...

Software Development c++
Member Avatar for griswolf
0
667
Member Avatar for elizabeth mwash

hi everyone, you know the same way you can set the label.text to have the same text as the one you fill in the textbox; mylabel.text=textbox1.text. i realized that that happens only when both the label and the textbox are in the same form. is there a way that a …

Software Development
Member Avatar for finito
0
97
Member Avatar for Agent-of-Chaos

hi, i have this function.. [CODE] Sub DrawScreen(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint Dim myPen As Pen myPen = New Pen(Color.Blue, 2) Dim gr As System.Drawing.Graphics = e.Graphics gr.DrawRectangle(myPen, 1 + x + (i * 4), y + (j * 4), 1 + x + (i …

Software Development vb.net
Member Avatar for Luc001
0
141
Member Avatar for randy03

i am currently new to c++ coding and i have been working on this code for a class, i am suppose to get emails from a .txt file and the program reads each line of the file analyzing each and every char of every line to see if it is …

Software Development c++ email
Member Avatar for iamthwee
0
2K
Member Avatar for becdudek

Hey, im getting the following error unreported exception Exceptions.IllegalValue; must be caught or declared to be thrown this is my method where im getting the error and i want to know why im getting this error because i declared that the exception was to be thrown. is it something to …

Software Development java queue
Member Avatar for becdudek
0
106
Member Avatar for havejeet

Hi friends, I have a checkedlistbox control on my windows form. Now when Application runs, every item is unchecked and user checks the items as per his choice. I want that - next time when user runs the application - checkedlistbox should be loaded with the same items checked. Meaning …

Software Development
Member Avatar for kvprajapati
0
865
Member Avatar for becdudek

Hey Guys, i am supposed to write an implementation of The PriorityQueue interface in this user defined package, this is the first time im using iterator and so im having trouble. at the moment im getting the following error message [CODE]PriorityQueueLinked.java:11: PriorityQueueLinked is not abstract and does not override abstract …

Software Development java queue user-interface
Member Avatar for becdudek
0
210
Member Avatar for boyz

Can anyone tell me the difference in JDK & SDK? I believed till now that both term are same. ...but SunMicrosystem tell both are different. (You can find it at Sun's website) So what is the difference in these two terms?

Software Development java
Member Avatar for kvprajapati
0
484

The End.