4,124 Topics
![]() | |
I need a robust shell script fast and don't have time to learn how script it myself from scratch. Summary: An existing PHP Application allows consumers to place an order for a product and upload files necessary to build that product. These files are stored in folders on the webserver … | |
Building new system with Abit KN9 SLI Motherboard, AMD 64 X2 6000+, 2 GB of 800 Mhz RAM...a speed demon. I've also installed four Maxtor 500 GB hard drives. The goal is to have a RAID 0+1 installed. I've got the BIOs set, but am running into two problems: 1. … | |
i used visual studio 2003 ,i am newbie i Created a simple database access and link it below ,i want to use dataset and oledbapdater compare the input from textbox with username and password colums in file .mdb . [url]http://mkptrans-nt.com/BaiTapTn.mdb[/url] [B]interface drag drop [/B] [B][U]Login page :[/U][/B] [url]http://mkptrans-nt.com/pic1.JPG[/url] [B][U]Viewmark page … | |
I am writing a web based application using JSP and JDBC. In side a servlet I execute some code like this [code] DAO.addComments( commentsBean ); commentsList = DAO.getComments(); session.setAttribute( "comments", commentsList ); response.sendRedirect( "comments.jsp" ); [/code] when I move to comments.jsp I find all the comments except those that have … | |
It's a recent problem, but my system is suddenly bogged down, and crawling, when it used to be quite fast. It's especially an issue with any internet-accessing programs. winlogon.exe and svchost.exe are taking up ~40% of the CPU at all times, and there's a constant load of almost 90%. Here's … | |
Ok so this is whats happening. I have no idea what my brother downloaded but it gave me a virus. My Symantec AnttiViruses auto-protect keeps poping up like every 4 seconds saying that it's found a Trojan.Cachecachekit with a file name called rdiv.sys... I looked for this file were it … | |
Hello, I'm a bit new at in-depth IE programming, and am having a bit of trouble with a couple of IE browser extensions (getting them to talk to each other). The first one is a C++ Browser Helper Object (BHO). I have a class (MyClass) that has a method called … | |
Hi... Recently I have been receiving emails with the following message and two attachments (one is Att00055.dat and the other is a Mail Delivery (failure [email]tslee@magix.com.sg[/email])): "Subject: [WARNING: VIRUS REMOVED]Returned mail:see transcript for details The original message was received at Fri, 22 Jun 2007 10:34:44 +0800 from bb220-255-154-243.singnet.com.sg [220.255.154.243] ----- … | |
Hi what purpose of HttpSessionContext? all the session information are stored this place. Thanks inadvance arun | |
Hi In any project we can set values to the session.and get value from the session. which place or path the session information to be stored. Thanks in advance | |
Hi All: I needed to passed an integer value from the following code: <%=ic.getTotalNumOfRecords()%> to an attribute of a custom tag <inquiry:tableClaimHistory numberOfRecords="5" dataAction="claimHistoryViewData.do" emptyKey="error.noData"/> The function getTotalNumOfRecords returns an int. The attribute numberOfRecords expects an string. Here are the different ways I tried in a jsp page but I … | |
Hii EveryOne, I am using crystal enterprise 10 for reporting in my project which is a web application in j2ee. I have many queries regarding Crystal Reports. 1.when i request for a report and if that report is suppose to show huge data say about 50,000 thousand records it starts … | |
Hiya.. I have a jsp page to upload some files.. The session is used to store a Map ( session.setAttribute("filemap", filemap ) ). This map contains all the files to be uploaded. I have a file-input type, onChange the file here is added to the map. The map is stored … | |
Hello everyone! I have a problem having loops in Php. The process is, it will take all the records in the database table through looping based on the date specified. For example the billing period is from February 01, 2007 to February 28, 2007. It will take all the records … | |
Hello there, I've got some information which is stored in a class object, these objcts are transfered to an action in the format of a set. I'm trying to put the set into a bean into my JSP, however im not having much luck. The error is as follows: [quote]org.apache.jasper.JasperException: … | |
Can someone please advise me. I have a program which is who interface is JSP. It is running Java in the background. I have a timeout session which works. The problem starts when you log back in. Some of the files are set up with authorized access when created, howver … | |
hi there, i have posted my code...please am seeking help, syntax wise Here's my code , please i do need help myda = [COLOR=green]New[/COLOR] SqlDataAdapter("Select Distinct COUNTRY from FO_TestingLines_TBL order by COUNTRY", ConfigurationSettings.AppSettings("myconnection")) ds = [COLOR=green]New[/COLOR] DataSet() myda.Fill(ds, "AllTables") OPERATOR.Visible = [COLOR=green]True [/COLOR]COUNTRY.DataSource = ds.Tables(0) COUNTRY.DataTextField = ds.Tables(0).Columns("COUNTRY").ColumnName.ToString() COUNTRY.DataValueField = … | |
I have a simple login screen where I want the user upon entering the correct userid/password , for his userid to be inserted into a table in a database so to keep track who visited his web page. My ISP is supposedly has created a DS named "win5_zjconstructioninc_com" but the … | |
Hi there, I have a class that returns a value based on a calculation with in the class 2 of the variables are called from a database, which is working however when I try to output the result on a jsp page ie. calling the property 'rating' I am told … | |
Hi, I need help on the following desperately I need to write a macro to send out 2 types of email via excel 2000 for those (DEPENDING ON their Action_Item_Status 1)action items with Action_Item_Status='Overdue', (over due email) 1)action items with Action_Item_Status='Due Soon', (reminder email) Action_Status_As_Of_Today can have these values:-Done,Overdue,Due Soon,Not … | |
Good morning, I have created a registration page with a few little things built in to eliminate duplicate users. I am getting the follow error after clicking the register button: cannot find 'file://C:/CTGR/_access/%3C%=MM_editAction%%3E'. Make sure the path or Internet address is correct. Ideas on how to get this error to … | |
:cool: [B][COLOR=blue]I have this c000021a {Fatal system error}The Session Manager Execute Initial command system process terminated unexpectedly with a status of 0xc0000034(0x00000000 0x00000000). The system has been shutdown.[/COLOR][/B] [B][COLOR=#0000ff]They are not kidding they did a good job. All week I am trying to get in. I am tired now and … | |
dear friends, i am able to get a bunch of datas from select box , but while inserting into database , only one data had been getting inserted, how to insert all the datas... i will show the code, please give ur valuable suggestions <% String s1=(String)session.getAttribute("eid"); String s3[]=request.getParameterValues("language"); int … | |
Hi all, I'm currently building a login page for a JSP application, I've realised that im going to need to use sessions to recall the username on the login screen for other functionality. Unfortunately i'm very new to the whole web development approach and i've tried searching for guides on … | |
Hello community,, I have been developing a yahoomessenger chat client for nintendos handheld gaming console 'nintendo ds'.Till now i have finished laying out the user interface and wifi access via router. I found the yahoo protocol in many places from a google search but i am unable to understand how … | |
Hai, I need to read the Foxpro(dbf) file, and execute that file in MSSQL through Java code. That means Migrate the Foxpro dump file into MSSQL. Also i am using the Struts Tags for create new application. But the Tag was not working. I am using the following code for … | |
Hi there Im having a problem with my database connection...other instances of nearly the same code works but I cant understand why this isn't working My class which retrieves info from the data base is [code] /* * MuscleSchedule.java * * Created on 07 May 2007, 18:03 * * To … | |
hi.. i wonder, what is wrong with my code? i want to let user update their previous question based on question number they selected. i have a dropdownlist called [B]qnum[/B]. when the qnum index changed, it should load respective question to textbox [B]question[/B]. however, i don't manage to update in … | |
![]() | I need to add registry keys and replace registry keys inside a vbs script...I started one...and it executes fine. However, I want to append "M:\MLS\bin" portion to the end of the existing key...as you may guess, I don't want to overwrite all my PATH environmental variables...but that is what is … |
I am trying to show info at the bottom of my data grid I get error saying object reference not set to an instance of an object Here is my code [B]Imports System.data Imports System.data.OleDb Imports System.Configuration Partial Class supplier Inherits System.Web.UI.Page Dim ConnString As String = ConfigurationManager.AppSettings("ConnString") Dim dbPath … | |
i have a problem.. i just can't see where i did go wrong.. when my page loads, i want the name and email appear in the textbox so that user can edit their name and email...but then, it doesn't update the record, but continue to save the old value of … | |
Hi, im facing some problem when i have to verify user at my login function. Im using Visual Web Developer with vb programming and MS SQL Server 2000 as my database. Basically my login form have few textbox for user to input the id and password, 1 radiolist for user … | |
hi.. i've created a table named :Survey [code]CREATE TABLE [dbo].[Survey] ( [CustomerID] [int] NOT NULL , [SurveyID] [int] IDENTITY (1, 1) NOT NULL , [SurveyTitle] [varchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [SurveyDescription] [varchar] (300) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [DateCreated] AS (getdate()) , [coverletter] [varchar] (250) COLLATE SQL_Latin1_General_CP1_CI_AS NULL … | |
Hey, I am new to Linux and I have a problemwith window managers I done smth, probably by installing Mplayer or I dont know, and now when I try to Log out from KDE I only have the "End Current Session" option, when I had Shut down options... Also when … | |
hi.. i've created a table named :Survey [code]CREATE TABLE [dbo].[Survey] ( [CustomerID] [int] NOT NULL , [SurveyID] [int] IDENTITY (1, 1) NOT NULL , [SurveyTitle] [varchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [SurveyDescription] [varchar] (300) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [DateCreated] AS (getdate()) , [coverletter] [varchar] (250) COLLATE SQL_Latin1_General_CP1_CI_AS NULL … | |
Hi! I'm a newbie with VB.NET and I'm so close to finished an internet explorer of my own and have come to the following problems: Whenever i type a URL into the combobox and hit "Go", i have a text box that fetches that URL. Everytime I enter a new … | |
I am trying to enter data into a datagrid and I get this message No value given for one or more required parameters. Can anyone see what is wrong. Here is the code Imports System.data Imports System.data.OleDb Imports System.Configuration Partial Class supplier Inherits System.Web.UI.Page Dim ConnString As String = ConfigurationManager.AppSettings("ConnString") … | |
This is what I have so far. I need to retrieve data and show in a grid view supplier ID supplier name and a command field to click more details that will include more detailed info. I am have problems on how to get the rows. i need to retrieve … | |
I have had this monitor and computer, a Gateway EV900 CRT monitor on a Radeon 9600 PRO card for over a year with absolutely no problems. Recently today, while I am playing Counter-Strike specifically, my monitor flashes in the center and then goes completely blank; I can hear all the … | |
Dear colleagues, I have a BIG headache when I wish to toggle window mode from fullscreen to windowed and vice-versa with DOS applications. I need first to know in which window mode is beeing exhibited in one session. Imeans in WINDOWED mode or FULLSCREEN mode. And I do not know … | |
This is my first attempt at creating a website using PHP. My database is done in MySQL. It is for a made up university. I am having trouble creating the page that should allow current students enrolled at the university to search for courses and add them to their schedule. … | |
Hey everyone. I'm trying to write code to update a stat field within my database and I'm having some trouble passing the variables from the form page to the process page. Below is my code. I know it's not correct. I just want a button to say "Upgrade attribute 1" … | |
I hope you can help me with this because I am out of ideas... I am trying to pass a structure [I]into[/I] an Oracle procedure and have had no luck⦠does anyone know how to pass a complex data type into an Oracle database? My idea was to pass in … | |
G-Day I am a real newbie to ASP. I took over for a fellow who wrote a whole intranet full of ASP that I get to support now. I am having several users that are not able to use some of the pages in the intranet site. When the pages … | |
Hello all, We have created a java app that creates its own file format that we can assoicate with the application in Windows. We would like for the user to be able to double click on of these files while the app is running and have the app open it. … | |
Hey guys. I have a program that when i button is clicked it should increase an attribute by one and decrease a stat point by one. For some reason it dosent decrease the stat point by one, it sets it to -1 but it does increase the attribute by one. … | |
I have an Intel Pentium 166MHz w/MMX computer with 64 MB RAM and I use Windows 98. While attempting to renew my Norton Antivirus subscription online, the following message appeared: "Your browser is not supported because it is not considered secure enough to conduct an online transaction. Please upgrade your … | |
Hey everyone. Im trying to make an online RPG where you can join "Families" or clans. I the code below is what I have thus far. It works but for some reason it wont update the creating users "family_id" in the database thus not telling the server that he is … | |
[I]hi..[/I] my system should select the maximum QuestionNum from one of the my table in the database. after all, i would like to increment the value QuestionNum to 1... but i keep on receiving error [B]"[I]Cast from type 'DBNull' to type 'String' is not valid." [/I][/B]this is my code... Public … |
The End.