132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for sk1017

Can some one please do a small XML / ASP coursework for me... I have no idea in the topic.. Had been sick for a couple of weeks and now the cw is due in August.. I am ready to pay for it as well... Please email me on [email]sk1017@mdx.ac.uk[/email] …

Software Development xml
Member Avatar for xml_looser
0
85
Member Avatar for oall

Hi all! Does anybody know how to generate a makefile from a visualStudio project? I kind of remember this was possible years ago, but can't find this option on the VisualStudio Express edition 2008 I am using now... I have to transfer projects from VS to eclipse and need the …

Software Development c++
Member Avatar for oall
0
340
Member Avatar for deja_vu

Hi all. Is it possible to apply a checkbox in column header? If yes, how can this be done? And also can different types of options be provided to the user like in Win Vista ? Please reply soon I need it badly. Thanks.

Software Development vb.net
Member Avatar for Piya27
0
78
Member Avatar for laks_samy

hi i am working in vb.net 2005, i am woring network system (my system is client system) how to get my server drive and dir list for the purpose of database backup any one help me. thanks

Software Development client-server vb.net
Member Avatar for samir_ibrahim
0
190
Member Avatar for chathuD

hi im again,,,,,, thanx for daniweb i get the solution to my 1st problum. now the second problum; i have a textbox on my windows form and i need to validate it. rule is user must not able to press any A-Z && a-z && !-* keys on the key …

Software Development
Member Avatar for Ramy Mahrous
0
151
Member Avatar for nivi_14

For instance, let's say I have two images preferably jpeg/bmp that are 128x128 - I would like the code to stitch them together so the resulting image is 256x128. I want a c++ program for it..is it possible using files in c++.

Software Development c++
Member Avatar for Salem
0
192
Member Avatar for jayz_raul

hye all....currently im developing a system using active expert sms and pager toolkit. i need to do automation code for receive and sending SMS. Anyone out there can help me out?? im really cant figure it out?? thankz

Software Development vb.net
Member Avatar for SaLMaN-2
0
137
Member Avatar for elidotnet

Hello, i need help in some subject i can't handle with for few days. lets say i have form that handle with some rent order (like....billiboards) after the user choose the number of the billboard and the Location and everything else, he need to choose 2 dates. one for the …

Software Development
Member Avatar for elidotnet
0
133
Member Avatar for lancevo3

I am writing a method that has to do with strings and I was stuck on how to go about coding this. Any help getting it started or tips at all would be great. Thanks. MyString::MyString(const char* s) This constructor takes a pointer to a constant C-style string as its …

Software Development c++
Member Avatar for lancevo3
0
339
Member Avatar for MONODA

I am making a script which manipulates ID3 tags. I want a certain function to be used on every file in a directory recursively. I have written the script but it is not behaving like I would expect in some cases. If I give it exec perms and put it …

Software Development python
Member Avatar for MONODA
0
88
Member Avatar for tomtetlaw

I was looking through the source code to a game, and I came accross this line: [code=c++] static ConCommand name##_command( #name, name, description, flags ); [/code] I was wondering what all the hashes(#) do ??

Software Development c++
Member Avatar for Salem
0
226
Member Avatar for tomtetlaw

I want to be able to find a class with a variable in it: [code=c++] for(int i=0;i<classes.size();i++) { if(class[i].name == classes[i]) return class[i]; } [/code] I think class would be a list of classes that are instanced. where classes is a vector of strings. Is this possible?

Software Development c++
0
65
Member Avatar for rizillion

Hi! I have added an action listener for a button. When i click this button it should go to the second tab in the tabbed pane which i have created. I have created two tabs as follows: [CODE] tab.addTab("Change Password", panel1); tab.addTab("Add new User", panel2); [/CODE] and the action listener …

Software Development java
Member Avatar for llemes4011
0
2K
Member Avatar for Pokenerd

Hi, I'm somewhat new to C# and I've created a numbers (backspace, delete, negative, and decimal) only text box. However the way I'm testing whether to allow for negative numbers only allows them to be added if they are typed as the first character. Below is in an if statement …

Software Development regex
Member Avatar for Pokenerd
0
134
Member Avatar for theashman88

Hey I just got this book Accelerated c++ and it seems pretty good, but I'm having one problem in chapter 4. When I compile my grading program in chapter 4. I can't get the final version to work. I believe I'm supposed to enter a students name followed by grades, …

Software Development c++
Member Avatar for tux4life
0
247
Member Avatar for clbembry

I can't get MiniFrames to work and I really have no idea how to. I'm a complete noob when it comes to wxPython as I just started learning today. Heres the code for my GUI so far and I want to add a mini frame as a vertical toolbar along …

Software Development gui python
Member Avatar for lllllIllIlllI
0
265
Member Avatar for dp_neo

Hi, I am trying to schedule a python compiled file to run using windows scheduler. But it does'nt run successfully The script writes to a SQL server database installed on the same machine as python and the script resides on the same machine. The script imports the urllib, sys, threading, …

Software Development python windows-server
Member Avatar for dp_neo
0
110
Member Avatar for samm22

what do u mean by this code below? 1)vector<int> V(alpha); 2)vector<int> V(vector<int>) Whats tat declaring? Its not normal vector declaration. Plz help. Thnx

Software Development c++
Member Avatar for samm22
0
87
Member Avatar for serkan sendur

hi guys, i want to be able to have three different names for one program. to do that i can create two other setup projects and change the product name, but i dont feel like it is proper way of doing that. so i need to run setup project with …

Software Development
Member Avatar for serkan sendur
0
85
Member Avatar for elidotnet

i have register form with some information about users, there is few textbox, some dateTimepicker, and some combo box that takes the data from a database (ODBC). the textbox and the datepicker works fine and insert into the data but i cant handle the data bound combo box. PLEASE HELP …

Software Development
Member Avatar for sknake
0
86
Member Avatar for Ather14

Hi; I want to add a string of numbers(e.g 9999) which are stored in a text file. [code] #include <conio.h> #include <stdio.h> #include <stdlib.h> void main (void) { clrscr(); char ch; int x=1; long sum=0; long integer; FILE *fptr=fopen("thousand.txt","r"); while (ch!=EOF) { ch=fgetc(fptr); ch= .....................I AM STUCK HERE.............. } fclose(fptr); …

Software Development c++
Member Avatar for Ancient Dragon
0
977
Member Avatar for dcm882003

I'm stuck on my MAXROW is suppose to be 40 but everytime I input it I get a weird output. I'm pretty sure my counter is correct. Can someone please take a lookk and direct somehow. [code] #include <stdio.h> #include <stdlib.h> #define MAXROW 15 #define MAXCOL 6 #define ValuesPerLine 10 …

Software Development c
Member Avatar for wildgoose
0
124
Member Avatar for buntu

Hey guys, its my first time here, so I'm still a bit shaky. I am a vb.net student and i use vb 2008 express edition; i downloaded some projects from another site of which i wanted to learn projects done by other people. but now to my disappointment i could …

Software Development vb.net
Member Avatar for buntu
0
90
Member Avatar for Hiroshe

Is it possible in C to pass a 2d array without eather of the sizes known? Something like this maybe: [CODE=C]#include <stdio.h> void somefunction(int *array); int main(void) { int array[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; somefunction(array); return 0; } void somefunction(int *array) { printf("%d\n", array[3][2]); …

Software Development c
Member Avatar for Hiroshe
0
10K
Member Avatar for rude04

is it possible to set the position of the picture inside a pictureBox? like making a small pictureBox and putting a larger picture inside,,instead of showing only the upper-left most part of the picture,,it would be able to show different parts of the picture..

Software Development visual-basic
Member Avatar for rude04
0
120
Member Avatar for daprezjer

Pretty new at shell scripting. My server was hacked and instances of links for viagra were placed in it. I have lots of sites, so I need to search for all instances of "viagra" and list the files, so I can go remove the intrusions. Can this be done using …

Software Development shell-scripting
Member Avatar for Fest3er
0
116
Member Avatar for daviddoria

I don't understand why can you do this: [code] Employee *emp; if (condition1) emp = new Employee(); else if (condition2) emp = new Manager(); [/code] but not this: [code] Employee emp; if (condition1) emp = Employee(); else if (condition2) { emp = Manager(); [/code] Maybe this is a TERRIBLE idea, …

Software Development c++
Member Avatar for Ancient Dragon
0
96
Member Avatar for lakshay

Hi JavaExperts I have done few program in Java using Bit wise AND OR operator... But Not getting the proper output or May be I am doing something wrong Can any body explain why I am getting output class Bit { public static void main(String args[]) { System.out.println(010|4); } } …

Software Development java
Member Avatar for llemes4011
0
111
Member Avatar for mypicturefaded

Right now I am using the 3.5 Framework to get the users first and last name, and email address. [CODE] username = System.DirectoryServices.AccountManagement.UserPrincipal.Current.GivenName + " " + System.DirectoryServices.AccountManagement.UserPrincipal.Current.Surname; [/CODE] I had to dumb the project down so it just uses the 2.0 Framework, and AccountManagement is not included. Is there …

Software Development
Member Avatar for mypicturefaded
0
365
Member Avatar for shankbond

Hi, Guys I have a peculiar problem here, I need to display data from two tables having no fields at all common and want to display them in one gridview on the click of a radio button . If radiobuttton(1) is selected then data from table one will be displayed …

Software Development
Member Avatar for lighthead
0
145
Member Avatar for serkan sendur

what is the windows script to add shortcuts to all users desktop? thanks

Software Development shell-scripting
Member Avatar for serkan sendur
0
92
Member Avatar for wotthe2000

Hi, I'm having a bit of a problem outputting to a file. I am trying to output each element of a list into a document on a new line and I can only get it to work when all the items in the list are on the same line. The …

Software Development python
Member Avatar for Ene Uran
0
73
Member Avatar for lblazer05

Hello guys, I am new around here. Anyways, I am having a problem with reading some information from a text file. Sample text file: density = -1.0 number = 2004 Ok so what do I use in order to get the number -1.0 from the text file? Also, what if …

Software Development file-system python
Member Avatar for Ene Uran
0
141
Member Avatar for AirGear

Sir, i have a numerical method project. I want to be different, so i try to make a program that can read user input, ex : sin(x+3)^(x*3^x), and find the root of the equation. I already implemented Reverse Polish Notation, and also shunting-yard algorithm. But, i found out that all …

Software Development algorithm c++ gui
Member Avatar for AirGear
0
169
Member Avatar for nirav99

hello, yesterday i was learning inheritance in C++... My teacher has told me that "Inheritance means using properties(variable,function etc) of one class to another class." but when i do it with example its not working.. [CODE=C++] #include<iostream.h> #include<stdio.h> class abc { int a,b,c; public: void exp1(); }; class xyz:public abc …

Software Development c++
Member Avatar for Tom Gunn
0
147
Member Avatar for Chris11246

I want to activate a sub by clicking the left mouse button but i cant make it work i tried private sub test(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.MouseDown but it says it doesn't work because they dont have a compatable signature

Software Development vb.net
Member Avatar for kvprajapati
0
128
Member Avatar for mimi_ted

i am working on a project. i am doing my project using vb.net. and i have added a web component to some of the dot net's form. what i would like to know is how can i access data i have entered in the dot net form being in the …

Software Development vb.net
Member Avatar for kvprajapati
0
127
Member Avatar for e^x

Dear Friends, In my C# desktop application, I get the startup path from Application.StartupPath.Then my program creates a batch file, which changes the directory (with cd) to the above startup path (since sometimes it runs batches which changes the current directory). In English windows it works great. But on Spanish …

Software Development
Member Avatar for sknake
0
160
Member Avatar for serkan sendur

some functionality is not available in .NET class library, so we need to use one the items in the title of this thread. My question is when to refer to which one. Thanks

Software Development api windows-api
Member Avatar for serkan sendur
0
183
Member Avatar for Emerald214

1) This is exactly what I'm encountering. I googled for that but none of those posts talked how to do this: member function B::fb makes a call to _beginthreadex with thread function which is a member function ( A::fa ). 2) It generates error C3867: 'A::fa': function call missing argument …

Software Development c++
Member Avatar for Emerald214
0
205
Member Avatar for csayantan

how to compile c++ program when we r using two different functions which are defined in different file(s) under same directory in linux gcc???

Software Development c++
Member Avatar for Tom Gunn
0
189
Member Avatar for S2009

Hi all I am creating a windows application. I am now concentrating on the Reporting Module of my Application. I have two ideas to do this task. Either through Crystal Reports or using the Windows Forms and placing the Data Grid View. Can any one suggest me which option should …

Software Development c# pdf
Member Avatar for S2009
0
110
Member Avatar for functionalCode

I am wondering if anyone can point me in the right direction so I can save the returned identity value from one of my stored procedures. How can I save it into a variable. Any help or examples is appreciated thanks!

Software Development sql
Member Avatar for Ramy Mahrous
0
104
Member Avatar for S2009

Hi all, I am developing a windows application. I have 3 forms: I want to change the backcolor of all the 3 forms to the color selected by the user. I have written the following code to do this. But the backcolor is not changed. [code] In Form1 ColorDialog c1 …

Software Development
Member Avatar for sknake
0
106
Member Avatar for mundetas

Hi, I was wondering if someone could please help me. I have an access database with two tables. One table is Movie and the other is Genre all in a relationship. I have a foreign key in Movie pointing to Genre. My Movie table looks like this "MovieID, MovieName, GenreFK". …

Software Development
Member Avatar for jbisono
0
112
Member Avatar for George2

Hello everyone, I am looking for some approaches which can prevent my .class file being decompiled. My questions are, - I have heard that there is an approach called "obfuscated", I am wondering whether it is the best approach which meets my goal. If it is, where is the best …

Software Development java
Member Avatar for masijade
0
146
Member Avatar for chathuD

i need to creat a search engine on windows form which will auto genarate the word when i enter first two or 3 leters in the search text area. eg; lets think i have a data base that contain items cold"java,c sharp,dotnet" so when i typing on the text area(search …

Software Development
Member Avatar for chathuD
0
93
Member Avatar for erialclaire_238

I would like to know how i could continue to another form(form2) in visual fox pro when i use a command button next in form1.

Software Development visual-basic
Member Avatar for alcskid
0
80
Member Avatar for Tank50

Hi I Want to develop the application ,that use for get how much data I download from the internet.Please give me idea. Thanks Tank50

Software Development
Member Avatar for Tank50
0
135
Member Avatar for shamiliroy

Dear Sir/madam, I am working on Solaris 8. dbx is showing memory access error in the following line: [code] template<class keyType_t, class dataType_t> int WrapperC<keyType_t, dataType_t>::insert(keyType_t keyVal, dataType_t& info_t ) { pair<map<keyType_t,dataType_t>::iterator,bool> retItor; retItor = subsInfoMap_obj.insert( pair<keyType_t, dataType_t>(keyVal, info_t ) ); ........ }; WrapperC class is derived from an abstract …

Software Development c++
Member Avatar for tux4life
0
98

The End.