Development Questions


Dual monitor problem with Flash
dirtychinchilla have a temp fix from http://forums.overclockers.co.uk/showthread.php?p=22484400 This worked for me, best of luck Toni, mine has not been working as well. I worked around the problem by doing the following: -Go to chrome://plugins -Click and expand +Details in the Upper Right -Check over the flash files.  -One is version 11.3.31.222, the other two show version [...]

View Answer   |  August 3, 2012  11:37 AM
Dual monitors, Flash
answered by:
40 pts.

Selecting data to delete from column & rows
Use a filter. Select the entire sheet, go to Data/Filter and select Auto Filter. You will be able to click on the drop down arrow in the supplier column and choose the supplier you want.

View Answer   |  August 2, 2012  9:50 PM
VBA, VBA functions
answered by:
35 pts.

ASP source connect to System i (AS400)
Hi, You do open: rs.open sql,conn,1,3 but you created connection: set con = Server.CreateObject(“ADODB.Connection”) regards. Cezary Opacki      

View Answer   |  November 12, 2012  8:09 AM
AS 400, ASP
answered by:
65 pts.

Regex ILE RPG Part 2
Test RPG to call ILE Service Program Hdebug(*yes) * dRegex pr 4500 extproc('REGEX') dStringIn 2000 const dRegExpIn 500 const * d d retval ds 4500 d result1 1 2000 d result2 2001 4000 d error 4001 4500 * dtests s 2000 dtestr s 500 * c eval tests = 'I have a cat, but I [...]

View Answer   |  July 5, 2012  3:34 PM
iSeries, Java, RPG
answered by:
465 pts.

Is PL/SQL a right choice form performing operations on a databse and display the final result.?
For operations performed on an Oracle database, PL/SQL is the best option. As for displaying the final result, that depends on how you want to display it. If you want to display some fancy report or show the results on a form, then you need something additional.  You can manipulate the data with PL/SQL and [...]

View Answer   |  July 3, 2012  6:01 PM
Java, Oracle 10g, PL/SQL
answered by:
425 pts.

send SAP transaction code to inbox
Hi , its a bit difficult task .. it requires a java developer also (it was developed in MNC gujurat) but later after some time there were several issues. .. see generally in any PO or PR workflow release senario… we will intimate the approver that currently purchase order ”     ” with  ” [...]

View Answer   |  August 28, 2012  1:08 PM
Outlook, Release strategy sequence, SAP Transaction Codes, SAP Workflow, Workflow
answered by:
WF
15 pts.

c++ reading data from txt files in tokens
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 19, 2013  2:16 PM
C++, IDE, Software programming industry, String manipulation
answered by:
3,185 pts.

How to change the text in the text box to numbers with command button?
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 14, 2013  7:49 PM
Visual Basic 6.0, Visual Basic commands
answered by:
3,185 pts.

Creating Access table
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 14, 2013  2:48 PM
Access, Access Database, Access Database Design, Access Tables, Database design, ER diagrams, Windows 7
answered by:
3,185 pts.

Counting the number of correct answers in Visual Basic
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 17, 2013  2:26 PM
COUNT statement, VB, VB Code, Visual Basic, Visual Basic developers
answered by:
3,185 pts.

answered by:
30 pts.

Problem Extracting OLE Objects from Lotus Notes Email
Perhaps those OLE object types aren’t registered on those particular machines.

View Answer   |  December 4, 2012  11:09 AM
Lotus Notes, OLE objects
answered by:
2,725 pts.

Visual Basic 2008 – combo box and text file. How to display relevant data
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 14, 2013  10:03 AM
ComboBox, VB 2008, Visual Basic 2008, Visual Studio 2008 Express Edition
answered by:
3,185 pts.

scheduling a bpel process
Rubicon Red has a scheduler designed specifically for the Oracle SOA Suite. We have just announced the beta release of version 2.0. Designed specifically as an extension to Oracle SOA Suite, the Rubicon Red Scheduler provides the ability schedule the execution of Web Services, BPEL Processes and the publication of EDN Events. If you are [...]

View Answer   |  July 28, 2012  8:46 AM
BPEL, SOA
answered by:
15 pts.

AS400 – SQL
Below is the sample code for what you are asking,hope it will help: Declare name varchar(10); begin name:=’Juzer’; Update File Set Fname = Substr(name,1,3)        Where empno=99; end; /

View Answer   |  July 5, 2012  8:07 AM
AS/400 SQL, AS400 - SQL Queries, SQL queries, SQL Query
answered by:
425 pts.

Please review the code and tel me the solution code is given blew,thanks………Error: ‘d.getElementById(…)’is null or not object(sh
//lastDate = new Date(String(monthNum+1)+”/0/”+String(yearNum));         lastDate = new Date(yearNum, monthNum, 0); in  changedate(buttonpressed){ —- ——- ========= } and befor it where ever “lastDate = new Date(String(monthNum+1)+”/0/”+String(yearNum));” has beeb used

View Answer   |  September 13, 2012  7:15 AM
ASP, DHTML, HTML, java script
answered by:
15 pts.

Active Directory returns No Data
Check your AD path.  It should be in DN Syntax.  i.e “LDAP://ServerFQDN/,DC=CONTOSO,DC=COM” Your DirectorySearcher can be cleaned up as well.  The code below will list all groups in the AD path. DirectoryEntry de = new DirectoryEntry(); de.Path = ADPath; de.AuthenticationType = AuthenticationTypes.Secure; DirectorySearcher ds = new DirectorySearcher(); ds.Filter = string.Format(“(&(objectClass=group))”); SearchResultCollection result = ds.FindAll();foreach (SearchResult [...]

View Answer   |  June 28, 2012  6:54 AM
RSS feed
answered by:
27,325 pts.

answered by:
15 pts.

MS Access DATABASE and combobox in VB6.0
‘Use this codeOn Error Resume NextDo While Not Form6.Adodc1.Recordset.EOF = TrueCombo1.AddItem Form6.Adodc1.Recordset.Fields(“REF_ID”)Adodc1.Recordset.MoveNextLoop‘End If

View Answer   |  October 12, 2012  4:26 AM
Access Database, ComboBox, Microsoft Access, VB 6.0, Visual Basic
answered by:
15 pts.

How do I create a database using C language?
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]

View Answer   |  May 15, 2013  4:01 AM
C++, CREATE DATABASE statement, Data base design, Database, Database management
answered by:
3,185 pts.