CLEAR GLASS BOTTLE 100ML







 


Description: 
 
Hand tools Type : Crimping Manual Machine for Perfume Bottles Sprayer 15MM & 18MM





































 
Description: 
 
With top notes of rosemary and base notes of moss, leather and musk, this strong scent is perfect for the strong woman. Estevia parfum's best seller in dubai for 4 consecutive years.
 






Description: 
 
Quinn is a blanket of flowers, the floral notes allows it to be one of the most fresh scents by Estevia. The best part is, it is an appropriate fragrance for both day and night time. Feel like a fresh queen wearing Quinn.
ORDER















Description:


An aromatic fragrance that inspires the scent of freedom, full of wind and water. The composition is a perfect harmony of Bermagot, Lemon and White Musk building a sunny warmth on the skin. 

 











FOB:                        FOB (Free On Board) is a term in international commercial law specifying at what point respective obligations, costs, and risk involved in the delivery of goods shift from the seller to the buyer. ... In international trade, ownership of the cargo is defined by the bill of lading or waybill.
CFR:                         Cost and Freight (CFR) is a legal term used in international trade. In a contract specifying that a sale is made CFR, the seller is required to arrange for the carriage of goods by sea to a port of destination and provide the buyer with the documents necessary to obtain the goods from the carrier.
CIF:                          Cost, insurance and freight (CIF) is a trade term requiring the seller to arrange for the carriage of goods by sea to a port of destination, and provide the buyer with the documents necessary to obtain the goods from the carrier.
EXW:                       (EX WORKS ) The ICC has set aside Incoterms rules for inland waterway and sea transport, such as free on board (FOB) and cost, insurance and freight (CIF). ... The buyer or seller may assume all the risks and transportation costs, depending on whether the goods are sold under FOB shipping point or FOB destination point.
CIP:                          Carriage and insurance paid to (CIP) is a commercial term indicating that the seller delivers the goods to a carrier or to another person nominated by the seller, at a place mutually agreed upon by the buyer and seller, and that the seller pays the freight and insurance charges to transport the goods to the specified ...
DDP:                        Delivered Duty Paid (named place of destination) Seller is responsible for delivering the goods to the named place in the country of the buyer, and pays all costs in bringing the goods to the destination including import duties and taxes. The seller is not responsible for unloading.
DDU:                       DDU is an international trade where the seller is responsible for making a safe delivery of goods to a named destination, paying all transportation expenses and assuming all risks during transportation except for the duty once it arrives to port.
Express Delivery:   Express mail. ... Express mail is an accelerated mail delivery service for which the customer pays a surcharge and receives faster delivery. Express mail is a service for domestic and international mail and is in most countries governed by a country's own postal administration.





Clear Surlyn Gold Plated Cap


Clear Shiny Gold with Collar
Perfume Bottles Cap with Additional Bottle Adjustment Collar
Screen Printing INK WG-2180

CONTACT US

Wadaan Industries L.L.C.
POB: 86496, Ras Al-Khaimah, U.A.E.
Phone: +971 7 243 8260
Mobile: +971 50 3699200
Email: info@wadaan.ae
Location Map
Precious INK

Decorated Crystal Bottle



How to Convert a Numeric Value into English  Words in Excel 2007-2010

______________________________________________________









How to create the sample function Called SpellNumber

  1. Start Microsoft Excel.
  2. Press ALT+F11 to start the Visual Basic Editor.
  3. On the Insert menu, click Module.
  4. Type the following code into the module sheet.
Option Explicit
'Main Function
Function SpellNum_Dirham(ByVal MyNumber)
    Dim Dirham, Fils, Temp
    Dim DecimalPlace, Count
    ReDim Place(9) As String
    Place(2) = " Thousand "
    Place(3) = " Million "
    Place(4) = " Billion "
    Place(5) = " Trillion "
    ' String representation of amount.
    MyNumber = Trim(Str(MyNumber))
    ' Position of decimal place 0 if none.
    DecimalPlace = InStr(MyNumber, ".")
    ' Convert Fils and set MyNumber to dollar amount.
    If DecimalPlace > 0 Then
        Fils = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
                  "00", 2))
        MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
    End If
    Count = 1
    Do While MyNumber <> ""
        Temp = GetHundreds(Right(MyNumber, 3))
        If Temp <> "" Then Dirham = Temp & Place(Count) & Dirham
        If Len(MyNumber) > 3 Then
            MyNumber = Left(MyNumber, Len(MyNumber) - 3)
        Else
            MyNumber = ""
        End If
        Count = Count + 1
    Loop
    Select Case Dirham
        Case ""
            Dirham = "No Dirham"
        Case "One"
            Dirham = "One Dollar"
         Case Else
            Dirham = Dirham & " Dirham"
    End Select
    Select Case Fils
        Case ""
            Fils = " and No Fils"
        Case "One"
            Fils = " and One Cent"
              Case Else
            Fils = " and " & Fils & " Fils"
    End Select
    SpellNum_Dirham = Dirham & Fils
End Function
____________________________________________________