Skip to main content

Posts

Showing posts from September, 2012

Microsoft dynamics axapta ERP Keywords

Following is Keyword List Related to  Microsoft dynamics axapta ERP which generate good traffic and page impression .If you are ERP blogger then you can use following keyword for your blogs. ep intranet,axapta,dynamics axapta,x++ tutorial,active company,enterprise portal,axapta container,querybuilddatasource,axapta interview questions,axapta query,x++ language,args,dynamics ax container,axapta coverage,dynamics ax interview questions,malayappa swamy,axapta report,purchase requisitions,current company,insert_recordset,microsoft dynamics ax interview questions and answers,axapta array,container axapta,str2enum,lotid,microsoft dynamics axapta,dynamics,axapta crm,microsoft axapta tutorials,dynamics ax num2str,free anonymous proxy list 2012-07-31,miscellaneous charges,ms dynamics ax interview questions,axapta x++,axapta erp,strscan,bhoot return,axapta join,ax interview questions,axapta functional interview questions,dynamics ax. container x++,dynamics ax interview questions and answers

Hyperlink Word Document to Excel

Following code will links to the word file as link  in excel cell you able to type the filename.doc in the cell and it links to that file in a directory Private Sub HyperLinkToWordDoc() Dim oCell As Range Dim iRow As Integer Dim iCount As Integer iRow = Cells.SpecialCells(xlLastCell).Row For iCount = 2 To iRow oCell = Cells(iCount, 5) If oCell.Text <> "Link" And Len(oCell.Text) > 0 Then oCell.Hyperlinks.Add(oCell, oCell.Text, , , "Link") End If Next iCount End Sub