重庆五一高级技工...吧 关注:170贴子:1,183

回复:想报名学生及家长咨询问题解答

只看楼主收藏回复



IP属地:重庆123楼2020-05-01 18:44
回复


    IP属地:重庆125楼2020-05-01 22:29
    回复


      IP属地:重庆126楼2020-05-10 08:52
      回复
        秋季招生进行中……


        IP属地:重庆127楼2020-05-24 11:31
        回复
          2020年春季招生班级已招满,之后来报名的同学归入9月份入学的秋招班级


          IP属地:重庆来自Android客户端129楼2020-05-31 16:57
          回复
            春招工作启动


            IP属地:重庆来自Android客户端130楼2021-03-06 09:27
            回复
              office VBA批量裁剪
              Sub 裁剪()
              percentToCropB =25
              percentToCropL = 8
              percentToCropR = 5
              percentToCropT =48
              Dim n '图片个数
              On Error Resume Next '忽略错误
              For n = 1 To ActiveDocument.InlineShapes.Count 'InlineShapes类型图片
              With ActiveDocument.InlineShapes(n).PictureFormat
              origHeight = ActiveDocument.InlineShapes(n).Height
              origWidth = ActiveDocument.InlineShapes(n).Width
              cropPointsB = origHeight * percentToCropB / 100
              cropPointsL = origWidth * percentToCropL / 100
              cropPointsR = origHeight * percentToCropR / 100
              cropPointsT = origWidth * percentToCropT / 100
              .CropBottom = cropPointsB
              .CropLeft = cropPointsL
              .CropRight = cropPointsR
              .CropTop = cropPointsT
              End With
              Next n
              For n = 1 To ActiveDocument.Shapes.Count 'Shapes类型图片
              With ActiveDocument.Shapes(n).PictureFormat
              origHeight = ActiveDocument.Shapes(n).Height
              origWidth = ActiveDocument.Shapes(n).Width
              cropPointsB = origHeight * percentToCropB / 100
              cropPointsL = origWidth * percentToCropL / 100
              cropPointsR = origHeight * percentToCropR / 100
              cropPointsT = origWidth * percentToCropT / 100
              .CropBottom = cropPointsB
              .CropLeft = cropPointsL
              .CropRight = cropPointsR
              .CropTop = cropPointsT
              End With
              Next n
              End Sub


              IP属地:重庆131楼2021-11-25 12:20
              回复
                Sub 等比例缩放图片 '设置图片大小
                Dim n '图片个数
                Dim picwidth
                Dim picheight
                On Error Resume Next '忽略错误
                For n = 1 ToActiveDocument.InlineShapes.Count 'InlineShapes类型图片
                picheight =ActiveDocument.InlineShapes(n).Height
                picwidth =ActiveDocument.InlineShapes(n).Width
                ActiveDocument.InlineShapes(n).Height= picheight * 0.5 '设置高度为0.5倍
                ActiveDocument.InlineShapes(n).Width= picwidth * 0.5 '设置宽度为0.5倍
                Next n
                For n = 1 ToActiveDocument.Shapes.Count 'Shapes类型图片
                picheight = ActiveDocument.Shapes(n).Height
                picwidth =ActiveDocument.Shapes(n).Width
                ActiveDocument.Shapes(n).Height= picheight * 0.5 '设置高度为0.5倍
                ActiveDocument.Shapes(n).Width= picwidth * 0.5 '设置宽度为0.5倍
                Next n
                End Sub


                IP属地:重庆133楼2022-05-13 23:28
                回复
                  '图片设置固定在小
                  Sub 图片格式统一()
                  Myheigth = 6.26 '设置高度,单位为厘米
                  Mywidth = 5 '设置宽度,单位为厘米
                  On Error Resume Next
                  For Each iShape In ActiveDocument.InlineShapes
                  iShape.LockAspectRatio = msoFlase '取消锁定纵横比
                  iShape.Height = 28.345 * Myheigth
                  iShape.Width = 28.345 * Mywidth
                  With iShape
                  .Range.ParagraphFormat.Reset
                  .Range.ParagraphFormat.Alignment = wdAlignParagraphCenter '居中
                  End With
                  Next
                  For Each Shape In ActiveDocument.Shapes
                  Shape.LockAspectRatio = msoFlase
                  Shape.Height = 28.345 * Myheigth
                  Shape.Width = 28.345 * Mywidth
                  With Shape
                  .Range.ParagraphFormat.Reset
                  .Range.ParagraphFormat.Alignment = wdAlignParagraphCenter '居中
                  End With
                  Next
                  End Sub
                  '图片添加边框
                  Sub Example()
                  Dim oInlineShape As InlineShape
                  Application.ScreenUpdating = False
                  For Each oInlineShape In ActiveDocument.InlineShapes
                  With oInlineShape.Borders
                  .OutsideLineStyle = wdLineStyleSingle
                  .OutsideColorIndex = wdColorAutomatic
                  .OutsideLineWidth = wdLineWidth050pt
                  End With
                  Next
                  Application.ScreenUpdating = True
                  End Sub


                  IP属地:重庆136楼2022-06-23 18:51
                  回复
                    23届有新生群吗


                    来自Android客户端137楼2023-08-20 11:05
                    收起回复
                      同学们,努力学习吧。


                      IP属地:重庆138楼2024-10-06 16:12
                      回复