-5002 error ("No Data ") when adding record to a UserTable

B1 2007A
Here's my code.  I've stripped it about as far as I could to try and solve this problem... but I must be missing something.  Basically, I referenced the UIDIBasicApp for the UserTables portion.
In the "PopulateUserTable" subroutine, where I attempt to add the record with:
lngRetCode = objUserTable.Add()
... lngRetCode comes back as "-5002".  The error message is "No Data ".
I've added records with the same data into the table through B1 User-Defined Windows and it accepts the data without a problem.  I've been re-checking the code, and searching the forums and the help file since last week, and I haven't found any reference to a problem like this.
Any ideas?  Thanks!
Module Module1
    Public WithEvents objSboApp As SAPbouiCOM.Application
    Public WithEvents objSboCompanyDi As SAPbobsCOM.Company
    Public Sub Main()
        ConnectUI()
        ConnectDI()
        CreateUserTable("TP_WhereUsed")
        PopulateUserTable("TP_WhereUsed")
    End Sub
    Public Function ConnectUI()
        Dim objSboUiApi As SAPbouiCOM.SboGuiApi
        objSboUiApi = New SAPbouiCOM.SboGuiApi
        Dim sConnectionString As String
        sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056"
        objSboUiApi.Connect(sConnectionString)
        objSboApp = objSboUiApi.GetApplication
    End Function
    Public Function ConnectDI()
        objSboCompanyDi = New SAPbobsCOM.Company
        Try
            objSboCompanyDi = objSboApp.Company.GetDICompany()
        Catch
            objSboApp.MessageBox(Err.Description)
            Exit Function
        End Try
    End Function
    Public Sub CreateUserTable(ByVal TableName As String)
        Dim lngRetCode As Long
        Dim lngErrCode As Long
        Dim strErrMsg As String
        Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
        oUserTablesMD = objSboCompanyDi.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
        oUserTablesMD.TableName = TableName
        oUserTablesMD.TableDescription = TableName
        lngRetCode = oUserTablesMD.Add
        If lngRetCode <> 0 Then
            Select Case lngRetCode
                Case Is = -2035
                    'Table already exists.
                    Exit Sub
                Case Else
                    objSboCompanyDi.GetLastError(lngErrCode, strErrMsg)
                    objSboApp.MessageBox("Error - Table not created: " & strErrMsg)
            End Select
        Else
            objSboApp.SetStatusBarMessage("Table: " & oUserTablesMD.TableName & " was added successfully", SAPbouiCOM.BoMessageTime.bmt_Short, False)
        End If
    End Sub
    Private Sub PopulateUserTable(ByVal TableName As String)
        Dim lngRetCode As Long, lngErrCode As Long, strErrMsg As String
        Dim strCode As String, strName As String, intArrayCounter As Integer
        Dim objUserTable As SAPbobsCOM.UserTable
        objUserTable = objSboCompanyDi.UserTables.Item(TableName)
        intArrayCounter = 0
        Do Until intArrayCounter > 10
            strCode = "Code" & CStr(intArrayCounter)
            strName = "Name" & CStr(intArrayCounter)
            lngRetCode = objUserTable.Code = strCode
            lngRetCode = objUserTable.Name = strName
            lngRetCode = objUserTable.Add()
            intArrayCounter = intArrayCounter + 1
            objSboCompanyDi.GetLastError(lngErrCode, strErrMsg)
        Loop
    End Sub
End Module

Hi
Try your code with the lines I've added to the code of your CreateUserTable function.  Hope it works!
    Public Sub CreateUserTable(ByVal TableName As String)
        Dim lngRetCode As Long
        Dim lngErrCode As Long
        Dim strErrMsg As String
        Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
        oUserTablesMD = objSboCompanyDi.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
        oUserTablesMD.TableName = TableName
        oUserTablesMD.TableDescription = TableName
        lngRetCode = oUserTablesMD.Add
        If lngRetCode <> 0 Then
            Select Case lngRetCode
                Case Is = -2035
                    'Table already exists.
                    Exit Sub
                Case Else
                    objSboCompanyDi.GetLastError(lngErrCode, strErrMsg)
                    objSboApp.MessageBox("Error - Table not created: " & strErrMsg)
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
                    GC.Collect() ' free occupied resource
            End Select
        Else
            objSboApp.SetStatusBarMessage("Table: " & oUserTablesMD.TableName & " was added successfully", SAPbouiCOM.BoMessageTime.bmt_Short, False)
System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
            oUserTablesMD = Nothing
            GC.Collect() ' free occupied resource
        End If
    End Sub

Similar Messages

  • Save required when adding record to avoid multiple record entries@same time

    Hello, just wondering if anyone would be so kind as to help me out. I have a small problem that when a user is adding records to my form I want them to add one, then if they go on to add another at the same time (before commiting the first one) that they will be shown a prompt Which states something along the lines of "Before you add another record you must first save the first record, do you wish to do so" , yes will then commit the first record and allow the user to enter the second record, whilst cancel will not allow a second record to be entered.
    If anyone would helpout i would be very grateful.

    Hi
    Here is my suggestion, the idea is to use a global variable to memorize the fact that a record has been created :
    KEY-CREREC
    begin
              if :GLOBAL.<BLOCK-NAME>RECORDCREATED = 'FALSE' then
                   create_record;
                   :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'TRUE';
              else
                   message('Commit or delete before inserting a new record');
                   message('Commit or delete before inserting a new record');
              end if;
    end;
    =====================================================================
    KEY-DELREC
    begin
         if :system.record_status in ('NEW','INSERT') then
              :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
         end if;
         delete_record;
    end;
    ====================================================================
    KEY-COMMIT
    begin
         commit_form;
         :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
    end;
    ====================================================================
    POST-SELECT
    :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
    ====================================================================
    It's a bit more complicated if you allow the user to go beyond the last record for creating a new record, as KEY-CREREC and KEY-DELREC are not triggered.
    In this case, my suggestion is the following :
    KEY-CREREC
    begin
              if :GLOBAL.<BLOCK-NAME>RECORDCREATED = 'FALSE' then
                   if :system.last_record = 'TRUE'then
                        next_record;
                   else
                        create_record;
                        :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'TRUE';
                   end if;
              else
                   message('Commit or delete before inserting a new record');
                   message('Commit or delete before inserting a new record');
              end if;
    end;
    ===============================================================
    WHEN-NEW-RECORD-INSTANCE
    begin
         if :system.mode = 'NORMAL' then
              if :system.record_status = 'NEW' and :system.last_record = 'TRUE' then
                   if :GLOBAL.<BLOCK-NAME>RECORDCREATED = 'TRUE' then
                        message('Commit or delete before inserting a new record');
                        message('Commit or delete before inserting a new record');
                        delete_record;
                   end if;
              end if;
         end if;
    end;
    ================================================================
    KEY-DELREC
    begin
         if :system.record_status in ('NEW','INSERT') then
              :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
         end if;
         delete_record;
    end;
    =================================================================
    KEY-COMMIT
    begin
         commit_form;
         :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
    end;
    ===============================================================
    WHEN-VALIDATE-RECORD
    begin
         if :system.record_status = 'INSERT' and :system.last_record = 'TRUE' then
              :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'TRUE';
         end if;
    end;
    ==================================================================
    POST-SELECT
    :GLOBAL.<BLOCK-NAME>RECORDCREATED := 'FALSE';
    ================================================================

  • Missing birth date when adding apple-id for child

    When adding apple-id for child the field for adding birth date is missing in form.

    If they are 13 they would obtain a normal Apple ID (13 is the age cutoff historically for an Apple ID). They should create one normally and then you can associate it with your account. I don't know if purchase control will work with that.

  • Error message displayed when adding Wiki entry

    When adding a new WIKI entry in Teaming 2, this error message is sometime displayed:
    class org.kablink.teaming.module.binder.impl.WriteEntryD ataException
    Frequently, Teaming 2 seems to stop responding and the web page will time out.
    Any ideas?

    johnefleming,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Error converting data when updating table

    Hi,
    I need to understand why I cannot gat my update to work properly, I have to concat 4 fields (numbers with leading zeros so I can create a new number with leading 1. My field is already set as a bigint but I cannot convert the resulting string properly
    UPDATE table 
    set field = convert(bigint, '1', strfield1 + strfield2 + strfield3 + strfield4)
                                           1,  001      
    +   0125   + 0045      + 004568 
    The end result need to return the number 100101250045004568  to be inserted into a bigint field but I always get the following error:
    Error converting data type nvarchar to bigint
    If I try a select , it shows the proper result, so what am I missing here

    Guess I will have to wait for our new SQLServer 2012, coming in next week, I have tried every possible cast, convert possibility to make it work.
    Thank you all
    Al
    This should work fro SQL Server 2008 R2
    select CAST(('1'+ strfield1 + strfield2 + strfield3 +strfield4) AS BIGINT);
    web: www.ronnierahman.com

  • Get error in date when I load a CSV file

    I am using Oracle G10 XE and I am trying to load data into my database from comma separated files.
    When I load the data from a CSV file which has the date with the following format "DD/MM/YYYY", I received the following error "ORA-01843: not a valid month".
    I have the NSL_LANG set to AMERICAN. I have tried the following command: "ALTER SESSION SET NLS DATE FORMAT="DD/MM/YYYY" and this does nothing. When I try to run "SELECT SYSDATE "NOW" FROM DUAL;" I get the date in this format "10-NOV-06".
    I will appreciate any help about migrating my data with date fields in format DD//MM/YYYY.
    Sincerely,
    Polonio

    See this example :
    [oracle work XE]$ cat test.dat
    1,11/10/2006
    2,01/11/2006
    3,06/11/2006
    [oracle work XE]$ cat test.ctl
    load data
    infile 'test.dat'
    replace
    into table test
    fields terminated by ','
    trailing nullcols
    a integer external,
    b "to_date(:b,'dd/mm/yyyy')"
    [oracle work XE]$ sqlldr test/test control=test.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Fri Nov 10 21:38:19 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 3
    [oracle work XE]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 10 21:38:25 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    TEST@XE SQL> desc test
    Name                                                  Null?    Type
    A                                                              NUMBER
    B                                                              DATE
    TEST@XE SQL> select * from test;
                  A B
                  1 11-OCT-06
                  2 01-NOV-06
                  3 06-NOV-06
    TEST@XE SQL>                                                    

  • Error in query when adding prompts

    Hello Everyone,
    I have a simple query which is working just fine in query manager. Now, I need to narrow the query by adding two prompts. However, when I add a prompt, it will complain with an error saying:
    Incorrect Syntax Near pch1.itemcode...
    However, I am NOT using that table.. in fact, the query access an external table...
    I have read note 0000730960 SAP Business One does not identify variables in long queries, but this is not the case.
    I have reduced the query to just:
    select
         t0.airline_id as 'Airline'
    from     
         hostostmp..flights t0
    where
         t0.airline_id='[%0]'
    but it is still giving me the error...
    Even more, if I change the query for some actual real value, it will work. For instace, t0.airline_id='MP' it will work like a charm.
    I use prompts (up to 3 prompts) in many other querys with no problems...
    But this one, is a really wierd one. Support insists in reducing the query, based on the note, but this is simple a shot in the dark. They have no idea.
    So, any hint will certainly be apprecieted.
    Best regards,
    Leo

    Hi Leonardo,
    I'm afraid I don't think you can use prompts on external tables. Your other queries you mention, are the prompts on SBO tables or external tables?
    As you know, when a prompt is inserted in to a query, SBO generates a separate window that allows the user to enter values for any prompts. If SBO does not recognise the table as a system table then it cannot generate the prompt window and the query fails (..and you get that misleading error message).
    Kind Regards,
    Owen

  • Error An unknown error has occurred when adding email to Apple ID

    I am trying to merge two Apple ID's into one. On one I changed the primary email address to an unused email address so I can take the former primary email address and add that email adress to the second Apple ID. When I try to add the email address that used to be the primary email address of the first Apple ID to the second Apple ID (either as a change to the main email address or add a secondary email address) I get the error "An unknown error has occurred." When I go back into the first Apple ID it will add that original email address as a primary or secondary account without any issues. But I get the same error if I try and add that original email address to any other Apple ID (I even tried adding it to a third Apple ID). It would appear that an email address used as an Apple ID cannot be used with any other Apple ID account. Is that correct?

    Apple’s having trouble with the Mac App Store and iTunes App Store right now. Try again later.
    (123845)

  • Exclude duplicate or overlapping data when adding time fields

    Post Author: Mark O
    CA Forum: Formula
    I am using Crytsal Reports XI.  I have a several rows of start times, end times and total minutes.  I would like to get a total time but some of the times are duplicates or overlapping each other.  These duplicates/overlaps are not errors; they need to be in the report.  I just can't double count the time.  I am seeking a result of 45 Total Min in the below example.  Thanks.
    Start Time
    End Time
    Total Min
    2:45 PM
    3:15 PM
    30
    3:00 PM
    3:15 PM
    15
    3:00 PM
    3:30 PM
    30
    75

    Post Author: Jagan
    CA Forum: Formula
    I'm not sure if your example is misleading!
    For what you've shown a simple calculation between the start time of the first record and the end time of the last record gives your answer (assuming an ascending sort on start time, end time). However, this might just be because there's always an overlap in your example data.
    Another solution might be to compare the start time of each record with the end time of the previous record, and choose the appropriate one of these as a new 'start time' for each record. But this might just be because the end times in your example data are always >= the end time of the previous record.
    Is the following example possible? Would you want the final answer to be 50?
    Start Time
    End Time
    Total Min
    2:45 PM
    3:15 PM
    30
    3:20 PM
    3:40 PM
    20
    3:25 PM
    3:35 PM
    10

  • Getting the error (23::46) when adding effects to comp

    Hi all,
    If I try to add effects like Text-->Numbers or Obsolete-->Basic Text to a solid in my comp, i get the following error message "After Effects error: could not convert Unicode characters.". I have done some research on this and found people that had the same issue when trying to import footage or images. I get the message just by starting a new comp adding a solid and then try to add the effects mentioned above, so their is no footage or image involved here.
    I`m running on Win7 Professional 64bit service pack 1 (english) and After Effects CC (12.2.1.5). I don`t think this is part of the problem but here are more hardware infos (just in case):
    - NVIDIA GTX 570
    - Intel Core i7 2600K
    - 16GB DDR3 Corsair (CMZ16GX3M4A1600C9)
    - ASUS P8P67 Mainboard
    I`m running AE cc on a Lenovo U310 aswell and do not have any issues there, so I assume something must be wrong with the OS or with AE on my main PC. Does anyone have a clue what`s wrong?
    Glad for any hint.
    Thanks Michael

    Thank you for your answear,
    The thing is though, I don`t try to open a project or import a file when the error shows up. I simply start AE, make a new comp, add a solid and then try to add the "Numbers" or "Basic Text" effect to that solid. I simply can not imagine how this has something to do with characters in any file name or path. It doesn`t makle sense to me.
    Any other ideas?
    Thanks Michael

  • Error code 9672 when adding an EPSON C120?

    Like a lot of you, I have been frustrated with an error code that seems to be prohibiting me from adding my EPSON C120 printer to the printer list. I have spent extensive time talking to EPSON Support. I have checked and rechecked the cables. The printer is brand new and printed for about a day and a half. Then, then next time I needed to print was a week later, that is when I started having problems. It started as a Communications error message, I fixed that with clearing up some memory. Then the print jobs would be stopped automatically. In trying to fix that (Epson suggested uninstalling/re-installing) now the computer will not let me add the printer to the list. I am not trying to run the printer off an airport, it has always been plugged into the back of the computer. Does anybody else have any suggestions in order to solve this problem, please?!?

    The problem seemed to be that we were printing to two epson Printers, a cx5400 and a 7800.
    I repaired permissions.
    Then I deleted the epson print drivers by putting the epson folder which is in the Library folder in the trash. Next I deleted the printer preferences by putting all the apple.print files in the users, home folder, library, preferenced folder in the trash and rebooted.
    I had to reinstall the printer driver for the 5400 first, It requires a reboot, then reinstall the 7800 print driver. Then I connected the 7800 from my g5 via usb, added the printer and printed. Next I put the put the 7800 on the Airport Express, added the printer and printed. I then printed to the 5400 and deleted the printer I defined to print via usb from the G5.
    Now it works. I tried to install the drivers and add the printers in many different orders and it seemed to be very important that the order above be followed. If I didn't I would get the 9672 error when I tried to add the 7800 or a communications error when I tried to print to the 7800.
    Support at epson let me know how to deleted the printer driver.

  • Since last iTunes update a error msg appear when adding new songs

    Since the last iTunes update i cannot add any music or video to my iPod Video ... cause when i add it to library and click update ipod... it appears a message error like this:
    "Some of the songs in the iTunes music library, including the song "say thename of the last song i added", were not copied to the iPod "Mine's iPod" because they cannot be played on this iPod."
    I already reinstall iTunes software and the problem continue... anyone knwos a fix for these?
    THX

    plz plz some help here!

  • Error in convertCurrencyValueInternalToExternal when adding prod to cart

    Hi,
    I am getting runtime error when i add particular prodct in the order page and press the update button.
    I check the log files and found the error, the error is
    A runtime exception occurred on the highest level
    [EXCEPTION]
    java.lang.NullPointerException
    at com.sap.spc.remote.client.rfc.PricingConverter.convertCurrencyValueInternalToExternal(PricingConverter.java:119)
    When I check the java code in PricingConverter it shows the error in getting numberOfDecimals
    //Converting internal currency value (" + decimal.toString() + unit + ") to external.
    HashMap numberOfDecimals = getNumberOfDecimalsForCurrencies(session, language);
            if ((numberOfDecimals != null) && (unit != null)) {
                scale = ((Integer) numberOfDecimals.get(unit)).intValue(); // getting error in this line
    the above one is the standard code.
    Please help me to find the error.
    Thanks
    Giri Babu

    hi Giri,
    Check in sold to party master data whether the currency is maintained there?
    Thanks and Regards
    shanto aloor

  • Creative Zen 8gb- unknown error/access denied when adding mu

    This is so frustrating....please help!? I have already reformatted, disk cleanup, reset and still nothing. When I'm trying to add new music to my Creative Zen 8gb I get the both error messages : "unknown error" when using the Media Zen 'browse media' option and when using the Windows Explorer drag and drop selection "access denied". Please help I've tried almost everything and it won't copy any music not even pictures.

    What operating system do you have? Win Xp (sp2) (sp3) or Vista?
    Note: I can only help you on Win Xp (Sp2)
    Try this:
    . Go into the "Recovery Mode" on the Zen disconnected from the PC and clean-up & reboot.
    Check to see if this fixed your problem?
    Next
    . Connect your Zen to the PC
    2. Select "Organize media files in this device using Creative Media Explorer"
    3. You should have a "docked screen" ?
    4. Under Windows, Control Panel, System, Hardware, Device Manager then look under Portable Device then
    look for Blue (Yellow is bad) Creative Zen then check to see if the device is ok.
    Do this for error code (0)
    http://www.pchell.com/hardware/usbcode0.shtml
    Do this for error code (9)
    http://technet2.microsoft.com/window....mspx?mfr=true
    Check back
    BTW - I hope you are adding music to the right folder e.g. Creative Zen (My Zen) Media Library / Music
    Cheers

  • VMM 2012 R2: error 410 / 0x80070001 when adding a new Hyper-V host. VMM Agent won't install automatically (status 1603)

    I have several Windows Server 2012 R2 hosts. The OS is freshly installed, no roles/3d party software besides Hyper-V role). I also have a freshly installed VMM 2012 R2 server. They all are in the same AD domain. I want to manage those Hyper-V hosts
    with this VMM instance, but I have troubles connecting those hosts to VMM.
    Whenever I try to add a Hyper-V host in the VMM console, the process is stopped almost immediately after it starts. The failing step is "1.2 Install Virtual Machine Manager Agent". The final error message is as follows:
    Error (410)
    Agent installation failed on XXX.
    Incorrect function (0x80070001)
    Recommended Action
    Try the operation again. If the problem persists, install the agent locally and then add the managed computer.
    If I try to install the agent manually copied from the VMM host (C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\agents\amd64\3.2.7634.0
    as of now) by just clicking on its MSI file in Windows Explorer (and agreeing to the Windows prompt to run it with elevated privileges), the installation fails as well with "Installation success or error status: 1603." in the
    server Application log.
    The only way I found to install the agent is to run the installation from command prompt with elevated privileges. In this case the installation finishes successfully, and I can add the host to VMM by marking the "Reassociate the host" checkbox
    in the VMM wizard.
    Why is it so? Isn't the agent supposed to install without manual intervention? As I recall, I had no such problem with previous versions of Windows Server and VMM.
    Evgeniy Lotosh
    MSCE: Server infractructire, MCSE: Messaging

    I brought up the share because it is off by default with Hyper-V Server as well as a Core installation.  Regardless of the Firewall policy involved.
    Maybe, but I don't work with pure Hyper-V and Core servers. I have a full-fledged Windows Server 2012 R2 Datacenter.
    You're correct that File Server role is not enabled by default, this is my mistake. I open SMB-IN port manually (with the help of a group policy), and Windows considers it to be am equivalent of the enabled File Server role. Nonetheless, ADMIN$ share is
    always accessible in my environment (and without it, for example, I wouldn't be able to remotely install things like SCOM Agent which installs without a glitch). Just in case I manually installed the File Server role, and it didn't help.
    What you say about multihomed servers is interesting. The servers in question do have multiple network interfaces, but at the time I tried to install the VMM Agent only one of them (a designated host management / network access interface) had a real IP address.
    Two other interfaces were non-configured (I apply a virtual switch configuration after the VMM Agent is installed). Just in case I disabled them when tried to install the VMM Agent remotely on the last host, and the installation still failed immediately
    after start. Anyways, after the VMM Agent is installed manually the host can be normally re-associated with VMM, so it's doubtful that I have a network issue.
    And, of course, there is no 3d-party software on the hosts (no antiviruses/firewalls in particular) except the EMC Unisphere Host Agent (a piece of software necessary for connecting a host to an EMC storage system) and networking drivers. Actually,
    this is a pure Microsoft environment.
    So I still believe that is has something to do with the Windows Installer inability to configure Windows Firewall policy after being invoked from Windows Explorer with a double-click on a MSI file. But I don't know how to strictly confirm it.
    Evgeniy Lotosh
    MSCE: Server infractructire, MCSE: Messaging

Maybe you are looking for

  • How do I add 2003 Exchange account to Mail using Snow Leopard

    I have my Exchange 2003 account working on my iPhone perfectly. I recently upgraded to Snow Leopard and would like to add the account to Mail. When I go through the set-up it asks me different info than the iPhone did. I've tried several possibilitie

  • Installation error solaris 8

    when i installed solaris 8 , i had got the following error error : assertion failure : "bp != 0","devdb.c" line 788 The root filesystem is not mounted and the configuration assistant has existed prematurely. Boot is unlikely to succeed. anybody has e

  • How to load a picture in Crystal Report ?

    hi all i want load picture in crystal report 10 from path example i have text1 in my vb form this text = path "C:\image.jpg" i need load this path in crystal report picture thank you all

  • I need A help me

    Hello I hope to be back to activate my account

  • Saving webpage on safari

    Does anyone know how to save a webpage as the home for safari???