Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Exclusively for Visual Basic 6.0 Programmers Only!

patulong naman po,, codes for limiting the numbers of characters sa textbox
 
Paano po ako makagawa ng search bar sa vB

Kasi i bind ko ang Database sa vB using adodc then need ko search bar. So kapag nag input ako kahit letter "E" may lalabas na agad
 
help :help: ..pano ba installation ng vb6 yung nakaenable na yung data environment designer..wala kasi yung sakin
 
tanong ko lng poh..paano po ba ma sum-up lahat ng value sa isang column ng datagrid to textbox.???? i know its easy para sa inyo.. paturo naman poh!!

Please...
 
tanong ko lng poh..paano po ba ma sum-up lahat ng value sa isang column ng datagrid to textbox.???? i know its easy para sa inyo.. paturo naman poh!!

Please...
 
Sir pahelp naman po about AUTONUMBER example po... invetory sa form ng Product maintenance if may laman na po ng isa example Prod_code = 001 pag pindot po ng ADD nakalock po ung textbox ng prod_code magiging 002 then pag ka save ok na then pagkapindot po ulit ng ADD prod_code 003 na then pag delete naman po ang pinindot mababawasan po magiging 002 na lang
 
hi, baka po matulungan nyo me. balak ko maggawa ng program through vb6 lang. cafe timer sya na solo or serverless. lock lang nya yung pc from startup tapos pag nag login yung customer, pili sya either open time or limited(1 hour etc), pag open time me logout button lang dun, then pag log out nya ma paflash sa screen kung magkano inabot ng rent nya until me next na maglogin,. pag limited naman ganon din, magpaflash yung dapat nyang bayaran, pero auto lock pag tapos na yung time. me warning din dapat before mag end ng mga 5 mins before time. tapos me button din to extend time, pero walang logout button.

sana po may makatulong. salamat!
 
pede po pa tulong mga master..?

gumagawa kasi ako ng simple word processor (like msword).. and im using richtext.. nagawan ko na ng paraan kung paano ma change ang alignment at kung bold, italic, o under lined..

now ang gusto ko naman mangyare is gagawa ako ng combo box para sa list ng lahat ng available font style ko, at gagamitin sa text formating na.. at kung posible ei yung text color narin den..

salamat po sa makaka tulong...

p.s. may pabuyang thanks.. :) :) :)
 
pa help naman po sa code ng mga menu sa notepad hindi ko kasi maintindihan masyado mga function ng mga code. Thanks i'm using vb.6.0
 
mga master ko jan, pwede po patulong how to connect MS access sa VB6, ung parang ganito po,

sa isang textbox input aq nung isesearch sa database den may isang command butto na pagclinick ko sya eh lalabas sa isang form ung info nya..

please pa TUT nman po mga master.. thanks.. :help: :pray: :pray: :help:
 
may way ba para ma display sa listbox lahat ng possible combinations of a number
example:
1-3 or 1,2,3

listbox:
123
132
213
312
231
321


pa help po :D
 
may way ba para ma display sa listbox lahat ng possible combinations of a number
example:
1-3 or 1,2,3

listbox:
123
132
213
312
231
321


pa help po :D

Code:
Option Explicit

Private Sub Command1_Click()
Dim maxcount As Integer
Dim w As Integer
Dim x As Integer
Dim y As Integer
Dim z As Integer
Dim holder As Integer
Dim temp As String
maxcount = 1
For x = Len(Text1.Text) To 1 Step -1
   maxcount = maxcount * x
Next x

ReDim myarray(1 To maxcount) As String
ReDim chararray(1 To Len(Text1.Text)) As String

For x = 1 To Len(Text1.Text)
   chararray(x) = Mid(Text1.Text, x, 1)
Next x
holder = 0
For w = 2 To (Len(Text1.Text) - 1)
   For x = 1 To Len(Text1.Text)
      For z = 1 To (Len(Text1.Text) - 1)
         holder = holder + 1
         For y = 1 To Len(Text1.Text)
            myarray(holder) = myarray(holder) & chararray(y)
         Next y
         temp = chararray(z)
         chararray(z) = chararray(z + 1)
         chararray(z + 1) = temp
      Next z
   Next x
   If holder = Len(Text1.Text) Then
      temp = chararray(w)
      chararray(w) = chararray(w + 1)
      chararray(w + 1) = temp
   End If
Next w
For x = 1 To holder
   Label1.Caption = Label1.Caption & vbNewLine & myarray(x)
Next x
End Sub

Private Sub Form_Load()
Label1.Caption = ""
End Sub

Private Sub Text1_Change()
Label1.Caption = ""
End Sub

Here's what yo need:

1 commandbutton
1 textbox
1 label

hit thanks button!
 
mga boss, i think natanong na to dati pero pasenxa na, i don't really have time to scan all the posts. kelangan ko lng po malaman kng san mkakakuha ng copy ng VB na latest? :pray: thanks po in advance. beginner lng po...
 
Masterssss!!! pa help naman po dito. Gusto ko po sana, na ang ipapakita sa combobox yun walang laman na nasa table(account) field(grouping). pano po ba ilalagay d2 sa code.

Set rs = New ADODB.Recordset
rs.Open " select distinct username from account", cn, adOpenKeyset, adLockOptimistic
cmbUser.clear
While Not rs.EOF
cmbUser.AddItem rs!username
rs.MoveNext
Wend
rs.Close
Set rs = Nothing

Thanks po!!! :help:

sensya na po.. baguhan lang.. :-)
 
Back
Top Bottom