Get directory of excel file in VBA Access

Background: Access database is established. A procedure is written in Access VBA. When I run the procedure it selects the path of 'excel file' and opens it, slpits the data into different tables. To improvise, a form is created with import
button on it. when I click on it, the procedure is executed.
Problem: How do I do the following steps by clicking on the import button in Access VBA: click_import_button >> Choose the excel file dailog box opens >> select the excel file >> Execute the procedure.
Following is my code(some part of it is deleted), with the path mentioned;
Public Sub trial()
Dim xlx As Object, xlw As Object, xls As Object, xlc As Object
Dim vPartDes As String, vPartWeight As Double
Dim vPartLength As Double, vPartWidth As Double
Dim vPartHeight As Double, vBZA As String
Dim vSAAname As String, vSAAnumber As String, vBMName As String, vBMnumber As String
Dim blnEXCEL As Boolean
Dim uid As Integer
Dim rsUID As DAO.Recordset
Dim vSNR As String, vNewSNR As String, VUID As String
Dim rs, rsNewSnr, qs, js, ks, hs As DAO.Recordset
'Dim wrkCurrent As DAO.Workspace
Dim mydb As DAO.Database
blnEXCEL = False
'Establish an EXCEL application object
On Error Resume Next
Set xlx = GetObject(, "Excel.Application")
If Err.Number <> 0 Then
Set xlx = CreateObject("Excel.Application")
blnEXCEL = True
End If
Err.Clear
On Error GoTo 0
'Change True to False if you do not want the workbook to be visible when the code is running
xlx.Visible = False
Set xlw = xlx.Workbooks.Open("C:\Users\YSRINID\Desktop\Book1.xls", True) 'opens in read-only mode
'Actual name of the worksheet
Set xls = xlw.Worksheets("Sheet1")
Set xlc = xls.Range("F2") ' This is the first cell (reference) that contains data (non-header information)
Set mydb = CurrentDb()
'Set wrkCurrent = DBEngine.Workspaces(0)
'wrkCurrent.BeginTrans
' write data to the recordset
Do While Not IsEmpty(xlc.Value)
vBMnumber = xlc.Offset(0, -4)
vBMName = xlc.Offset(0, -3)
vSAAnumber = xlc.Offset(0, -2)
vSAAname = xlc.Offset(0, -1)
vSNR = xlc.Value
vNewSNR = xlc.Offset(0, 1).Value
vPartDes = xlc.Offset(0, 2).Value
vPartWeight = xlc.Offset(0, 3).Value
vPartLength = xlc.Offset(0, 4).Value
vPartWidth = xlc.Offset(0, 5).Value
vPartHeight = xlc.Offset(0, 6).Value
vBZA = xlc.Offset(0, 7).Value
Dim tsql, usql, vsql, wsql, xsql As String
'Search BMnumber and SAAnumber combination in Variant_SAA
wsql = " SELECT * FROM Variant_SAA where BMnumber like '" & vBMnumber & "' and SAAnumber like '" & vSAAnumber & "'"
Set ks = mydb.OpenRecordset(wsql)
If ks.EOF Then
mydb.Execute "INSERT INTO Variant_SAA(BMnumber,SAAnumber) values('" & vBMnumber & "', '" & vSAAnumber & "') "
'Search for SNR or NewSNR
tsql = "SELECT * FROM SNR_Log where SNR like '" & vSNR & "' or SNR like '" & vNewSNR & "'"
Set rs = mydb.OpenRecordset(tsql)
If rs.RecordCount > 0 Then
rs.MoveFirst
VUID = rs!uid
Else
VUID = -1
End If
If VUID > 0 Then
' Update information in Part_Source table
mydb.Execute "UPDATE [Part_Source] SET PartDes = '" & vPartDes & "', PartWeight = '" & vPartWeight & "' , PartLength ='" & vPartLength & _
"' , PartWidth= '" & vPartWidth & "', PartHeight= '" & vPartHeight & "' , BZA = '" & vBZA & "' WHERE UID like '" & VUID & "'"
Else
' Insert part data into Part_Source table
mydb.Execute "INSERT INTO Part_Source(PartDes, PartWeight, PartLength , PartWidth , PartHeight , BZA) values ('" & vPartDes & "', '" & _
vPartWeight & "', '" & vPartLength & "', '" & vPartWidth & "', '" & vPartHeight & "', '" & vBZA & "')"
' Read UID of last record
Set rsUID = mydb.OpenRecordset("select @@identity")
Debug.Print rsUID(0)
VUID = rsUID(0)
' take UID and insert into SNR_log with SNR
mydb.Execute "INSERT INTO SNR_log (UID, SNR) values ('" & VUID & "','" & vSNR & "')"
End If
'Search for SAA and UID combination in SAA_Part
xsql = " SELECT * FROM SAA_Part where SAAnumber like '" & vSAAnumber & "' and UID like '" & VUID & "' "
Set hs = mydb.OpenRecordset(xsql)
If hs.EOF Then
mydb.Execute "INSERT INTO SAA_Part(SAAnumber,UID) values ('" & vSAAnumber & "', '" & VUID & "')"
Else
Set xlc = xlc.Offset(1, 0)
End If
Loop
'If MsgBox("Save all changes?", vbQuestion + vbYesNo) = vbYes Then
'wrkCurrent.CommitTrans
'Else
'wrkCurrent.Rollback
'End If
'Set wrkCurrent = Nothing
'Close Recordsets
rs.Close
Set rs = Nothing
rsNewSnr.Close
Set rsNewSnr = Nothing
qs.Close
Set qs = Nothing
js.Close
Set js = Nothing
ks.Close
Set ks = Nothing
hs.Close
Set hs = Nothing
'Close Database
mydb.Close
Set mydb = Nothing
' Close the EXCEL file without saving the file, and clean up the EXCEL objects
Set xlc = Nothing
Set xls = Nothing
xlw.Close False
Set xlw = Nothing
Set xlx = Nothing
Exit Sub
If blnEXCEL = True Then xlx.Quit
End Sub
Thanks in advance!

You can't just call your procedure since it opens a fixed workbook. (Moreover, it is missing an End If).
Here is the On Click event procedure for a command button cmdImport:
Private Sub cmdImport_Click()
    Dim strFile As String
    Dim xlx As Object, xlw As Object, xls As Object, xlc As Object
    Dim vPartDes As String, vPartWeight As Double
    Dim vPartLength As Double, vPartWidth As Double
    Dim vPartHeight As Double, vBZA As String
    Dim vSAAname As String, vSAAnumber As String, vBMName As String, vBMnumber As String
    Dim blnEXCEL As Boolean
    Dim uid As Integer
    Dim rsUID As DAO.Recordset
    Dim vSNR As String, vNewSNR As String, VUID As String
    Dim rs, rsNewSnr, qs, js, ks, hs As DAO.Recordset
    'Dim wrkCurrent As DAO.Workspace
    Dim mydb As DAO.Database
    With Application.FileDialog(1) ' msoFileDialogOpen
        .Filters.Clear
        .Filters.Add "Excel workbooks (*.xls*)", "*.xls*"
        If .Show Then
            strFile = .SelectedItems(1)
        Else
            MsgBox "No workbook specified!", vbExclamation
            Exit Sub
        End If
    End With
    blnEXCEL = False
    'Establish an EXCEL application object
    On Error Resume Next
    Set xlx = GetObject(, "Excel.Application")
    If Err.Number <> 0 Then
        Set xlx = CreateObject("Excel.Application")
        blnEXCEL = True
    End If
    Err.Clear
    On Error GoTo 0
    'Change True to False if you do not want the workbook to be visible when the code is running
    xlx.Visible = False
    Set xlw = xlx.Workbooks.Open(strFile, True) 'opens in read-only mode
    'Actual name of the worksheet
    Set xls = xlw.Worksheets("Sheet1")
    Set xlc = xls.Range("F2") ' This is the first cell (reference) that contains data (non-header information)
    Set mydb = CurrentDb
    'Set wrkCurrent = DBEngine.Workspaces(0)
    'wrkCurrent.BeginTrans
    ' write data to the recordset
    Do While Not IsEmpty(xlc.Value)
        vBMnumber = xlc.Offset(0, -4)
        vBMName = xlc.Offset(0, -3)
        vSAAnumber = xlc.Offset(0, -2)
        vSAAname = xlc.Offset(0, -1)
        vSNR = xlc.Value
        vNewSNR = xlc.Offset(0, 1).Value
        vPartDes = xlc.Offset(0, 2).Value
        vPartWeight = xlc.Offset(0, 3).Value
        vPartLength = xlc.Offset(0, 4).Value
        vPartWidth = xlc.Offset(0, 5).Value
        vPartHeight = xlc.Offset(0, 6).Value
        vBZA = xlc.Offset(0, 7).Value
        Dim tsql, usql, vsql, wsql, xsql As String
        'Search BMnumber and SAAnumber combination in Variant_SAA
        wsql = " SELECT * FROM Variant_SAA where BMnumber like '" & vBMnumber & "' and SAAnumber like '" & vSAAnumber & "'"
        Set ks = mydb.OpenRecordset(wsql)
        If ks.EOF Then
            mydb.Execute "INSERT INTO Variant_SAA(BMnumber,SAAnumber) values('" & vBMnumber & "', '" & vSAAnumber & "') "
            'Search for SNR or NewSNR
            tsql = "SELECT * FROM SNR_Log where SNR like '" & vSNR & "' or SNR like '" & vNewSNR & "'"
            Set rs = mydb.OpenRecordset(tsql)
            If rs.RecordCount > 0 Then
                rs.MoveFirst
                VUID = rs!uid
            Else
                VUID = -1
            End If
            If VUID > 0 Then
                ' Update information in Part_Source table
                mydb.Execute "UPDATE [Part_Source] SET PartDes = '" & vPartDes & "', PartWeight = '" & vPartWeight & "' , PartLength ='"
& vPartLength & _
                             "' , PartWidth= '" & vPartWidth & "', PartHeight= '" & vPartHeight
& "' , BZA = '" & vBZA & "' WHERE UID like '" & VUID & "'"
            Else
                ' Insert part data into Part_Source table
                mydb.Execute "INSERT INTO Part_Source(PartDes, PartWeight, PartLength , PartWidth , PartHeight , BZA) values ('" & vPartDes & "', '" &
                             vPartWeight & "', '" & vPartLength & "', '" & vPartWidth
& "', '" & vPartHeight & "', '" & vBZA & "')"
                ' Read UID of last record
                Set rsUID = mydb.OpenRecordset("select @@identity")
                Debug.Print rsUID(0)
                VUID = rsUID(0)
                ' take UID and insert into SNR_log with SNR
                mydb.Execute "INSERT INTO SNR_log (UID, SNR) values ('" & VUID & "','" & vSNR & "')"
            End If
        End If
        'Search for SAA and UID combination in SAA_Part
        xsql = " SELECT * FROM SAA_Part where SAAnumber like '" & vSAAnumber & "' and UID like '" & VUID & "' "
        Set hs = mydb.OpenRecordset(xsql)
        If hs.EOF Then
            mydb.Execute "INSERT INTO SAA_Part(SAAnumber,UID) values ('" & vSAAnumber & "', '" & VUID & "')"
        Else
            Set xlc = xlc.Offset(1, 0)
        End If
    Loop
    'If MsgBox("Save all changes?", vbQuestion + vbYesNo) = vbYes Then
    'wrkCurrent.CommitTrans
    'Else
    'wrkCurrent.Rollback
    'End If
    'Set wrkCurrent = Nothing
    'Close Recordsets
    rs.Close
    Set rs = Nothing
    rsNewSnr.Close
    Set rsNewSnr = Nothing
    qs.Close
    Set qs = Nothing
    js.Close
    Set js = Nothing
    ks.Close
    Set ks = Nothing
    hs.Close
    Set hs = Nothing
    'Close Database
    mydb.Close
    Set mydb = Nothing
    ' Close the EXCEL file without saving the file, and clean up the EXCEL objects
    Set xlc = Nothing
    Set xls = Nothing
    xlw.Close False
    Set xlw = Nothing
    Set xlx = Nothing
    If blnEXCEL = True Then xlx.Quit
End Sub
Regards, Hans Vogelaar (http://www.eileenslounge.com)

Similar Messages

  • It is possible to get data from Excel file and put them in BusinessObject Entreprise?

    Hi everybody,
    How i can get the information (data table) from a excel file?
    I just want to open a file excel in BusinessObject Entreprise XI. It is possible?
    Thanks

    What is BI launch pad?
    BI platform includes BI launch pad, a web application that acts as a window to business information
    about your company. In BI launch pad, you can perform the following tasks:
    • Access Crystal reports, Web Intelligence documents, and other objects and organize them to suit
    your needs
    • View information in a web browser, export it to other business applications (such as Microsoft Excel
    and SAP StreamWork), and save it to a specified location
    9 2012-03-14
    Getting Started
    • Use analytic tools to explore the business information in detail
    The features of BI launch pad vary by content type, and various applications are available in BI launch
    pad, if you have the appropriate licenses. For information about the features in your BI platform
    deployment, contact your system administrator.
    plz download this file and u can get you answer
    http://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CCMQFjAA&url=http%3A%2F%2Fhelp.sap.…

  • Room Data not getting exported to excel file

    Hello,
    I am facing a small issue regarding collaboration rooms.
    I created some Rooms and Created few Tasks in each room. I tried to export the task details in a excel file. For most of the rooms it is working fine but for few rooms either data is not getting exported or some data is missing in the generated excel file.I am working on EP 7.0  and all the rooms are created from the same user.
    What could be the possible reason for such a behaviour ?  Kindly Help me with this.

    i believe you can use GUI_DOWNLOAD simply for this purpose.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = 'c:\abc.xls'
       FILETYPE                        = 'ASC'
       WRITE_FIELD_SEPARATOR           = 'X'
    TABLES
        DATA_TAB                        = ITAB
    it will work, i believe.
    regards
    srikanth

  • Regarding getting data from excel file and need to generate  inbound idoc

    Hi guys,
    Please can u give some example how to get excel file data and need to generate the inbound idoc my questation ? Is it possible to generate inbound idoc with the same logical system ( it seems to be not possible using same logic to generate idoc ) can u suggest me any posssibule way to generate idoc.) if possible give me some example.
    Regardng
    anil
    Edited by: anil kumar on Aug 8, 2008 1:35 PM

    If you want someone to do your work, please have the courtesy to provide payment.
    http://www.rentacoder.com

  • Get directory of a file

    hi, am programing with java applet, and there's a method getDocumentBase() which returns the full URL. however i just need the directory where the file resides, not the file name. i.e., i want
    d:/this/is/the/dir/
    instead of
    d:/this/is/the/dir/applet.htm
    where .htm contains the applet.
    any hints pls? thx alot!

    sory,
    the prob is i want to store some images in another folder rather than the same dir as the html. so for example, the html goes
    d:/this/is/html/
    then i want images in
    d:/this/is/html/images
    and now an applet embedded in the html file needs to read those images, so am wondering how to get the url of the html dir, then attach /images to the end of that so as to get the url of all image files.
    there is a method getImage(URL, String) which seems to fulfil this need however, that only works if all image files reside in the same dir of the html file.
    hope that makes it clear. thx

  • Opening external Excel file by VBA in Excel Inplace template

    Hi all experts,
       I am working on a sq01 query which used an Excel inplace template. Inside the template, I have written the code to open another Excel file by absolute path, and it works when I run it in my computer. However, when I uploaded the template to the SAP and run the code, the external Excel file did not open. May I ask how I can open an external Excel file when the template is inside SAP server? Thanks a lot for your help.
    Best regards,
    Leon

    Do you have a language pack installed? I assume your computer language is set to French?
    Maurice

  • Get directory listing or files contained in a folder which is placed on a s

    Hello,
    I want to get the directory listing of a particular folder say 'xyz' which is placed on the server.
    I am using tomcat. I want to use Http to do it. How do it do it.
    Please guide.
    Regards,
    JAVA_student

    JAVA_student ,
    as pointed out file list is (in productional environments) usually turned off for security reasons.
    But I had a similiar requirement to the one you posted. I had a directory with thousands of image files with the name pattern <id>.jpg and the id's stored in a database. Not for every id in the database there existed a file. I wanted to show an image or in case the image file did not exist a default jpg. I could not set the error pages in web.xml to do it.
    So I had to take the id (a parameter in the request to the servlet I wrote for that), had to concat it with the 'virtual' directory name used in the applicationserver for the img directory. Then I had to check the existance of the file and to load it it and display it, if it existed otherwise I had to load and display the default picture.
    The problem is similiar to yours as the problem basically is to map a directory in a web application to a real directory in a filesystem (which works for files and directories.
    The answer is use getRealPath(String) of the ServletContext-object.
    Note: This only allows access to files and directories in the web application.
    e.g.
    http://www.theserver.com/mywebapp/img/ is a folder containing img files. The server does not allow directory listing.
    In a jsp within the application mywebapp you want to show a list of the files in /mywebapp/img/ .
    <HTML>
    <BODY>
    <%
    // in a jsp application gives you access to the context
    String sRealPath = application.getRealPath("/img") ;
    java.io.File fDir = new java.io.File(sRealPath) ;
    java.io.File[] allFiles = fDir.listFiles() ;
    for (int i = 0 ; i < allFiles.length;i++) {
       String sName = allFiles.getName() ;
    %>
    <%=sName%><br>
    <%
    %>
    </BODY>
    </HTML>

  • Access denied. Please check directory setting for files you can access.

    Hi ,
    I am trying to run this code but i am faceing strange issue with this code that the path is access denied
    can you please advice ?
    RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\Server\LocalConnectionMgr");
                if (key != null)
                    tempFilePath = key.GetValue("ReportDirectoryPath").ToString();
                if (tempFilePath == "") //set the default
                    tempFilePath = @"C:\Program Files\Business Objects\Crystal Reports 12.0\Samples\EN\Reports\";
                tempFilePath += @"NiceReporter\";
                if (!Directory.Exists(TempFilePath))
                    Directory.CreateDirectory(TempFilePath);
                tempFilePath += "Evaluators Trend.rpt";
                CrystalDecisions.CrystalReports.Engine.ReportDocument rd = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
                CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument boReportClientDocument;
                boReportClientDocument = new CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocument();
                boReportClientDocument.ReportAppServer = System.Environment.MachineName;
                object path = (object)tempFilePath;
                boReportClientDocument.Open(ref path, 0);
    thanks
    Fade

    HI TTT,
    Please STOP posting the same question, second time you've done this. 3rd time and you are gone...
    See this thread: failed to load report application server settings from the system registry
    Don

  • Links getting exported to excel file instead of data in Infoview

    Post Author: SankhadipBiswas
    CA Forum: Exporting
    Whenever I am exporting a report to excel the report is loosing data. Instead of showing the original data its showing some hyper links. Any sort of help would be appreciated.

    i believe you can use GUI_DOWNLOAD simply for this purpose.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = 'c:\abc.xls'
       FILETYPE                        = 'ASC'
       WRITE_FIELD_SEPARATOR           = 'X'
    TABLES
        DATA_TAB                        = ITAB
    it will work, i believe.
    regards
    srikanth

  • Create many thousands PDFs from Word files with VBA

    Hi,
    I create many thousands of word files from an excel file through VBA.
    I need to transalte these word files in pdf files.
    How can I do it ?
    Possible in VBA ?
    Possible to translate all the files in a directory from word to PDF ?

    Hi BrunoOrleans,
    You can use the 'Action Wizard' in Acrobat to convert a folder of word files to pdf.
    Regards,
    Rave

  • Is there a way to open up a directory for static files.

    Is there a way to open a specific directory or set of directories up for browsing with WLS 8.1.5 (such as having static .txt,.html files,etc..) without having to deploy some sort of java app to do this.
    Basically we need a quick and dirty way to access files sitting on a specific directory on our Web Server machine. Example is there a way to open up just the directory /home/user/files/video for access?
    Thanks,
    Cash Chitwood

    Well in order to host something I can't see you doing it without having to have a web application? So if you do not have a web application you will probably need to do that and deploy the war I guess even if its an empty war. In which case you can set that parameter I posted about earlier to access your folder?
    -Jesus

  • Regarding Excel file creation.

    Hi experts,
    I retrieved the ALV output into an internal Table which is containing Text(1024) as member.
    After getting Data I need to pass this data to Excel file.
    Excel file should contain exact format of ALV.
    Please suggest me..............
    Regards,
    Subash

    hi,
    after getting data into EXCEL File and i need to pass this one as attachment to mail. If i use  GUI_DOWNLOAD is saved into presentation server and i need to pick that file from presentation server  and i will send. But this one won't work in BACK Ground. That is the reason after getting data from ALV report into Text Variable and i need to pass this data to excel file, and that excel file as to go an attachemnt to mail,.Everything in Background only.

  • Read a excel file...Not working in sap portal environment

    Hi,
    I have a requirement to read an excel file from presentation server. I have used funtion module TEXT_CONVERT_XLS_TO_SAP. This is working in production system.
    But this read is failing in PORTAL environment as i am getting an error " excel file cannot be processed".
    Please let me know if anyone knows how to solve this issue...
    Regards,
    San

    Dear Shankar,
    I can see the form in R3 using asr_process_execute application but not in portal.
    one of most strangest error I have seen.

  • Writing in to multiple sheets in Excel file based on input condition

    Hi All Experts,
    i need to write in to multiple sheets in one Excel file output.
    is it possible with UTL_FILE ? or Any options there in Oracle to do this ?
    Can anyone please suggest me on this.
    Thanks,
    Ravi

    I have seen all of them they are all just simple SQL pulls from database in to Excel file..No, definitely not
    My requirement is i need to write in to one single Excel file with MULTIPLE sheets based on input condition-> [xml_spreadsheet|http://matzberger.de/oracle/spreadsheet-en.html]
    so for each parameter need to write into separate sheet in one Excel File..-> [xml_spreadsheet|http://matzberger.de/oracle/spreadsheet-en.html]
    I hope you understand my problem atleast now...I think I understood your problem at first sight.
    If you simply want to throw 2 queries at the package and get back an Excel file with 2 worksheets you just have to look at the first page of the [tutorial |http://matzberger.de/oracle/spreadsheet-tut-en.html]. Half way down the page there's an example.
    If you want a special formatting then you can do this too, it's described step by step.
    Regards
    Marcus

  • Downloading Excel file

    Hello
    I'm using POI to generate a (dynamic) Excel file. However, I'm having a problem sending it to the end-user.
    the code described in Create an excel file from JAVA using HSSF api
    does not lead to the correct output for me. I only get some characters on the screen (that contains some strings from my sheet), but not excel.
    Currently, the button to get the excel file is in a JSP page and call a function in the JSPDynPage. If i put the code to generate the excel file in this function, i get the same characters than the stand-alone Excel-Iview. If i put a "Content-disposition" in the header, the user does get a (valid) excel file to donwload. However, in this case the portal get lost : i get errors if a do another click on th elink, and a must do another action before being able to. (i think that modifying the response and contant-type give this problem...)
    so my question is : how can i generate a excel spreadsheet in a JSPDynPage in response to a user-action, and send it to the user ?
    Regards,
    Guillaume

    Hi,
    Sorry to bother once more.
    I've implemented your solution (an Abstract component with doOnNodeReady modified). I don't think there wille be any problem with it, since the actual work with POI is in an utility class.
    The last problem seems to be the link to the component. I've made my link, as follow :
    http://sntfrcp212:50000/irj/servlet/prt/portal/prtroot/fr.canalplus.portal.templsplus.web.common.PageExcelView
    where fr.canalplus.portal.templsplus.web.common is the package of PageExcelView.
    however, i got the following error :
    iView not found: fr.canalplus.portal.templsplus.web.common.PageExcelView.
    Exception id: 06:26_22/08/05_0033_7226250
    See the details for the exception ID in the log file
    I also tried without the protocol & server (so to be indpeendant of the server), but this gives the same result.
    So, once the component is created, an exported to the portal in a .par, how should i add it to the portal, and how should i refer to it ?
    once, more, thank for the time and explanations
    (i've put rewards point on the previous answer, as it have greatly helped me)
    Guillaume

Maybe you are looking for

  • When I open a message it shows nothing. Just a blank white screen.

    I've been using Thunderbird for a couple years, this started happening about 2 weeks ago. Inbox shows new/old messages and subjects just fine but if I click on a message it opens as a blank page in a new tab. The same happens in the sent folder and a

  • I have Adobe Pro 9 and I can't insert pages into a PDF created by Adobe Pro 8

    I've looked at the other discussions about not being able to insert pages into a PDF, and tried all the suggestions, but to no avail. I think the problem is that the original PDF was created in Adobe 8, and I have Adobe 9. When I open the PDF in Adob

  • CS6  won't play mts audio,,,

    Ok, I have the latest version of CS6,just uninstalled mine and re-installed. I am running a windows 7 64 bit cpu, I have a mts file in an avchd format.  The problem is my desktop will not play the audio of this file that is giving me trouble.  It pla

  • Possible? or someother problem ?

    well experts, one experts reply for a question. i saw that he'had two profile with same. https://forums.oracle.com/forums/profile.jspa?userID=717296 https://forums.oracle.com/forums/profile.jspa?userID=920005 is there any hacker? i dont know?. and i

  • Display line item based on GL Code in BPS.

    Hi Experts, I have one requirement for BPS. When the user Enter Plan data, it will prompt a variable 0GL_ACCOUNT for user to enter the gl code. Based on the 0GL_ACCOUNT code selected by user, the system should be automatically display the line items.