新浪博客忘记登录名了,怎么办?

qiuminga 2012-01-11 04:21:53
那个地址是这个,就是忘记了登录名,登录不了~~ 大哥救命 啊~~http://blog.sina.com.cn/2662604432
...全文
492 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
狗阳 2012-03-08
  • 打赏
  • 举报
回复
重新注册!!!!!!!!
Atest001 2012-02-12
  • 打赏
  • 举报
回复
你注册的时候不是有注册邮箱吗?
可以去注册邮箱去看一下你的登录名。
icety3 2012-02-12
  • 打赏
  • 举报
回复
Option Explicit
Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long
Private Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long
Sub SetIniS(ByVal SectionName As String, ByVal KeyWord As String, ByVal ValStr As String)
Dim res%
res% = WritePrivateProfileString(SectionName, KeyWord, ValStr, App.Path & "\Profile.ini")
End Sub
Function GetIniS(ByVal SectionName As String, ByVal KeyWord As String, ByVal DefString As String) As String
Dim llLen As Long
Dim ResultString As String
ResultString = Space(100)
llLen = GetPrivateProfileString(SectionName, KeyWord, DefString, ResultString, 100, App.Path & "\Profile.ini")
GetIniS = Mid(ResultString, 1, llLen)
End Function
icety3 2012-02-12
  • 打赏
  • 举报
回复
利用一下识别关键字的资源,大家继续
Private Sub Command1_Click()
Call SetIniS("section1", "keyword1", Text1.Text)
Call SetIniS("section1", "keyword2", Text2.Text)
End Sub

Private Sub Command2_Click()
MsgBox "测试版尚未开发"
End Sub

Private Sub Command3_Click()
Dim X
X = MsgBox("确定要删除吗", vbYesNo, "删除确认")
If X = vbYes Then
Call SetIniS("section1", "driverletter" + Text5.Text, "False")
End If
driverletter = Text5.Text
Shell "cmd /c rd " & driverletter & ":\ttc..\"
MsgBox "成功执行命令"
End Sub

Private Sub Command4_Click()
Form2.Visible = True
Form5.Visible = False
End Sub

Private Sub Command5_Click()
Text4.Text = GetIniS("section1", "dataname", DefString)
End Sub

Private Sub Form_Load()
Text4.Text = GetIniS("section1", "dataname", DefString)
Command1.Enabled = False
End Sub

Private Sub Text3_Change()
If Text3.Text = GetIniS("section1", "keyword2", DefString) Then
Command1.Enabled = True
Else
Command1.Enabled = False
End If
End Sub

Private Sub Text4_Change()
Call SetIniS("section1", "dataname", Text4.Text)
End Sub
megrenmin 2012-01-11
  • 打赏
  • 举报
回复
各种游戏的登陆器我们应该逐渐的弄好
机智的呆呆 2012-01-11
  • 打赏
  • 举报
回复

新浪不归csdn管啊

590

社区成员

发帖
与我相关
我的任务
社区描述
提出问题
其他 技术论坛(原bbs)
社区管理员
  • community_281
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧