199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for kkv

I am a self learner of vb.net. I have planned 2 do my academic project with vb.net, and iam looking 4 some new and challenging concept. So someone, kindly suggest me some gud challenging concept or abstract 4 my project.

Member Avatar for bector
0
120
Member Avatar for jimmer12

hi i have a numericupdown box on my first form and in the next form i want the number selected in the numericupdown box to produced that number of text boxs in the next form.

Member Avatar for bector
0
107
Member Avatar for Ravenous Wolf

is there still a point in learning classical data structures and algorithms when the dot net framework and even the java API has collections which can do everything that these classic algorithm does? the reason why i ask is that i do not want to waste my time learning them …

Member Avatar for Ravenous Wolf
0
141
Member Avatar for sbv

hi friends, i have to Update a ASP site for designing. The existing site is designed such as page by page. No any CSS template is used. And now i want to Update it's designing in new view. Also the user don't want that i use the CSS for new …

Member Avatar for sbv
0
97
Member Avatar for harrysc

i want to design and implement as application that reads an arbittary number of integers that are in the range of 0 to 50 inclusive and counts how many occurences of each number are entered, after all inputs are processed , print all of the values ( with the number …

Member Avatar for david.crawford
0
103
Member Avatar for lafalot

Hi, For a reservation system, I would like to be able to highlight those reservations where the dates and times are duplicates, so those confirming the reservations will easily see double-bookings. So, for the following list of dates & times Jan 1, 10-3 Jan 2, 4-5 Jan 1, 10-3 Jan …

Member Avatar for lafalot
0
134
Member Avatar for ppat

hello everybody, I am working on .net application (asp.net and vb.net and sql server as backend). How can I provide security to my web application ? Please anybody tell me about it? Thank you,

Member Avatar for Paladine
0
109
Member Avatar for snifer

hi friends, i had a problem when connecting the database to the asp.net. My database is SQL server 2005

Member Avatar for Paladine
0
107
Member Avatar for Thew

Hi, I need to send, or set up some variables in another application. Is there any way how you can do this? For example, from one application you can set the progress value of progress bar in another application. PS: I want to know tha way how to do this, …

Member Avatar for Duoas
0
96
Member Avatar for fish_cracerks

I am having a problem with my program and I need some help. Anything would be greatly appreciated. I am running a guessing game. [COLOR="Red"]Syntax error, insert "while ( Expression ) ;" to complete DoStatement Syntax error, insert "}" to complete MethodBody[/COLOR] [COLOR="Green"]Here is my code:[/COLOR] import java.util.Scanner; import java.util.Random; …

Member Avatar for VernonDozier
0
236
Member Avatar for fish_cracerks

Got that one now for another problem. At the end I want them to either enter an "y" or an "n". Depending on if they want to run the program again. I need help doing that. Exception in thread "main" java.lang.Error: Unresolved compilation problems: The local variable y may not …

Member Avatar for jnetpro
0
128
Member Avatar for kako13

Hi, I have been searching in google for an algorithm for sort a dynamic array. I must said that the information in the Internet for sort dynamic array is very limited. However, I found bubble sort for dynamic array, but it don't wanna work. It is inside a class definition …

Member Avatar for kako13
0
4K
Member Avatar for Conqueror_2

I get an error on the following code. It seems I can´t use a function which belongs to a class as an argument for "genericfunction". Any help on how to overcome the problem would be great. Thanks. [CODE] //Main int main() { teste teste_classe; // this works fine cout << …

Member Avatar for Duoas
0
93
Member Avatar for RossSCann

Does anyone know of a source of mouse functions for a console application in the visual C++.net developement environment package? Thanks, Ross

Member Avatar for Duoas
0
181
Member Avatar for Racoon200

Problem: I keep getting this error when I press the button to trigger Publish from 2nd time and on. Error: [CODE] AttributeError: 'NoneType' has no attribute 'sendall' [/CODE] The error is caused basically by every server.(any ftp host action) I say this because the function the button called said: [CODE] …

Member Avatar for Racoon200
0
188
Member Avatar for Matt You

I'm trying to make a function that can scan a char array, and finish it's business when it comes to a '\0'. so here is the for loop i came up with: [CODE]for( i=0 ; charArray[i] != '\0' ; i++ )[/CODE] But here is an example of entered data: "1234 …

Member Avatar for Matt You
0
504
Member Avatar for rickarro

I'm having a little trouble understanding the mysql_connect and putting the user, passwd, database in a file outside of the web root. Can someone explain this to me like i'm 2 :) mysql_connect establishes the connection to the db, and the way I understand it is..I can put the username …

Member Avatar for rickarro
0
131
Member Avatar for nljavaingineur

Hello developers, Is there something wrong with my code? Im getting the error message saying my method, actionPerformed_Plus cannot be applied to the () in actionPerformed_Plus. [CODE] public void button2_actionPerformed_Plus(ActionEvent e) { actionPerformed_Plus(); //says the method below cannot apply here??? } public void actionPerformed_Plus(ActionEvent e){ if(firstTime) { String firstNumber; firstNumber …

Member Avatar for nljavaingineur
0
99
Member Avatar for blcase

[code] #include <iostream> #include <string> using namespace std; class Movie { private: string director, title, genre, cast, rating, release; int length; public: Movie(){ cout<<"constructor w/ no parameters called"<<endl; length=0;} Movie(string d, string t, string g, int l, string c, string r, string re){ director=d;title=d;genre=g;length=l;cast=c;rating=r;release=re;} string getDirector(); string getTitle(); string getGenre(); …

Member Avatar for Duoas
0
192
Member Avatar for lostandfound

Hello, I have been trying with no success to transfer a recordset from one form to another. I have declared in Form1 that [CODE]Public myRS As ADODB.Recordset[/CODE] All works lovely in Form1 In Form2 when I use [CODE]Private Sub cmdFail_Click(ByVal myRS As ADODB.Recordset)[/CODE] I get an error message at runtime …

Member Avatar for hkdani
0
181
Member Avatar for ramvenkat

“Message Conversion Tool” acts as a tool which is used to convert the request (message) in one format to the standard format.Using this tool we can receive the request in any format, convert it into the standard format and send the response immediately.The request format may be of any kind …

Member Avatar for jwenting
0
106
Member Avatar for shreevidya

i am doing a project where i require some message from php file to be transfer to c.is it possible to do. if so can u specify certain links for looking and studing too area

Member Avatar for digital-ether
0
96
Member Avatar for AKJo

Please you clever guys. I have an old Delphi and get "Code segment too large" when I try to run my program. I don´t even know how I can use "Code segments". After using built in help I tried to insert {$S 50000} in the source code, but with same …

Member Avatar for Duoas
0
297
Member Avatar for elisa751

I wrote code to sort an Array using the bubble sort method. The dynamic Instruction is really long about 60k, i need to reduce it to about 20k. Could someone help me optimize the code or give me tips on how to do that? Or if there is a better …

Member Avatar for Duoas
0
119
Member Avatar for bharathi_n_r

Hi all webbers, I have a problem of generating numbers automatically.... Actually i have a textbox and the textbox should autogenerate a number everytime the page loads or whenever the user clicks the next button after filling in the values..... Help me out dudes.......Sample code would help me a lot.....

Member Avatar for Jx_Man
0
345
Member Avatar for rjain

please help me in developing editor same as C++...it must look as if i have developed C++ itself...all menus and functions?? please reply. thanks

Member Avatar for Salem
0
255
Member Avatar for Webbsta

Firstly I'm not sure where to put this post because it falls under java and vb.net, but since I'm guessing that the main part needs to be done with my java files, i put in here. OK, so i am trying to create a console application to run my java …

Member Avatar for Webbsta
0
175
Member Avatar for ConfusedMuchMor

Hi all I've created an application, it worked fine in the enviroment, then i've gone into bin; debug and copied windows application family, placed it on my desktop and tried to run it. It wont open and throws up a error(WindowsApplication1 has encountered a problem and needs to close.). If …

Member Avatar for Ramy Mahrous
0
104
Member Avatar for sqlchopper

Here is html <asp:datagrid id="mrpDataGrid" style="Z-INDEX: 289; LEFT: 576px; POSITION: absolute; TOP: 512px" runat="server" Width="160px" Height="90px" autogeneratecolumns="False"> <AlternatingItemStyle BackColor="LightGray"></AlternatingItemStyle> <Columns> <asp:BoundColumn DataField="SCHEDULE_DT" HeaderText="Scheduled Date" DataFormatString="{0:d}"></asp:BoundColumn> <asp:BoundColumn DataField="SCHEDULE_QTs" HeaderText="Summed Quantity"></asp:BoundColumn> </Columns> </asp:datagrid> I need to get values of both bound columns to use in calculations. TIA javascript newbie

Member Avatar for sqlchopper
0
397
Member Avatar for 81griffinIT

but i hope someone can point me in the right direction. here's the story 2 pc's, one upstairs with database one downstairs used to access and make changes to. This was working no problem for months. Then the downstairs pc needed a new AGP video card, easy install no configuration …

Member Avatar for Ramy Mahrous
0
86
Member Avatar for kharri5

Hello, I am currently writing a powerpoint presentation that is an interactive survey. It takes in a file of data, and adds it to a big dynamic array. When the user answers questions it picks the data from the array and populates an excel spreadsheet for a final output of …

Member Avatar for kharri5
0
131
Member Avatar for manojkumar2004

Hi all, any idea how to call a C# method from a java class using sockets(need to access remote methods)??

Member Avatar for jwenting
0
92
Member Avatar for Fasola

I am having trouble finding a good open source code for a good Event Calendar I just need a regular calendar that will allow users to check availability of conference room and make a reservation for available conference rooms please help!

Member Avatar for SheSaidImaPregy
0
102
Member Avatar for hashinclude

Hi, is it possible to control the output so that one output would replace the one before it ? let me explain, i made a countdown timer, the counting instance is printed out but normally i would get something like this [ICODE]9876543210[/ICODE] what i want is for the counting instance …

Member Avatar for Ancient Dragon
0
101
Member Avatar for rhinocort23

how could i make it so when the person using it looks through the item they want and click a button, it will add it and its price to a list but if they dont want it later, they can then go and remove it? also how can i make …

Member Avatar for rhinocort23
0
98
Member Avatar for Ravenous Wolf

is there any type of control which one can use to display a pdf document? that is put a control on the screen and in this control you display a pdf?

0
61
Member Avatar for kartouss

Hello, I am new to this forum... If anyone knows on AES and its s/w optimization techniques in c++ please help me out I am using the AES code to encrypt and decrypt data.. In my code the plaintext is given in the main program itself it is in hexadecimal …

Member Avatar for kartouss
0
188
Member Avatar for fatihpiristine

hi guys, i did something, few years ago in C# like attaching xml file as database in windows application, so now i m trying to do exactly the same thing but totaly lost in it. got any idea? thanks in advance.

Member Avatar for fatihpiristine
0
41
Member Avatar for pradeep.singh28

hi friends, I am pradeep , i have a PC having configuration as: P-3, 1.2 GHz,256 MB RAM . when i am installing tomcat 5 ,it is starting properly but when I run any JSP page from the browser the message comes as "Server not found" . I have set …

Member Avatar for majestic0110
0
180
Member Avatar for j.arevathi

Hello all, I have got a file that has the informations like this is in a tab delimited form. Chromosom_id fstart fstop Count 1 105 1 14.5 1 105 1 14.5 1 105 1 14.5 1 813 797 4 I would like to get the fstart and fstop and use …

Member Avatar for j.arevathi
0
115
Member Avatar for dexter1984

Hi, I'm a student new to C++, just started learning it for 3 weeks. I just encountered a problem in making a multiplication table as an assignment. Tried alot of methods but still can't figure out what's wrong. [code=cpp]#include <iostream> #include <iomanip> using namespace std; int main() { int input, …

Member Avatar for dexter1984
0
106
Member Avatar for abhi_elementx

I have two classes EmpData and VectorHandler. EmpData contains info abt employees like name and empcode Vectorhandler has a vector which stores Empdata objects . I want to use removeElement() which will delete the object which contains the particular empname/empcode from the vector. This doesnot work: [CODE]v.removeElement(empcode);[/CODE] [B]as empcode is …

Member Avatar for abhi_elementx
0
137
Member Avatar for abhi_elementx

Hello friends , I have a problm accessing my objects in vectors what i am trying to do is store objects ( of a class defined by me) in a vector. I have two classes VectorHandler and Emp_database. In VectorHandler, I have a vector (Vector vect) which stores objects of …

Member Avatar for abhi_elementx
0
210
Member Avatar for sbv

Is any one have code to upload images in asp. I want to store Image caption in database and image in Image Folder.

Member Avatar for sbv
0
84
Member Avatar for sarabhjeet

Actually i need to save the file's name in file menu history whenever we close the application from filemenu's exit button.Whenever i close the application from windows close button the entry is coming to file menu but when i close from file menu exit it should make an entry to …

Member Avatar for sarabhjeet
0
82
Member Avatar for EverUnloaded

[B][B]hi every body i'm new to MS SQL and i want to learn it if any body knows good source or web sites about sql server 2000, i'll appreciate if he lets me know thanx for your help, everunloaded, bye[/B][/B]

Member Avatar for EverUnloaded
0
85
Member Avatar for jagdish.ind

Can i display the text scrolling in bottom of my form in vb.net. if can then plz anyone suggest me how to do. i want to display some texts scrolling at the bottom of my form when i load it. how can i do it in vb.net

Member Avatar for bector
0
116
Member Avatar for shiny123

HI!!! I am doing Face reconition project in vb.net ... so my first module is uploading images and need to store in sql, that images i should retrive in vb.net. so, pl tel me the procedure and coding in vb.net2005

Member Avatar for bector
0
150
Member Avatar for deraj8

I have created an array of struct i am very frustrated beacuse I just can not figure out how to pass this array of struct into a function. here is my created struct and a general idea of what i have been trying [code] #include <stdio.h> void functionOne(MyStruct) struct MyStruct …

Member Avatar for VernonDozier
0
1K
Member Avatar for rhnaeco

hi, i have a series of files like this one: D22 L58 two O12 L58 two Z5 L58 two Z19 L58 two and i want to make the first column into a variable ($var) that will be used in the rest of the shell script This is my awk script …

Member Avatar for ghostdog74
0
141

The End.