Being busy was not able to write Dequotes. It was fun writing it that time ;) ,Planning to resume dequoting. :)
Syed Wayez Ahmed
Posts
-
Planing to write again the dequotes -
The Economy Is So Bad ...Firo Atrum Ventus wrote:
VB, ASP, JS, PHP and SQL are my second language
ASP is a Technology , Not a Language. :)
-
Torchwood_Maxxx_ wrote:
Man, you're a god. - walterhevedeich 26/05/2011
LOL If Man is God Then Your so called God could be a Rapist? Then Your so called God could be a Criminal? Then Your so called God could be a Alcoholic? Then Your so called God Shits Evryday? :laugh: Many more can be listed Dnt believe foolish. God is God, Neither a Monkey Nor a Man.
-
Sore FingersNo fingers anymore! ll of u Thumbs Up or else next post will be Middle Finger! LOL
-
Religious question in Lounge [modified]If Gif can be pronounced as JIF then i can call my colig JAY as GAY? what say?
-
PRON? PP in Whose Hand?Am happy knowing your intention, and i never said i dnt like humor or so. But you posted the your word there not intentions,Am happy even you dnt care for religion but you care Ethics. Thanks for your reply
-
PRON? PP in Whose Hand?Its a Verse from Holy Quran. And below is the Explaination on how to read it in symbols. And making fun of Something we dont know and about its Importance is very bad. Avoid it.:rose:
-
How do we program Live chat?Hey Richard! Thanx Again. Am on it(Looking for the articles in google), but if any article in your view is best, let me know ;) ?
-
How do we program Live chat?Hi Richard! Thnx for your replies. It seems u r angry now, being angry whn made to is quality of definately Male. I did research and found many articles which point me to use activex which i dnt want to. and i want an ajax and saved chat can you suggest me for the same? :rolleyes:
-
How do we program Live chat?Thank You for your suggestion, I dnt know what is google before. You have given me a valuable suggestion.:mad::thumbsdown:
-
How do we program Live chat?can you please give me an idea how can i implement live chat in my website? I want to know idea behind how to implement live chat Programtically. Am not looking for any gadgets or so, am looking for logic how do we in Vb.net ;) ? Any suggestion will be most appreciated.:rose: Wayez:thumbsdown: http://wayezquotes.blogspot.com
-
Copy data from one excel file to another excel fileGood Priya jii! As michael said but if you want to check with headers Just check the range in target sheet and compare to data sheet if exists paste.
if ActiveSheet.Range(Cells(1, 1)="Emp Num" then
Set rng = ActiveSheet.Range(Cells(2, 1), Cells(2, 1).End(xlDown))
Set tgt = Application.Workbooks.Open("D:\Target.xls")
rng.Copy tgt.Worksheets("Tabelle1").Cells ' tgt.Save
tgt.Close
end if -
Copy data from one excel file to another excel fileif you dont want to disturb both the header then
i=2
if you want to compare headers of both
if sheet1.cells(1,1)=sheet2.cells(1,1) then
Dim i As Integer
i = 2
While Trim(sheet2.Cells(i, 1)) <> ""
sheet1.cells(i,1)=sheet2.cells(i,1)
sheet1.cells(i,2)=sheet2.cells(i,2)
sheet1.cells(i,3)=sheet2.cells(i,3)
i=i+1
wend
End if -
Copy data from one excel file to another excel fileEven tou ur problem was not clear i tried to help you with what i have understood. You want to copy a sheet from a sheet, if a sheet has three columns below is the code.
Dim i As Integer
i = 1While Trim(sheet2.Cells(i, 1)) <> ""
sheet1.cells(i,1)=sheet2.cells(i,1)
sheet1.cells(i,2)=sheet2.cells(i,2)
sheet1.cells(i,3)=sheet2.cells(i,3)
i=i+1
wendIf you want to keep the header as it is in sheet1 and want to copy the whole thing next to it, below is the code:
Dim i As Integer
i = 1While Trim(sheet2.Cells(i, 1)) <> ""
sheet1.cells(i+1,1)=sheet2.cells(i,1)
sheet1.cells(i+1,2)=sheet2.cells(i,2)
sheet1.cells(i+1,3)=sheet2.cells(i,3)
i=i+1
wendcheers 'S wayez 'http://wayezquotes.blogspot.com