MsFlexGrid用法大全(转)

MsFlexGrid用法大全(转)
MsFlexGrid用法大全(转)

VB中MsFlexGrid控件的使用细则(收集)

>> 将文本赋值给MsFlexGrid的单元格

MsFlexGrid.TextMatrix(3,1)=”Hello”

>> 在MsFlexGrid控件单元格中插入背景图形

Set MsFlexGrid.CellPicture=LoadPicture(“C:\temp\1.bmp”)

>>选中某个单元

MsFlexGrid.Row=1

MsFlexGrid.Col=1

>>用粗体格式化当前选中单元

MsFlexGrid.CellFontBold=True

>> 添加新的一行

使用AddItem方法,用Tab字符分开不同单元格的内容

dim row as string

row=”AAA”&vbtab&”bbb”

MsFlexFrid1.addItem row

>>怎样来实现MSFlexGrid控件单数行背景为白色,双数的行背景为蓝色?

Dim i As Integer

With MSFlexGrid1

.AllowBigSelection = True ’设置网格样式

.FillStyle = flexFillRepeat

For i = 0 To .Rows - 1

.Row = i: .Col = .FixedCols

.ColSel = .Cols() - .FixedCols - 1

If i Mod 2 = 0 Then

.CellBackColor = &HC0C0C0 ’浅灰

Else

.CellBackColor = vbBlue ’兰色

End If

Next i

End With

>> MSFlexGrid控件如何移到最后一行

MSFlexGrid1.TopRow = MSFlexGrid1.Rows – 1

>>如何判断msflexgrid有无滚动条

Declare Function GetScrollRange Lib "user32" (ByVal hWnd As Long, ByVal nBar As Long, lpMinPos As

Long, lpMaxPos As Long) As Long

Public Const SB_HORZ = &H0

Public Const SB_VERT = &H1

Public Function VsScroll(MshGrid As MSHFlexGrid) As Boolean ’判断水平滚动条的可见性

Dim i As Long

VsScroll = False

i = GetScrollRange(MshGrid.hWnd, SB_HORZ, lpMinPos, lpMaxPos)

If lpMaxPos <> lpMinPos Then VsScroll = True

End Function

Public Function HeScroll(MshGrid As MSHFlexGrid) As Boolean ’判断垂直滚动条的可见性

Dim i As Long

HeScroll = False

i = GetScrollRange(MshGrid.hWnd, SB_VERT, lpMinPos, lpMaxPos)

If lpMaxPos <> lpMinPos Then HeScroll = True

End Function

>>程序运行时,想动态增加MSFlexgrid的列数

在第2列后插入一列:

Private Sub Form_Load()

Me.MSHFlexGrid1.Cols = 5

MSHFlexGrid1.Rows = 2

For i = 0 To Me.MSHFlexGrid1.Cols - 1

Me.MSHFlexGrid1.TextMatrix(0, i) = i

Me.MSHFlexGrid1.TextMatrix(1, i) = i

Next

End Sub

Private Sub Command1_Click()

Me.MSHFlexGrid1.Cols = Me.MSHFlexGrid1.Cols + 1

Me.MSHFlexGrid1.ColPosition(5) = 3

End Sub

>> 请教MSFlexGrid中的对齐功能的使用

设置MSFlexGrid1.ColAlignment(index)=n

>>得到MSFlexGrid控件中当前选中的一行

msflexgrid1.rowsel就是当前选中行

>> 如何通过代码调节列宽度

msflexgrid1.colwidth(i)=4000

将MsFlexGrid控件的内容输出到文本

2004-03-19 14:25:18

'OutDataToText

'将MsFlexGrid控件中显示的内容输出到文本文件Public Sub OutDataToText(Flex As MSFlexGrid) Dim s As String

Dim i As Integer

Dim j As Integer

Dim k As Integer

Dim strTemp As String

On Error GoTo Ert

Me.MousePointer = 11

On Error Resume Next

DoEvents

Dim FileNum As Integer

FileNum = FreeFile

Open "d:aa.txt" For Output As #FileNum

With Flex

k = .Rows

For i = 0 To k - 1

strTemp = ""

For j = 0 To .Cols - 1

DoEvents

strTemp = strTemp & .TextMatrix(i, j) & "," Next j

Print #FileNum, Left(strTemp, Len(strTemp) - 1) Next i

End With

Close #FileNum

Me.MousePointer = 0

MsgBox "导出成功"

Ert:

MsgBox Err.Description

Me.MousePointer = 0

End Sub

增加 MsFlexGrid 的编辑功能

(作者:佚名加载日期: 2002/3/31)

概述

MsFlexGrid 控件没有提供文本编辑的功能,下面的例子演示了如何利用一个TextBox 实现编辑当前网格的功能

在按下一个键后,就把TextBox 移动到当前的位置,并激活。在键入回车或移动到其他网格时,

就把TextBox 中的内容放到网格中。

实现步骤

1 打开 VB5,开启一个新的工程。

2 在菜单“工程”中选择“部件”,在列表中选中“Microsoft FlexGrid Control ..”

3 放一个 MsFlexGrid 控件和一个TextBox 控件(Text1)到 Form1。修改MsFlexGrid 控件的名称为 Grid1,

设置Grid1 的行,列为 4,固定行,列为 0。设置 Text1 的 Visiable 为 False,BorderStyle 为

None(0)。

4 在Form1 的代码中增加声明:

Const ASC_ENTER = 13 '回车

Dim gRow As Integer

Dim gCol As Integer

5 增加代码到 Grid_KeyPress 过程:

Private Sub Grid1_KeyPress(KeyAscii As Integer)

' Move the text box to the current grid cell:

Text1.Top = Grid1.CellTop + Grid1.Top

Text1.Left = Grid1.CellLeft + Grid1.Left

' Save the position of the grids Row and Col for later:

gRow = Grid1.Row

gCol = Grid1.Col

' Make text box same size as current grid cell:

Text1.Width = Grid1.CellWidth - 2 * Screen.TwipsPerPixelX

Text1.Height = Grid1.CellHeight - 2 * Screen.TwipsPerPixelY

' Transfer the grid cell text:

Text1.Text = Grid1.Text

' Show the text box:

Text1.Visible = True

Text1.ZOrder 0 ' 把 Text1 放到最前面!

Text1.SetFocus

' Redirect this KeyPress event to the text box:

If KeyAscii <> ASC_ENTER Then

SendKeys Chr$(KeyAscii)

End If

End Sub

6 增加代码到 Text1_KeyPress 过程:

Private Sub Text1_KeyPress(KeyAscii As Integer)

If KeyAscii = ASC_ENTER Then

Grid1.SetFocus ' Set focus back to grid, see Text_LostFocus.

KeyAscii = 0 ' Ignore this KeyPress.

End If

End Sub

7 增加代码到 Text1_LostFocus 过程:

Private Sub Text1_LostFocus()

Dim tmpRow As Integer

Dim tmpCol As Integer

' Save current settings of Grid Row and col. This is needed only if

' the focus is set somewhere else in the Grid.

tmpRow = Grid1.Row

tmpCol = Grid1.Col

' Set Row and Col back to what they were before Text1_LostFocus:

Grid1.Row = gRow

Grid1.Col = gCol

Grid1.Text = Text1.Text ' Transfer text back to grid.

Text1.SelStart = 0 ' Return caret to beginning.

Text1.Visible = False ' Disable text box.

' Return row and Col contents:

Grid1.Row = tmpRow

Grid1.Col = tmpCol

End Sub

8 好了。按 F5 开始测试。您可以自由地在 Grid 中移动,按回车可以开始或结束编辑。使用MsFlexGrid控件的几个函数

作者:中国论坛网收集来源:https://www.360docs.net/doc/a910549044.html, 加入时间:2004-8-25

在VB处理数据显示的时候,使用表格是一种好的方法,虽然DataGrid可以与数据源绑定,但是总有美中不足,就是

外观不好看,所以有时应用MsFlexGrid显示数据还是一种比较好的方法,以下几个函数是用来控制MsFlexGrid的

程序

(本人语言表达能力有限,还请见谅)

''MsFlexGrid操作函数

''合并列

Public Function MergeCol(GridObj As Object, ByVal StartCol As Long, ByVal EndCol As Long, ByVal

ColValue As String, ByVal CurrentRow As Long) As Boolean

If StartCol > EndCol Or StartCol > GridObj.Cols Or CurrentRow > GridObj.Rows Then MsgBox "对不起,行列设置错误!", vbOKOnly, App.Title

MergeCol = False

Exit Function

End If

For I = StartCol To EndCol

GridObj.MergeCol(I) = True

GridObj.TextArray(faIndex(GridObj, CurrentRow, I)) = ColValue

GridObj.ColAlignment(I) = flexAlignCenterCenter

Next I

GridObj.MergeRow(CurrentRow) = True

MergeCol = True

End Function

''合并行

Public Function MergeRow(GridObj As Object, ByVal StartRow As Long, ByVal EndRow As

Long, ByVal

RowValue As String, ByVal CurrentCol As Long) As Boolean

If StartRow > EndRow Or StartRow > GridObj.Rows Or CurrentCol > GridObj.Cols Then MsgBox "对不起,行列设置错误!", vbOKOnly, App.Title

MergeRow = False

Exit Function

End If

For I = StartRow To EndRow

GridObj.MergeRow(I) = True

GridObj.TextArray(faIndex(GridObj, I, CurrentCol)) = RowValue

GridObj.ColAlignment(CurrentCol) = flexAlignCenterCenter

Next I

GridObj.MergeCol(CurrentCol) = True

MergeRow = True

End Function

''转换索引

Public Function faIndex(GridObj As Object, ByVal row As Integer, ByVal col As Integer) As Long

If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then

MsgBox "对不起,行列设置错误!", vbOKOnly, App.Title

faIndex = -1

Exit Function

End If

faIndex = row * GridObj.Cols + col

End Function

''插入行

Public Function SetItem(GridObj As Object, ByVal row As Integer, ByVal col As Integer, ByVal

SetValue As String) As Boolean

If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then

MsgBox "对不起,行列设置错误!", vbOKOnly, App.Title

SetItem = False

Exit Function

GridObj.TextArray(faIndex(GridObj, row, col)) = SetValue

SetItem = True

End Function

''得到单元格值

Public Function GetItem(GridObj As Object, ByVal row As Integer, ByVal col As Integer) As String

If row > GridObj.Rows Or row < 0 Or col > GridObj.Cols Or col < 0 Then

MsgBox "对不起,行列设置错误!", vbOKOnly, App.Title

GetItem = ""

Exit Function

End If

GetItem = GridObj.TextArray(faIndex(GridObj, row, col))

End Function

在msflexgrid控件中每一个cell格的内容是不可以由用户直接编辑的但是我们可以通过一些小技

巧来方便的实现这编辑功能来扩展msflexgrid的应用(在实际应用中这是很常用的功能)。

你只需按下面的做即可轻松实现编辑msflexgrid控件数据的功能

例在窗体上放一文本框txtvalue,和一msflexgrid控件grid

‘文本框控件的keypress事件

private sub txtvalue_keypress(keyascii as integer)

‘放入一些处理过程,如只需输入数字时的处理

dim i

i=1

end sub

private sub txtvalue_change()

grid.text = txtvalue.text

end sub

'在grid的entercell事件中加入下例代码

private sub grid_entercell()

txtvalue.text = grid.text

txtvalue.selstart = 0

txtvalue.sellength = len(txtvalue.text)

'当用户输入数据时直接调用文本框的keypress事件

private sub grid_keypress(keyascii as integer)

txtvalue_keypress keyascii

end sub

ok,这样一个可编辑的msflexgrid控件就完成了,简单吧!!

原理

当用户点击msflexgrid中的某个cell格要输入数据时,产生entercell事件,在这里我们对文本

框进行初始化,输入当前cell格中的内容,并且选中所有文本。当用户要按下按键进行输入时,就直

接调用txtvalue的事件,由文本框来处理.

英语连接词转折词归纳讲解学习

英语连接词转折词归 纳

一) 连接词 比较:rather than(而不是。。),better than,other than(除了。。),compare with(比较,强调相似性)compare to(把。。比作),in contrast to(对照,强调差异),similar to,superior to(比。。。好),inferior to。(1)表选择关系或对等关系的连接词:either…or…,neither…nor, or, as well as…, and, both…and…。 (2)表因果关系或对等关系的连接词:threrby,as for,since,therefore, so, as a result, as the result of …,because of, due to …,owing to, thanks to等。(3)表时间顺序的连接词:the moment, as soon as, at first, then, later, meanwhile, at the beginning, in the end, before long, for the first(second…)time, the minute等。 (4)表转折关系的连接词:though,although,nevertheless,even though,even if,while,in fact,far from it,ironically(讽刺的),traditionally,yet, and yet, but , while, on the contrary, on the other hand, however, at the same time(然而)等。 (5)表解释说明的连接词:that is, that is to say, in other words, such as, for instance, and so on, etc. and the like等。 (6)表递进关系的连接词:not only…but (also), what’s more, what's worse, besides, in addition, worse still, moreover, above all等。 (7)表示总结的连接词:in a word, on the whole, in short, briefly, in brief, to sum up, in all等。 (二)、常用句型

英语写作常用连接词及句型

英语写作常用连接词及句型 表示罗列增加 First/first of all, , sec on dly, thirdly, …fi nally , For one thing …for another …,On (the ) one hand???on the other hand , 表示时间顺序 First, ?…the n / n ext, ?….after that / next ?….,fin ally now, at present, recently, after, afterwards, after that, after a while, in a few days, at first, i n the beg inning, to beg in with, later, n ext, fin ally, immediately, soon, sudde nly, all of a sudde n, at that mome nt, as soon as, form now on, from the n on, at the sametime, mean while, till , not ?…un til , before , after , whe n, while , as during , 表示解释说明 for example, for in sta nee, in this case, in fact, actually 表示转折关系 but, however, while, though, or, otherwise, on the contrary, on the other,? ?in spite of, eve n though, except (for), in stead, 表示并歹y关系 or, and , also , too , not only … but also , as well as, both … and, either ???or,

英语作文中转折连接词汇总

英语作文中转折连接词汇总

一、近义词汇: 1.完全:absolute, unconditional, unlimited, complete, unrestricted, unmixed, perfect, entire 2.好:extraordinary, amazing, miraculous, marvelous, stupendous, excellent, good, well, wonderful, fine, nice, of high quality, pleasing, surprising, agreeable 3.小:small, diminutive, puny, little, pocket-sized, petit, minute, tiny 4.多:big , enormous, large, gigantic, vast, tremendous, gargantuan, huge, immense, a lot of, lots of, many, much, plenty of, a great deal of, a number of, an amount of, a great many, a good many, many a, scores of, dozens of, a great quantity of 5.高兴,快乐:delighted, delightful, pleased, pleasing, charmed, pleasant, cheerful, cheering, merry, happy, gratified, glad, gay, agreeable, friendly, content, satisfied, light-hearted, joyful 6.真的:True, truthful, veracious, faithful, accurate, loyal, staunch, genuine, honest, real, trustworthy, constant. 7.全,都:all, whole, entire, complete, perfect, total, the whole number of , unbroken , gross 二、常见的连接词汇总 -------------------------- 表递进moreover, in addition, what is more,furthermore, also, then, besides, etc. 表转折however, nevertheless, on the other hand, on the contrary, etc. 表层次on the one hand, ... on the other hand; first, ... second, ... finally; 表强调firstly, ... secondly, ... finally ...;first, ... then ... etc. 表强调in fact, indeed, actually, as a matter of fact, obviously, apparently, 表结果evidently, first of all, undoubtedly, without any shadow of doubt, etc. 表结尾therefore, as a result, then, consequently, accordingly, thus, etc. 表例举in a word, in conclusion, therefore, in short, to sum up, etc. 表强调still, Indeed, apparently, oddly enough, of course, after all, significantly, interestingly, also, above all, surely, certainly, undoubtedly, in any case, anyway, above all, in fact, especially. Obviously, clearly. 表比较like, similarly, likewise, in the same way, in the same manner, equally. 表对比by contrast, on the contrary, while, whereas, on the other hand, unlike, instead, but, conversely, different from, however, nevertheless, otherwise, whereas, unlike, yet, in contrast. 表列举for example, for instance, such as, take ... for example. Except (for), to illustrate. 表时间later, next, then, finally, at last, eventually, meanwhile, from now on, at the same time, for the time being, in the end, immediately, in the meantime, in the meanwhile, recently, soon, now and then, during, nowadays, since, lately, as soon as, afterwards, temporarily, earlier, now, after a while. first after a few days eventually at that time in the meantime meanwhile afterward from then on 表顺序first, second, third, then, finally, to begin with, first of all, in the first place, last, next, above all, last but not the least, first and most important. 表可能presumably, probably, perhaps. 表解释in other words, in fact, as a matter of fact, that is, namely, in simpler terms. 表递进What is more, in addition, and, besides, also, furthermore, too, moreover, furthermore, as well as, additionally, again. 表让步although, after all, in spite of..., despite, even if, even though, though, admittedly, whatever may happen. 表转折however, rather than, instead of, but, yet, on the other hand, unfortunately. whereas 表原因for this reason, due to, thanks to, because, because of, as, since, owing to. 表结果as a result, thus, hence, so, therefore, accordingly, consequently, as consequence. 表总结on the whole, in conclusion, in a word, to sum up, in brief, in summary, to conclude, to summarize, in short. 其他类型连接词 Mostly, occasionally, currently, naturally, mainly, exactly, evidently, frankly, commonly, for this purpose, to

英语作文常用连接词新完整版

英语作文常用连接词新 HEN system office room 【HEN16H-HENS2AHENS8Q8-HENH1688】

英语作文常用连接词(一)连接词(1)表选择关系或对等关系的连接词:either…or…,neither…nor, or, as well a s…,a n d,b o t h…a n d…。(2)表因果关系或对等关系的连接词:therefore, so, as a result, as the r e s u l t o f…,b e c a u s e o f,d u e t o…,o w i n g t o,t h a n k s t o等。(3)表时间顺序的连接词:the moment, as soon as, at first, then, later, meanwhile, at the beginning, in the end, before long, for the first (s e c o n d…)t i m e,t h e m i n u t e等。(4)表转折关系的连接词:yet, and yet, but , while, on the contrary, on t h e o t h e r h a n d,h o w e v e r,a t t h e s a m e t i m e(然而)等。(5)表解释说明的连接词:that is, that is to say, in other words, such as, f o r i n s t a n c e,a n d s o o n,e t c.a n d t h e l i k e等。(6)表递进关系的连接词:not only…but (also), what,s more, what's worse, b e s i d e s,i n a d d i t i o n,w o r s e s t i l l,m o r e o v e r,a b o v e a l l等。(7)表示总结的连接词:in a word, on the whole, in short, briefly, in b r i e f,t o s u m u p,i n a l l等。(三)注意以下过渡词的用法

小学语文标点符号使用大全

小学语文标点符号使用大全 句号(。)是个小圆点,用它表示说话完。 逗号(,)小点带尾巴,句内停顿要用它。 顿号(、)像个芝麻点,并列词语点中间。 分号(;)两点拖条尾,并列分句中间点。 冒号(:)小小两圆点,要说话儿写后边。 问号(?)好像耳朵样,表示一句问话完。 叹号(!)像个小炸弹,表示惊喜和感叹。 引号(“”)好像小蝌蚪,内放引文或对话。 话里套话分单双,里单外双要记牢。 省略号(……)六个点,表示意思还没完。 破折号(——)短横线,表示解说、话题转。 书名号(《》)两头尖,书、刊名称放中间。 圆括号(),方括号[],注解文字放里边。 学标点,并不难,多看多练才熟练。 二、基本定义 句子,前后都有停顿,并带有一定的句调,表示相对完整的意义。句子前后或中间的停顿,在口头语言中,表现出来就是时间间隔,在书面语言中,就用标点符号来表示。一般来说,汉语中的句子分以下几种:

陈述句:用来说明事实的句子。 祈使句:用来要求听话人做某件事情的句子。 疑问句:用来提出问题的句子。 感叹句:用来抒发某种强烈感情的句子。 复句、分句:意思上有密切联系的小句子组织在一起构成一个大句子。这样的大句子叫复句,复句中的每个小句子叫分句。 构成句子的语言单位是词语,即词和短语(词组)。词即最小的能独立运用的语言单位。短语,即由两个或两个以上的词按一定的语法规则组成的表达一定意义的语言单位,也叫词组。 标点符号是书面语言的有机组成部分,是书面语言不可缺少的辅助工具。它帮助人们确切地表达思想感情和理解书面语言。 三、用法简表名称符号用法说明举例 (一)句号。 1、用于陈述句的末尾。 北京是中华人民共和国的首都。 2、用于语气舒缓的祈使句末尾。 请您稍等一下。 (二)问号? 1、用于疑问句的末尾。

连词专题复习经典

连词专题复习经典 一、初中英语连词 1.Jim has been in the factory for two months ________ he left school. A. when B. since C. as soon as D. whether 【答案】 B 2.My mother has little interest in football ___________ she didn't watch the live match on TV yesterday evening. A. so B. if C. though D. when 【答案】 A 3.— Would you like to go camping this weekend? — I'd love to, ______________ I can't. I have to prepare for the English Speech Contest. A. and B. or C. but D. so 【答案】 C 【解析】【分析】句意:——这个周末你想去野营吗?——我很想去,但不行。我得准备英语演讲比赛。A 和,表示并列或顺承;C 或者,表示选择;C 但是,表示转折;D 因此,表示结果。根据答语中的I'd love to, 与I can't. I have to prepare for the English Speech Contest.可知,这两个语句表示转折,要用but,故选C。 【点评】考查连词辨析。注意每个连词的含义及用法,根据语境确定最佳选项。 4._____________ she is a very busy woman, she helps the boy. A. Although B. Because C. However D. But 【答案】 A 【解析】【分析】句意:虽然她是个很忙的女人,但是她帮助那个男孩。A: Although,虽然,表示转折关系。B: Because,因为,表示因果关系。C: However,然而,表示转折。D: But,但是,表示转折。根据_____________ she is a very busy woman, she helps the boy.可知,她是个很忙的女人和她帮助那个男孩是转折关系,但用在第一个句子前,只能是although,故选A。 【点评】考查连词辨析。注意连词的意思和区别,结合句意,选出正确答案。 5.Tony has learned a lot about Chinese culture ______________ he came to China. A. before B. since C. until D. when 【答案】 B 【解析】【分析】句意:自从来到中国托尼学到很多关于中国文化的东西。before在……之前;和过去完成时连用;since自从,后跟表示过去的时间状语和现在完成时连用;until直到……才……;不和完成时连用,when当……时候;和过去完成时连用。故选B。 【点评】连词辨析。掌握每个连词的使用规则。

最新英语连词用法总结(完整)

最新英语连词用法总结(完整) 一、单项选择连词 1.Read this story, you will realize that not everything can be bought with money. A.or B.and C.but D.so 【答案】B 【解析】 试题分析:考查并列句。句意看看这个故事,你就会明白不是所有的东西都可以用钱买到的。“祈使句 + and/or +陈述句”是一个固定句式,根据句意,选B 考点 : 考查并列句。 2.To live in honor, he came from a poor family, was his ambition. A.though B.if C.unless D.however 【答案】A 【解析】though尽管if如果;是否unless除非however无论怎样,根据题意他的野心就是为了有尊严的活着,尽管他来自一个贫穷的家庭.故选A. 3.He was about to tell me the secret __ _____ someone patted him on the shoulder. A.as B.until C.while D.when 【答案】D 【解析】 试题分析:句意:她正要告诉我这个秘密,这时有人拍了一下她的肩膀。beabouttodo...when...是固定句型,意为“正要做……这时……”。 考点:考查连词。 【名师点睛】 用when引导时间状语从句的句型结构搭配 beabouttodosthwhen刚要,即将;正要做某事,突然发生其他事 bedoingsthwhen正在做某事突然 haddonesthwhen刚刚做过某事突然 beatthepointofdoingsthwhen就在做某事的关键时刻突然 scarcely...when/hardly...when几乎未来得及就…;刚一……就…… nosooner...than一……就…… 4.I’m sorry I got caught in the traffic;_________, I could have been here sooner.A.besides B.although C.anyway D.otherwise 【答案】D 【解析】考查含蓄虚拟条件句。I could have been here sooner是和过去事实相反的虚拟语

英语连接词转折词归纳(汇编)

一) 连接词 比较:rather than(而不是。。),better than,other than(除了。。),compare with (比较,强调相似性)compare to(把。。比作),in contrast to(对照,强调差异),similar to,superior to(比。。。好),inferior to。 (1)表选择关系或对等关系的连接词:either…or…,neither…nor, or, as well as…, and, both…and…。 (2)表因果关系或对等关系的连接词:threrby,as for,since,therefore, so, as a result, as the result of …,because of, due to …,owing to, thanks to等。 (3)表时间顺序的连接词:the moment, as soon as, at first, then, later, meanwhile, at the beginning, in the end, before long, for the first(second…)time, the minute等。 (4)表转折关系的连接词:though,although,nevertheless,even though,even if,while,in fact,far from it,ironically(讽刺的),traditionally,yet, and yet, but , while, on the contrary, on the other hand, however, at the same time(然而)等。 (5)表解释说明的连接词:that is, that is to say, in other words, such as, for instance, and so on, etc. and the like等。 (6)表递进关系的连接词:not only…but (also), what’s more, what's worse, besides, in addition, worse still, moreover, above all等。 (7)表示总结的连接词:in a word, on the whole, in short, briefly, in brief, to sum up, in all 等。 (二)、常用句型 1、be worth doing 值得做…… 2、be busy doing 忙着做…… 3、too…to do 太……而不能做…… 4、so+adj./adv. as to do 如……以致于做 5、It takes sb. some time to do sth. 花某人……时间做某事 6、sb.spends some time doing sth. 某人花……时间做某事 7、It is+adj.+for sb. to do sth. 某人做某事是…… 8、It's up to sb. to do sth. 应由某人做某事 9、sb. have some difficulty/ trouble in doing sth. 某人做某事很费劲 10、The more…the more… 越……越…… 11、It's no good/use doing sth. 做某事没好处/用处。 12、sb.can do nothing but do sth.=have no choice but to do 别无他法,只能做某事 13、There be/lie/stand/live… 有…… 14、be about to do sth. when… 正要做某事这时…… 15、It was not long before… 不久就…… It will not be long before… 要不了多久就…… 16、It is+一段时间+since… 自……以来,有……时间了 17、It is said that… 据说…… 18、not…until/till… 直到……才 19、祈使句+and/or+分句(将来时) 20、主语+find/consider/think+it+形容词或名词+不定式

小学生标点符号使用方法大全

小学生标点符号使用方法大全一、标点符号歌: 句号(。)是个小圆点,用它表示说话完。 逗号(,)小点带尾巴,句内停顿要用它。 顿号(、)像个芝麻点,并列词语点中间。 分号(;)两点拖条尾,并列分句中间点。 冒号(:)小小两圆点,要说话儿写后边。 问号(?)好像耳朵样,表示一句问话完。 叹号(!)像个小炸弹,表示惊喜和感叹。 引号(“”)好像小蝌蚪,内放引文或对话。 话里套话分单双,里单外双要记牢。 省略号(……)六个点,表示意思还没完。 破折号(——)短横线,表示解说、话题转。 书名号(《》)两头尖,书、刊名称放中间。 圆括号(),方括号[],注解文字放里边。 学标点,并不难,多看多练才熟练。 二、用法简表

小学生标点符号使用方法大全(2) 三、标点符号的使用 一、句号句号是最常用的符号,小学一年级就要认识它。 句号表示一句话完了之后的停顿。用句号的句子语调平缓。例如: 1.太阳暖烘烘的。(小学《语文》第四册《丑小鸭》) 2.原来池底长着许多石笋,有的像起伏的丘陵,有的像险峻的山峰,有的像矗立的宝塔,有的像成簇的珊瑚。 (小学《语文》第七册《五彩池》) 3.漓江的水真静啊,静得让你感觉不到它在流动;漓江的水真清啊,清得可以看见江底的沙石;漓江的水真绿啊,绿得仿佛那是一块无瑕的翡翠。 (小学《语文》第十一册《桂林山水》) 4.眼看你们的身子一天比一天衰弱,只要哪一天吃不上东西,说不定就会起不来。 (小学《语文》第十一册《金色的鱼钩》) 例1非常简单,讲太阳给人们的感觉,是一个完整的句子,用句号。例2是一个较长的句子,它用四个“有的”把几种池底石笋的形象连在一块,句末用句号标示。例3是个长句子,实际是并列的三句话,讲了漓江水的三个特点:静、清、绿。因为三个句子作用相同、

(完整版)连接词转折词大全

一) 连接词 (1)表选择关系或对等关系的连接词:either…or…,neither…nor, or, as well as…, and, both…and…。 (2)表因果关系或对等关系的连接词:therefore, so, as a result, as the result of …,because of, due to …,owing to, thanks to等。 (3)表时间顺序的连接词:the moment, as soon as, at first, then, later, meanwhile, at the beginning, in the end, before long, for the first(second…)time, the minute等。 (4)表转折关系的连接词:yet, and yet, but , while, on the contrary, on the other hand, however, at the same time(然而)等。 (5)表解释说明的连接词:that is, that is to say, in other words, such as, for instance, and so on, etc. and the like等。 (6)表递进关系的连接词:not only…but (also), what’s more, what's worse, besides, in addition, worse still, moreover, above all等。 (7)表示总结的连接词:in a word, on the whole, in short, briefly, in brief, to sum up, in all 等。 (二)、常用句型 1、be worth doing 值得做…… 2、be busy doing 忙着做…… 3、too…to do 太……而不能做…… 4、so+adj./adv. as to do 如……以致于做 5、It takes sb. some time to do sth. 花某人……时间做某事 6、sb.spends some time doing sth. 某人花……时间做某事 7、It is+adj.+for sb. to do sth. 某人做某事是…… 8、It's up to sb. to do sth. 应由某人做某事 9、sb. have some difficulty/ trouble in doing sth. 某人做某事很费劲 10、The more…the more… 越……越…… 11、It's no good/use doing sth. 做某事没好处/用处。 12、sb.can do nothing but do sth.=have no choice but to do 别无他法,只能做某事 13、There be/lie/st and/live… 有…… 14、be about to do sth. when… 正要做某事这时…… 15、It was not long before… 不久就…… It will not be long before… 要不了多久就…… 16、It is+一段时间+since… 自……以来,有……时间了 17、It is said that… 据说…… 18、not…until/till… 直到……才 19、祈使句+and/or+分句(将来时) 20、主语+find/consider/think+it+形容词或名词+不定式 21、so+adj./adv.+that 如此……以致于 such+n.+that… 22、why not do sth 为什么不做……呢? why do sth. 为何做……?

2020年[小学常用标点符号用法大全]

小学常用标点符号用法大全,务必让孩子掌握,不少大人都用错了!标点符号用法很重要,影响考试成绩,老师家长一定要教会孩子! 1 句号一句末尾用句号,语气平缓调不高。 读书见它要停顿,作文断句莫忘掉。 基本用法用于句子末尾,表示陈述语气。使用句号主要根据语段前后有较大停顿、带有陈述语气和语调,并不取决于句子的长短。 示例1北京是中华人民共和国的首都。 示例2(甲咱们走着去吧?)乙好。 有时也可表示较缓和的祈使语气和感叹语气。 示例1请您稍等一下。 示例2我不由地感到,这些普通劳动者也同样是很值得尊敬的。 常见错误当断不断,一逗到底。 不当断却断了,割裂了句子。如生产成本居高不下的原因,一个是设备落后,能耗高。另一个是管理不善,浪费严重。(“能耗高“后面的句号应改作逗号) 2 问号有疑有问用问号,设问反问也需要。 遇它读出语调来,看书见它要思考。 基本用法用于句子的末尾,表示疑问语气(包括反问、设问等疑问类型)。使用问句主要根据语段前后有较大停顿、带有疑问语气和语调,并不取决于句子的长短。 示例1你怎么还不回家去呢?示例2难道这些普通的战士不值得歌颂吗?选择问句中,通常只在最后一个选项的末尾用问号,各个选项之间一般用逗号隔开。当选项较短且选项之间没有停顿时,选项之间可不用逗号。当选项较多或较长,或有意突出每个选项的独立性时,也可每个选项之后都用问号。 示例1诗中记述的这场战争究竟是真实的历史描述,还是诗人的虚构?示例2这是巧合还是有意安排示例3要一个什么样的结尾现实主义的?传统的?大团圆的?荒诞的?民族形式的?有象征意义的在多个问句连用或表达疑问语气加重时,可叠用问号。通常应先单用,再用叠用,最多叠用三个问号。在没有异常强烈的情感表达需要时不宜叠用问号。 示例这就是你的做法吗?你这个总经理是怎么当的??你怎么竟敢这样欺骗消费者???问号也有标号的用法,即用于句内,表示存疑或不详。 示例1钟嵘(—518),颍川长社人,南朝梁代文学批评家。

英语逻辑连接词汇总完美

英语连接词 连接词的意义分类 表递进moreover, in addition, what is more,furthermore, also, then, besides, etc. 表转折however, nevertheless, on the other hand, on the contrary, etc. 表层次on the one hand, ... on the other hand; first, ... second, ... finally; 表强调firstly, ... secondly, ... finally ...; first, ... then ... etc. 表强调in fact, indeed, actually, as a matter of fact, obviously, apparently, 表结果evidently, first of all, undoubtedly, without any shadow of doubt, etc. 表结尾therefore, as a result, then, consequently, accordingly, thus, etc. 表例举in a word, in conclusion, therefore, in short, to sum up, etc. 表强调still, Indeed, apparently, oddly enough, of course, after all, significantly, interestingly, also, above all, surely, certainly, undoubtedly, in any case, anyway, above all, in fact, especially. Obviously, clearly. 表比较like, similarly, likewise, in the same way, in the same manner, equally. 表对比by contrast, on the contrary, while, whereas, on the other hand, unlike, instead, but, conversely, different from, however, nevertheless, otherwise, whereas, unlike, yet, in contrast. 表列举for example, for instance, such as, take ...for example. Except (for), to illustrate. 表时间later, next, then, finally, at last, eventually, meanwhile, from now on, at the same time, for the time being, in the end, immediately, in the meantime, in the meanwhile, recently, soon, now and then, during, nowadays, since, lately, as soon as, afterwards, temporarily, earlier, now, after a while. first after a few days eventually at that time in the meantime meanwhile afterward from then on 表顺序first, second, third, then, finally, to begin with, first of all, in the first place, last, next, above all, last but not the least, first and most important. 表可能presumably, probably, perhaps. 表解释in other words, in fact, as a matter of fact, that is, namely, in simpler terms. 表递进What is more, in addition, and, besides, also, furthermore, too, moreover, furthermore, as well as, additionally, again. 表让步although, after all, in spite of..., despite, even if, even though, though, admittedly, whatever may happen. 表转折however, rather than, instead of, but, yet, on the other hand, unfortunately. whereas 表原因for this reason, due to, thanks to, because, because of, as, since, owing to. 表结果as a result, thus, hence, so, therefore, accordingly, consequently, as consequence. 表总结on the whole, in conclusion, in a word, to sum up, in brief, in summary, to conclude, to summarize, in short. 其他类型连接词 Mostly, occasionally, currently, naturally, mainly, exactly, evidently, frankly, commonly, for this purpose, to a large extent, for most of us, in many cases, in this case, 表空间near to far from in the front of beside behind to the right to the left on the other side of 表举例for example to name a few, say , such as 表递进in addition furthermore what’s more what’s worse 表对比whereas while as opposed to by contrast by comparison 表示时间与频率的词汇:in general, every, some, after, on the whole, usually, most, at other times, in most cases, frequently, main, finally, as a rule, rarely, before, meanwhile. 表示附加的词:additionally, as well as, just as, again, along with, also, further, furthermore, likewise, in the same manner, in the same way, in addition to, 引出例子:for example, namely, for instance, as an example, that is

二年级语文标点符号使用方法大全

标点符号使用方法 ● 标点符号歌: 句号(。)是个小圆点,用它表示说话完。 逗号(,)小点带尾巴,句内停顿要用它。 顿号(、)像个芝麻点,并列词语点中间。 分号(;)两点拖条尾,并列分句中间点。 冒号(:)小小两圆点,要说话儿写后边。 问号(?)好像耳朵样,表示一句问话完。 叹号(!)像个小炸弹,表示惊喜和感叹。 引号(“”)好像小蝌蚪,内放引文或对话。 话里套话分单双,里单外双要记牢。 省略号(……)六个点,表示意思还没完。 破折号(——)短横线,表示解说话题转。 书名号(《》)两头尖,书刊名称放中间。 圆括号()方括号[ ],注解文字放里边。 学标点,并不难,多看多练才熟练。 写作常用标点符号使用方法 ●基本定义 句子前后都有停顿,并带有一定的句调,表示相对完整的意义。句子前后或中间的停顿,在口头语言中表现出来就是时间间隔,在书面语言中就用标点符号来表示。一般来说,汉语中的句子分以下几种: 陈述句:用来说明事实的句子。 祈使句:用来要求听话人做某件事情的句子。 疑问句:用来提出问题的句子。 感叹句:用来抒发某种强烈感情的句子。 复句、分句:意思上有密切联系的小句子组织在一起构成一个大句子。 这样的大句子叫复句,复句中的每个小句子叫分句。 构成句子的语言单位是词语,即词和短语(词组)。词,即最小的能独立运用的语言单位。短语,即由两个或两个以上的词按一定的语法规则组成的表达一定意义的语言单位,也叫词组。 标点符号是书面语言的有机组成部分,是书面语言不可缺少的辅助工具。它帮助人们确切地表达思想感情和理解书面语言。 ●标点符号用法说明举例

(一)句号。 1.用于陈述句的末尾。 是中华人民共和国的首都。 2.用于语气舒缓的祈使句末尾。 请您稍等一下。 (二)问号? 1.用于疑问句的末尾。 他叫什么名字? 2.用于反问句的末尾。 难道你不了解我吗? (三)感叹号! 1.用于感叹句的末尾。 为祖国的繁荣昌盛而奋斗! 2.用于语气强烈的祈使句末尾。 停止射击! 3.用于语气强烈的反问句末尾。 我哪里比得上他呀! (四)逗号, 1.句子内部主语与谓语之间如需停顿,用逗号。 我们看得见的星星,绝大多数是恒星。 2.句子内部动词与宾语之间如需停顿,用逗号。 应该看到,科学需要一个人贡献出毕生的精力。 3.句子内部状语后边如需停顿,用逗号。 对于这个城市,他并不陌生。 4.复句内各分句之间的停顿,除了有时要用分号外,都要用逗号。据说苏州园林有一百多处,我到过的不过十多处。 (五)顿号、 用于句子内部并列词语之间的停顿。 正方形是四边相等、四角均为直角的四边形。 (六)分号; 1.用于复句内部并列分句之间的停顿。 语言,人们用来抒情达意;文字,人们用来记言记事。 2.用于分行列举的各项之间。 中华人民共和国行政区域划分如下: (1)全国分为省、自治区、直辖市; (2)省、自治区分为自治州、、自治、市; (3)、自治分为乡、民族乡、镇。

相关文档
最新文档