Lotus notes through ABAP
I have two lotus notes user accounts installed in my machine. Using SAP-ABAP language using OLEObject, I want to send email. It is working fine with one user account but with two user accounts installed I cannot send mail even from any of the two accounts. Please help
Answer Question
| July 12, 2010 11:20 AM
Lotus Notes Accounts, Lotus Notes User Permissions, OLE objects, SAP ABAP
I have two lotus notes user accounts installed in my machine. Using SAP-ABAP language using OLEObject, I want to send email. It is working fine with one user account but with two user accounts installed I cannot send mail even from any of the two accounts. Please help
c++ reading data from txt files in tokens
I have tried a lot to manipulating strings. I want such code witch read the data from input file. I want to get data in tokens (to store in variables) of type char or int of specific location in input file. I want to store string parts in variables for further use. eof() helps [...]
Answer Question
| July 9, 2010 7:27 AM
C++, IDE, Software programming industry, String manipulation
I have tried a lot to manipulating strings. I want such code witch read the data from input file. I want to get data in tokens (to store in variables) of type char or int of specific location in input file. I want to store string parts in variables for further use. eof() helps [...]
c++ Exe. file 587kb
I am beginner in c++. I have written a student test program. It executes successfully in c++ compiler with no error. After while when I try to run that exe file alone it gives an error. Debugging the program shows “An access violation(segment fault)”.
Answer Question
| July 8, 2010 7:02 AM
C++, Program Debugging, Segmentation Fault
I am beginner in c++. I have written a student test program. It executes successfully in c++ compiler with no error. After while when I try to run that exe file alone it gives an error. Debugging the program shows “An access violation(segment fault)”.
Dreamweaver Site in IE: Image linking bug
My site was created in Dreamweaver, and when in IE, you hover over an image that is a link, a small box with a number 1 pops up. This is not shown in Firefox or Safari. What can I do to stop it in IE.
Answer Question
| July 8, 2010 12:36 AM
Dreamweaver, Internet Explorer, Website design, Website maintenance
My site was created in Dreamweaver, and when in IE, you hover over an image that is a link, a small box with a number 1 pops up. This is not shown in Firefox or Safari. What can I do to stop it in IE.
Closing A Uidoc From An Agent
I have a database for supervisor shift reports. The shift report must be locked after the shift has ended so no further editing can take place. I have written an agent in LotusScript that handles that requirement. The problem I am having is that sometimes the supervisor forgets to close the shift report at the [...]
Answer Question
| July 16, 2010 8:41 PM
Agents, Lotus Notes 6.5.3, Lotus Notes Automation, Lotus Script Agent, LotusScript
I have a database for supervisor shift reports. The shift report must be locked after the shift has ended so no further editing can take place. I have written an agent in LotusScript that handles that requirement. The problem I am having is that sometimes the supervisor forgets to close the shift report at the [...]
FormsPrint Spool File going to QUSER instead of other users
why does a formsprint spool file go to quser instead of the user id for only one user, all others go to the user id
Answer Question
| July 7, 2010 2:08 PM
QUSER, Spool file output queue, Spool files, Windows Forms
why does a formsprint spool file go to quser instead of the user id for only one user, all others go to the user id
How to convert the currency in Indian Value in Excel 2003
Dear Sir, I am not able to convert the value like this even by using the custom format in Excel 2003 – 100,75,75,750.50 or (100,75,75,750.50) Can you suggest a good way to do this which also takes care of low values like – 75,750.50
Answer Question
| July 24, 2010 1:30 PM
Conversion functions, Excel 2003 functions, Excel Formatting
Dear Sir, I am not able to convert the value like this even by using the custom format in Excel 2003 – 100,75,75,750.50 or (100,75,75,750.50) Can you suggest a good way to do this which also takes care of low values like – 75,750.50
How to connect to database inside VMWare from the web applications
Hi All, I have VMWare in my desktop which contains the Oracle database. And in general my desktop is in network with the server having web based applications. Now I want to fetch the data from this VMWare database in my application. Can we establish JDBC connection from the application to this database. Can we [...]
Answer Question
| July 21, 2010 12:34 PM
DSN connection, Java Database, JDBC, Oracle Database, VMware, Web Dynpro
Hi All, I have VMWare in my desktop which contains the Oracle database. And in general my desktop is in network with the server having web based applications. Now I want to fetch the data from this VMWare database in my application. Can we establish JDBC connection from the application to this database. Can we [...]
Find and replace text in text file using MS Access VBA
Hi I need to modify some tags of an XML file that I receive. How can I search the file for specific text and replace it? Here is the code I have right now. It runs without errors but does not replace the text. Function ReplaceTextInFile() Dim sSearchText As String Dim sReplaceText As String Dim [...]
Answer Question
| May 8, 2013 11:46 PM
Access 2000, Access VBA, VBA editor, Visual Basic for Applications, XML File Creation
Hi I need to modify some tags of an XML file that I receive. How can I search the file for specific text and replace it? Here is the code I have right now. It runs without errors but does not replace the text. Function ReplaceTextInFile() Dim sSearchText As String Dim sReplaceText As String Dim [...]
Career in Software Testing v/s Mainframes
Hi, I have done BCA in 2004 and since i am working in BPO industry. Now i am planning for changing my career path to IT. I have also done SQT in 2007. Few people have suggested me to do mainframes course from HTS, Noida and move into mainframes and some of them have suggested [...]
Answer Question
| October 28, 2010 9:27 PM
Mainframe careers, Mainframe certifications, Software testing jobs, Unix administration
Hi, I have done BCA in 2004 and since i am working in BPO industry. Now i am planning for changing my career path to IT. I have also done SQT in 2007. Few people have suggested me to do mainframes course from HTS, Noida and move into mainframes and some of them have suggested [...]
Oracle-developers
WHILE ASSIGNING A VALUE TO PROCESSED_TIME=:NEW.JMS_TIMESTAMP-:NEW.INS_TIME (All are timestamp type ) how to subtract that one. CREATE OR REPLACE TRIGGER SAUUSER.TRG_MSGES_STATISTICS AFTER UPDATE OR UPDATE ON SAUUSER.TSAU_PRE_MSGES REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE BEGIN IF INSERTING THEN INSERT INTO TSAU_MSGES_STATISTICS(PORTCODE,MSG_ID,DOCTYPE,MSGTYPE,SUBMISSION_TIME) VALUES(:NEW.PORTCODE, :NEW.MSG_ID, :NEW.DOCTYPE, :NEW.MSGTYPE, :NEW.INS_TIME ); END IF; IF UPDATING [...]
Answer Question
| July 7, 2010 11:50 AM
Oracle applications, Oracle developers, Timestamp, TOAD
WHILE ASSIGNING A VALUE TO PROCESSED_TIME=:NEW.JMS_TIMESTAMP-:NEW.INS_TIME (All are timestamp type ) how to subtract that one. CREATE OR REPLACE TRIGGER SAUUSER.TRG_MSGES_STATISTICS AFTER UPDATE OR UPDATE ON SAUUSER.TSAU_PRE_MSGES REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE BEGIN IF INSERTING THEN INSERT INTO TSAU_MSGES_STATISTICS(PORTCODE,MSG_ID,DOCTYPE,MSGTYPE,SUBMISSION_TIME) VALUES(:NEW.PORTCODE, :NEW.MSG_ID, :NEW.DOCTYPE, :NEW.MSGTYPE, :NEW.INS_TIME ); END IF; IF UPDATING [...]
I need vba code to update item cost from a word document w/o changing the previous wks item cost in Excel 2004
I have a work book with week 1 – 5 ending inventory worksheets. I need vba code to update item cost from a word document w/o changing the previous wks item cost.
Answer Question
| July 15, 2010 1:52 AM
Excel 2004 Workbooks, Excel VBA, Excel worksheets, Visual Basic
I have a work book with week 1 – 5 ending inventory worksheets. I need vba code to update item cost from a word document w/o changing the previous wks item cost.
meta name=
Hi everyone, Can someone tell me the best use of Meta tags in .html pages. Currently I put mine on all of my pages, copied from the index page and pasted on all the others, but here is my question. Is it better to have them just on your index (main) page and use the meta [...]
Answer Question
| May 28, 2011 4:19 PM
HTML, Web development
Hi everyone, Can someone tell me the best use of Meta tags in .html pages. Currently I put mine on all of my pages, copied from the index page and pasted on all the others, but here is my question. Is it better to have them just on your index (main) page and use the meta [...]
work of .dll and .api files..
what is the work of .dll &.api files?
Answer Question
| July 6, 2010 5:13 PM
API, File extensions
what is the work of .dll &.api files?
Web based application not uploaded ON SERVER sometimes
We are having the Web based software which is uploaded on our server on technology of front end: PHP & backend: MS SQL Server 2005. Some times this application can not uploaded, so plz give the solution to solve this problem. Actually this application is developed by third party and they update this application remotely [...]
Answer Question
| July 14, 2010 7:44 AM
Network applications management, Networking services, PHP, SQL Server 2005, Web application development, Web based Applications
We are having the Web based software which is uploaded on our server on technology of front end: PHP & backend: MS SQL Server 2005. Some times this application can not uploaded, so plz give the solution to solve this problem. Actually this application is developed by third party and they update this application remotely [...]
Full data in socket
Hello, I have a C server and flex client. Server sends data to client depending upon the commands sent by the client. For example, if the commad is 1 the server would read a file and send the content to the file, if the command is 2 then it would read another file and send [...]
Answer Question
| July 6, 2010 1:18 PM
C socket, Flex socket, Server configuration, Servers, Socket, Socket programming
Hello, I have a C server and flex client. Server sends data to client depending upon the commands sent by the client. For example, if the commad is 1 the server would read a file and send the content to the file, if the command is 2 then it would read another file and send [...]
Software Testing & Quality Assurance Career Planning
I completed MCA in 2008 and presently working in Non-IT Automotive for the past 6 months. I want to enter IT industry and want to pursue a career in Software Testing & Quality Assurance. I dont have any IT related experience. I want to do either ISTQB or CSTE certfication and confident of clearing it. [...]
Answer Question
| July 27, 2010 5:28 AM
Certifications, IT career planning, MCA, Quality Assurance Careers, Software Testing Certification
I completed MCA in 2008 and presently working in Non-IT Automotive for the past 6 months. I want to enter IT industry and want to pursue a career in Software Testing & Quality Assurance. I dont have any IT related experience. I want to do either ISTQB or CSTE certfication and confident of clearing it. [...]
Web Links that are Password Protected
Is there a way to put documents on the Web site and put a password on them so only certain people can open them?
Answer Question
| July 2, 2010 6:04 PM
Document warehousing, Dreamweaver, Web security
Is there a way to put documents on the Web site and put a password on them so only certain people can open them?
Crystal Report 10 error
I am getting this error when I try to pull a crystal report: Property “New Generator” cannot be declared “overrides” because it does not override a property in a base class. When I comment out the errors the report pulls and when I make a change or edit the report or go out of the [...]
Answer Question
| July 1, 2010 12:32 PM
Crystal Reports 10, Crystal Reports error messages, Visual Studio 2005
I am getting this error when I try to pull a crystal report: Property “New Generator” cannot be declared “overrides” because it does not override a property in a base class. When I comment out the errors the report pulls and when I make a change or edit the report or go out of the [...]
SQL Server 2008 query To Find Columns with incorrect information
This is difficult to expalain so i will try and give you an example Record Surname Age Town 1 Smith 50 SMITH AB 2 Jones 45 Leeds 3 Patel 38 PATEL AR What someone has done is put in the wrong data in town name and instead used details that we put in a different field. What i [...]
Answer Question
| July 1, 2010 11:09 AM
SQL Data Set, SQL Database, SQL Query, SQL Server 2008
This is difficult to expalain so i will try and give you an example Record Surname Age Town 1 Smith 50 SMITH AB 2 Jones 45 Leeds 3 Patel 38 PATEL AR What someone has done is put in the wrong data in town name and instead used details that we put in a different field. What i [...]





