64,152 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for justapimp

How do I create a single sql statement that will insert a row into a data table and return the row number back for processing? I tried to use the scope_identity method and find out it works well within a stored procedure environment. If anybody out there have another method, …

Member Avatar for serkan sendur
0
106
Member Avatar for arkaprava

Since Input of ENTITY and of it's attribute is ok I am trying to op the value of the entity and it's attribute details so my modified code abt ENTITY is: package datamodel; import java.io.*; import java.util.*; public class ENTITY{ String entity_name; int no_of_attribute; int no_of_entity; attribute attr1; public ENTITY(String …

Member Avatar for PoovenM
0
178
Member Avatar for hallinan

Hello I'm doing a C project for College.It is a banking system where you take in customer name address etc, Print a statement based on a month by month bases.I need to use binary files I have two versions(well Attempts) of this project the one I'm having biggest trouble with …

Member Avatar for hallinan
0
535
Member Avatar for rwagnes

I have a dialog that contains three spreadsheets of the class CSpreadSheet. I was trying to use the following export function to export the data to a text file: BOOL CSpreadSheet::ExportToTextFile(LPCTSTR FileName, LPCTSTR CellDelim, LPCTSTR ColDelim, LPCTSTR RowDelim, long Flags, LPCTSTR LogFile); My code currently looks something like this: m_Page1.m_patchSummary.ExportToTextFile(fileName, …

Member Avatar for rwagnes
0
573
Member Avatar for bushman_222

I'm creating a client-server style program. The two connect fine and I can send data from the client to the server, The server gets the information correctly However when I try and send data from the server to the client, the client receives empty packets. Upon closer inspection I've noticed …

Member Avatar for jonc
0
319
Member Avatar for eddy556

Please take a lot at this. Tomcat is reporting the variable editQuestion cannot be resolved. [code] <% String key = request.getParameter("edit"); ResultSet columns1 = statement.executeQuery("SELECT * FROM Questions WHERE ID ="+ key +""); while(columns1.next()) { String editid = columns1.getString("ID"); String editQuestion = columns1.getString("Question"); String editAnswer = columns1.getString("Answer"); String editUpdated = …

Member Avatar for eddy556
0
77
Member Avatar for majestic0110

Could someone please explain the difference between GML and SVG. I understand the GML is used to describe geographic data and that SVG is used to describe vector graphics, but how do the two link and what are the other fundamental differences? many thanks

Member Avatar for majestic0110
0
123
Member Avatar for comwizz

Hello everyone, I ahd to make a program for initializing members of a class and displaying them.The members were name , bank account no, account type and current balance. Well , the program works well except for that null pointer assignment is displayed on the screen after correct output.Could you …

Member Avatar for Pranav Aggarwal
0
646
Member Avatar for Ankita B

hi, i have a form with 3 radio buttons and one submit button.on clicking submit i want to navigate to page corresponding to the radio button selected.How can i achieve this?..

Member Avatar for ~s.o.s~
0
83
Member Avatar for serkan sendur
Member Avatar for serkan sendur

i want to have my page scroll to a position smoothly, i use javascript scrollIntoView method to provide scrolling for the page, but it moves suddenly. i want the user to keep trace of where she/he is scrolling. thanks in advance

Member Avatar for serkan sendur
0
109
Member Avatar for majestic0110

Hi all, just another quick question, I have a browse button that I would like to have open a browse dialog box. Now I have tried using : [CODE]folderBrowserDialog1.ShowDialog();[/CODE] in the event handler of the button but I am missing the using system.windows.forms namespace. so another question can be asked.....how …

Member Avatar for SheSaidImaPregy
0
88
Member Avatar for jaasaria

help me run time error.. -2147467259 plsssssss kindly help me... cant detect well the problem..

Member Avatar for jaasaria
0
101
Member Avatar for majestic0110

Hi there, here is my class(that performs an XSLT) [CODE] public void Page_Load(Object sender, EventArgs E) { string xmlPath = Server.MapPath("[COLOR="Red"]Help[/COLOR]"); string xslPath = Server.MapPath(blah blah); XPathDocument doc = new XPathDocument(xmlPath); XslTransform trans= new XslTransform(); trans.Load(xslPath); XmlTextWriter writer = new XmlTextWriter(Response.Output); writer.Formatting = Formatting.Indented; writer.Indentation=4; transform.Transform(doc, null, writer); }[/CODE] So …

0
73
Member Avatar for sir avalanche

ok. so i decided to make a very irritating program that fills the computer its run on with junk. here is what i have done yet: [CODE]#include <iostream> #include <fstream> int main () { int i; ofstream filut1 ("allisdust1.txt"); ofstream filut2 ("allisdust2.txt"); ofstream filut3 ("allisdust3.txt"); ofstream filut4 ("allisdust4.txt"); ofstream filut5 …

Member Avatar for hollystyles
0
162
Member Avatar for n33712

Hi The following code is part of a program i have written: for (var count = 1; count <= password.length-2; count = count + 1) { document.write('*') }; What i want is for the output of the above (which would be a number of characters the password is minus 2 …

Member Avatar for n33712
0
98
Member Avatar for majestic0110

Hi all I am relatively new to ASP.NET and would appreciate a little help with a problem I am having. I have a "login" page that (upon validation of username/password) loads up another page. Now I have both these pages (I am using c# btw) written, however I cannot find …

Member Avatar for majestic0110
0
124
Member Avatar for Begjinner

Hey, I was looking at some old Python topics and they contain nice info, but they also use the PHP tag for showing code - which doesn't work. Maybe these old topics can automatically be changed with the proper tag for python code? Thanks, Lars

Member Avatar for Begjinner
0
107
Member Avatar for jaasaria

it posible to change the skin of the form?? including the command button and other tools?? i would like to design a system that much attractive that the ordinary visual design.. could anyone help me. pleaseeeeee....... jaasaria

Member Avatar for Jx_Man
0
112
Member Avatar for shaikh_mshariq

Thanx to daniweb and all the posters. I have created a program for viewing process and hardware information on windows platform. Now i want to run this program on remote machine. How can i do this. I have administrator permission on that machine. Making dll of this program would help …

Member Avatar for shaikh_mshariq
0
274
Member Avatar for sree22_happy

Hi friends, i have a problem in ajax.The code will get values when i use IE but it doesnt work with mozilla browser.It showing the alert message ? I am adding the code along with this.Expecting the reply soon. var xmlHttp; function getXmlHttp() { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch …

Member Avatar for sree22_happy
0
218
Member Avatar for moffett018@aol

I need help on how to write a program that determines the number of days between two dates input by the user...u have to use at leat one loop structure and i dont know where to start...can someone please help me...i have the input by the user down i jus …

Member Avatar for moffett018@aol
0
88
Member Avatar for dbwalters

Hello, I am working on a program that is using the type DATE to develop a class Event to model events scheduled for dates. This might be a familiar question to some, but, I have run into an error during the compile and I need help in debugging it. Below …

Member Avatar for dbwalters
0
107
Member Avatar for majestic0110

I am thinking about creating a C# program that applies an XSL-T to XML to convert it to HTML. any ideas as to how difficult that might be ?

Member Avatar for Jugortha
0
297
Member Avatar for rickarro

Hey all, Quick question i'm having trouble answering. I've concantinated my variables together and all looks good except for one thing. I want 2 spaces after a colon and am only producing 1. [code] "Thank You!!<br /><br />PERSON:"." ". $row['fname']." ". $row['lname']." [/code] This produces: Thank You!!! PERSON: John Smith …

Member Avatar for m.pontus
0
97
Member Avatar for sree22_happy

hi friends i have a problem in previewing image in mozilla browser.I will give the code. [code] script code <script type="text/javascript"> function loading(img) { document.getElementById('disp').src=img; } </script> [/code] [code] jsp page code <html:file property="productImage" value="${product.productImage}" styleClass="sni_input" onchange="loading(this.value)"/> <img src="" id="disp"> [/code] only few codes are written.I think you can understand …

Member Avatar for sree22_happy
0
226
Member Avatar for naju

I have used trim function as: $myar['mykey'] = trim($value); but the return value to that array is not trimed .. still there are white space before and after the real word.... what might had happen

Member Avatar for naju
0
67
Member Avatar for jaasaria

dude. know to search databse will automatically scrooldown the txtbox? hi.. can any one give me example for this code. that will automatically dropdown the txtbox for the other data in databse.. ^_^ sorry for the explanation... can't explain so well..^_^ jaasaria

Member Avatar for jonc
0
262
Member Avatar for toadzky

Basically I have a table that I generating using javascript. I wrote a function to build the row and I call it a bunch of times with different parameters. I know the individual functions work because I can pull them onto their own page and attach them to an onclick …

Member Avatar for toadzky
0
87
Member Avatar for CloudKill9

Every time I run this program, I get the number the user inputted printed back on the screen infinite amount of times. According to my CS teacher, he wants us to use basics, no arrays or strings. The user is suppose to type in several numbers followed by -999. Say …

Member Avatar for CloudKill9
0
108
Member Avatar for jaasaria

i have a problem about my database when i press sa save comand button it goes something like that... run time error -2147467259 operation must use an updateable quary.. i cant detect the true error... help help the code in my save are corect check this... Sub saverecord() rsemployee.AddNew rsemployee.Fields("EmployeeID") …

Member Avatar for choudhuryshouvi
0
114
Member Avatar for kaloc

{ This is an exploratory question to just find out if something is possible. } The facts are these : 1. The java program is closed source, but is running on an accessible workstation. 2. The gui is written in AWT. 3. OS is windows 4. Windows tools like Spy++ …

Member Avatar for kaloc
0
141
Member Avatar for arkaprava

I m going to build a data modelling software project by java like DDS LITE I am coding the algorithmic part of the project where I have to build some composite data at the preliminary phase of the implementation of the algorithms, such composite data items are entity , relationship …

Member Avatar for arkaprava
0
203
Member Avatar for george45

I am writing a program that is supposed to generate 10 random numbers all of them with in the range of [-0.5, 0.5] (the data type that is supposed to be produced by the program are 10 random floating point numbers with in the interval [-0.5, 0.5]). But the problem …

Member Avatar for VernonDozier
0
167
Member Avatar for assgar

Hi I need help. I know what I want to accomplish, but I do not know how to do it. The events are recurring every month, but not recurring at the same time or on the same day of the week. WHAT I NEED HELP ACCOMPLISHING: How to do I …

Member Avatar for assgar
0
97
Member Avatar for ebabes

How can you insert a hyperlink in your site that does not include an underlined text? This is for a basic reason that most of the text of a hyperlink is underlined. How can I get rid of it?

Member Avatar for ebabes
0
106
Member Avatar for tamereth

My program works properly under windows, however, it seg faults when I try to compile/run it under linux. [code=c++] #include <fstream> #include <iostream> using namespace std; int main() { char command; char infilename[80]; char outfilename[80]; char fileline[80]; char nextline[80]; char temp[80]; char temp2[80]; char * location; char sentence[250]; int loc …

Member Avatar for tamereth
0
178
Member Avatar for bbxx

I have a Crystal Report that I am running in ASP.NET, and it has two parameters. When I run the page, the parameters are prompted for, and the report generates fine. But when I try to go to another page of the report, it re-prompts for the parameters, and then …

Member Avatar for bbxx
0
93
Member Avatar for HLA91

Hi all My bro rang me up, and for some reason he asked me to make him a "simple" program that creates a folder and the user enters the name for that folder then it acopies pre set files in to that new folder. The folder will be created in …

Member Avatar for Aia
0
283
Member Avatar for rickarro

Good Morning, I have a script that is working just fine as it stands, thanks to ya'll :) I wanted to make a change to it but am having trouble making this change work. The scripts says to "select * from my databases", using "Where" three data inputs. This tells …

Member Avatar for rickarro
0
214
Member Avatar for bushman_222

Hey all. Can some please confirm some winsock items, I am starting to doubt my self about it now. The question is this: If you created a client server program, what port does the client winsock.localport actually connect? Is it the same port that you request it connect to, or …

Member Avatar for jonc
0
127
Member Avatar for AsymptoticCoder

I am hoping somebody can help with a very frustrating problem I am facing. I am working with a MDIChildFrame that has one panel called mainPanel. I set the background style of both the panel and the child frame to wx.BG_STYLE_SYSTEM. Yet, when I run the program the background is …

Member Avatar for vegaseat
0
155
Member Avatar for majestic0110

hi there, creating a structured databse (maybe in SQL) that I want accessable from a UI in c#. Is SQL the best way to go about this ? cheers

Member Avatar for majestic0110
0
74
Member Avatar for rickarro

Hey All, I have a form that i want to be able to change the look of, it displays within an HTML page and is basically a rectangle with my input fields in it. I'm using a [code]<form action="fromform.php" method="post">[/code] type form. What i want is to be able to …

Member Avatar for rickarro
0
142
Member Avatar for jonathanasdf

It is late here, I am tired. I know this is probably out there somewhere, and that I am not showing effort by not looking for it, but I really am too tired, so tomorrow morning if this is answered (takes you like 2 seconds to answer it) I'll mark …

Member Avatar for jonathanasdf
0
105
Member Avatar for sbv

hello friends... i want to get the browser name is asp code without using js and include the css file depending upon the browser of the user. i dont want to use js. because i am unable to include file in js. what i did in js is --- var …

Member Avatar for SheSaidImaPregy
0
111
Member Avatar for shaikh_mshariq

I want to develop process viewer for windows in c or c++. Is there any api or any information so i can start from that. Anyone know about this please help. Thanx in advance.

Member Avatar for shaikh_mshariq
0
104
Member Avatar for electron33

Hi. I have been trying to access Microsoft Outlook from Java. This be in case of jsp page or traditional Java. Is there anyone how knows how? In the same case i would also ask if someone have tried to use mail session in Apache Geronimo. There is a plugin …

Member Avatar for peter_budo
0
234
Member Avatar for sarabhjeet

Hello all, actually i need to open a CHM file when i click on Help's submenu "Documentation",how to do this,how to open a file.Please help me.

Member Avatar for sarabhjeet
0
114
Member Avatar for Pro2000
Member Avatar for Nick Evan
0
171

The End.