ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 3358|回复: 4

[求助] 文本框赋值长字符串问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2012-6-11 13:42 | 显示全部楼层 |阅读模式
此文本框不是那种控件文本框,就是普通文本框,03版的excel在往里面赋值短字符串的时候是可以的,但是字符串超出某个长度,赋值的时候会自动截断纸保留一部分赋值。但是在07版本里面就没有这个问题。
有没有办法能解决03版出现的这个问题

TA的精华主题

TA的得分主题

发表于 2012-6-11 14:47 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-6-11 14:53 | 显示全部楼层
Sub testtttt()
Dim wkst  As Worksheet
Set wkst = ActiveSheet
Dim tb As Shape
Set tb = wkst.Shapes("test")
MsgBox Len(textboxread(tb))

End Sub

Function textboxread(ByRef tb As Shape) As String
    Dim s As String
    Dim numChars As Integer
    s = ""
    numChars = 255
    If tb.TextFrame.Characters.Count < 255 Then
    numChars = tb.TextFrame.Characters.Count
    Else
    Do While tb.TextFrame.Characters.Count > 0
        s = s & tb.TextFrame.Characters(1, numChars).text
        tb.TextFrame.Characters(1, numChars).Delete
        If tb.TextFrame.Characters.Count < 255 Then
        numChars = tb.TextFrame.Characters.Count
        End If
    Loop
    textboxread = s
    End If
     textboxwrite tb, s
    Set tb = Nothing
    Set wkst = Nothing

End Function

Function textboxwrite(ByRef tb As Shape, s As String)
    Dim numChars As Integer, addnum As Integer
    numChars = 0
    addnum = 255
    If Len(s) < 255 Then
    tb.TextFrame.Characters.text = s
    Else
    Do While Len(s) > 0
        If numChars < 32767 - addnum Then
        tb.TextFrame.Characters(numChars + 1, addnum).Insert (left(s, addnum))
        
        Else
        tb.TextFrame.Characters(numChars + 1, 32767 - numChars).Insert (left(s, 32767 - numChars))
        GoTo endfunction
        End If
        numChars = numChars + addnum
        s = Right(s, Len(s))
        If Len(s) < 255 Then
        addnum = Len(s)
        End If
    Loop
    End If
endfunction:
    Set tb = Nothing
    Set wkst = Nothing

End Function

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-6-11 14:54 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
蓝桥玄霜 发表于 2012-6-11 14:47
改用07版本或者不用文本框。

找到解决办法了,谢谢你的回复,我就是希望程序能同同时在03版和07版本上使用

TA的精华主题

TA的得分主题

发表于 2023-2-3 04:34 | 显示全部楼层
  1.     Dim oChart As Chart, ObjChart As ChartObject
  2.         Set ObjChart = Sheet1.ChartObjects(1)
  3.         Debug.Print ObjChart.Name
  4.         Set oChart = ObjChart.Chart
  5.         With oChart.ChartTitle
  6.              .Tex = " 学习Ppt-Ms Graph太难 "
  7.              .Font.Name = "黑体"
  8.              .Font.FontStyle = "加粗"
  9.              .Font.Size = 25
  10.              .Font.Strikethrough = False
  11.              .Font.Superscript = False
  12.              .Font.Subscript = False
  13.              .Font.OutlineFont = False
  14.              .Font.Shadow = True
  15.              .Font.Underline = xlUnderlineStyleNone
  16.              .Font.ColorIndex = xlAutomatic
  17.              .Font.Background = xlAutomatic
  18.              .Border.Weight = xlThin
  19.              .Shadow = True
  20.              .Fill.OneColorGradient Style:=msoGradientHorizontal, Variant:=4, _
  21.                     Degree:=0.231372549019608
  22.              .Fill.Visible = True
  23.              .Fill.ForeColor.SchemeColor = 15
  24.         End With
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 12:26 , Processed in 0.033005 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表