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!

VB.NET Programming Corner!

try mo sa notepad.. mag ttype kusa yon at enter.. :) so same lang din sa textbox mo..

Thanks po sa suggestion,, :))

- - - Updated - - -

curious lang ako sa pagpili ng barcode, baka kase di nya maread ung code kase customized ung barcode like ako pa ang gagawa or mag generate ng barcode and im planning na qr code, ano po kaya possibilities pag ganito ung set up?
 
Help naman po.

Possible ba na yung overall design ng crystal report, through vb codes lang? As in blank lang yung CR then yung mga objects like Text Object e ipapasok gamit vb lang? Sa VS2008 po.

Thanks.
 
View attachment 318419

Patulong naman dito sa loopings dpat pag nag lagay ako ng lowest even number at highest even number kunayre 2 and 8 pag click ko dun sa button lilitaw sa answer 2:4:6:8

For x As Integer = txtle.Text + 2 To txthe.Text
txtans.Text = txtans.Text & ":" & x
Next
 

Attachments

  • Untitled.png
    Untitled.png
    11.5 KB · Views: 5
Help naman po.

Possible ba na yung overall design ng crystal report, through vb codes lang? As in blank lang yung CR then yung mga objects like Text Object e ipapasok gamit vb lang? Sa VS2008 po.

Thanks.

pwede.. pero bat mo ba pahihirapan buhay mo?
 
View attachment 1209679

Patulong naman dito sa loopings dpat pag nag lagay ako ng lowest even number at highest even number kunayre 2 and 8 pag click ko dun sa button lilitaw sa answer 2:4:6:8

Code:
 Private Sub GenerateEvenNumbers(ByVal LowEven, ByVal HighEven)
        For i As Integer = LowEven To HighEven Step 2
            If i Mod 2 = 0 Then
                TextBoxResult.Text += i.ToString() + ":"
            End If
        Next
    End Sub
 
pa tulong po mga master.
dalawang table po yn ,REM and CM
pano gagawing ganyan ang labas sa Crystal Report? Salamats po
View attachment 318906
 

Attachments

  • Untitled2.png
    Untitled2.png
    34 KB · Views: 35
Search how to use group in sql statement tsaka since 2 tables yan basahin mu na rin ang tungkol sa inner join :)

ginawa ko na yang inner join, ginawa ko na din ung sub-report sa mismong crystal report, and got the answer using UNION SELECT
salamat sa mga kasagutan nyo mga papa :D
 
mga master may way ba na yung filtering ko is katulad ng filter ng excel?

yung pwde mag filter ng more than one sa list saka may search sa loob ng filter?
 
Patulong mga master

populated po ung combo box galing sa database, gusto ko po sana na lagyan ng "addnew" sa dulo, then parang button siya na mag oopen ng form para sa input ng new category:
eto po ung ss;View attachment 320940
 

Attachments

  • prob.png
    prob.png
    37.8 KB · Views: 23
Patulong mga master

populated po ung combo box galing sa database, gusto ko po sana na lagyan ng "addnew" sa dulo, then parang button siya na mag oopen ng form para sa input ng new category:
eto po ung ss;View attachment 1214351

Add ka lang po ng code after mo ipopulate ng database mo ung combobox

Code:
ComboBox1.Items.Add("Add New. . .")
 
Last edited:
Back
Top Bottom