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!

sir..... may tanung ako pwede po ba magcode sa text box? ng my sql ung gagawa ka ng table kci module cia?
 
sir..... may tanung ako pwede po ba magcode sa text box? ng my sql ung gagawa ka ng table kci module cia?

of course! kht nga sa crystal report, listview, gridview pwede..

subj module taz ung quizzer sa crystal report then submit save din sa sql, working din sa listview at gridview
 
- > mga master tanong Lang po, ano po soLusyon d2;

"The "Microsoft.Reporting.RdlCompile" task could not be loaded from the assembly Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or assembly 'Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask."
 
- > mga master tanong Lang po, ano po soLusyon d2;

"The "Microsoft.Reporting.RdlCompile" task could not be loaded from the assembly Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or assembly 'Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask."

reference dll
 
mga sir ask ko lang po kung pano mag add ng checked item from listview to another listview

for example :

yung listview1 ko may laman then checked ko sa gilid pano sya lilipat sa listview2??need help
 
mga master penge nman sample tungkol s controls ng vb.net. FORMS,TEXTBOX ,etc.. gmitin q s design ng GUI. at konting TUT n rin.. hnd q kc maintindihan ung mga napapanood q at nbabasa s ibang site. salamat mga master. :pray:
 
mga master penge nman sample tungkol s controls ng vb.net. FORMS,TEXTBOX ,etc.. gmitin q s design ng GUI. at konting TUT n rin.. hnd q kc maintindihan ung mga napapanood q at nbabasa s ibang site. salamat mga master. :pray:

GUI of what? VPN, System, Media player?etc..?
 
Just came back on programming again. Mas sanay ako sa VB6.0. Mas maganda ba talaga gamitin ang VB.net? If yes, may I know kung ano ang pinagkaiba ng dalawa and which is easier?
 
gud day sir .. active pa po ba itong thread na ito ?
magpapatulong po sana ako ..

kaylangan ko pong gumawa ng "SLIDE SHOW" ng mga pictures .. sa form sa vb.net 10 ..

pero, hindi gagamitin ung resources sa vb.net10 ..

pwede po b un?? gagawa po ako ng folder na dun ilalagay ung picture. ung folder po ay nasa desktop or documents.. tapos naka connect na po sya dun sa folder. para kung gusto ko palitan ung picture. i-cocopy paste ko nalng po dun sa folder na ginawa ko ..

PWEDE PO BA UN ??

PATULONG PO PLS.
 
Last edited:
mga master ano po ang maLi pag gani2?

The source ot the definition has not been specified.

"A data source has not been supplied for the data source 'DataSet1'."
 
mga master ano po ang maLi pag gani2?

The source ot the definition has not been specified.

"A data source has not been supplied for the data source 'DataSet1'."
yan na ung definition sir...
ang ngyari hindi mo siya pinakain or na link sa isang datasource..
 
yan na ung definition sir...
ang ngyari hindi mo siya pinakain or na link sa isang datasource..

e2 po sir yong code;
query = "SELECT * FROM tabLename"
Cm = New MySql.Data.MySqlClient.MySqlCommand(query, Cn)
Da.SelectCommand = Cm
Da.Fill(Ds.Tables(0))

ReportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local
ReportViewer1.LocalReport.ReportPath = System.Environment.CurrentDirectory & "\Report1.rdlc"
ReportViewer1.LocalReport.DataSources.Clear()
ReportViewer1.LocalReport.DataSources.Add(New Microsoft.Reporting.WinForms.ReportDataSource("DataSet1_DataTable1", Ds.Tables(0)))
ReportViewer1.DocumentMapCollapsed = True
Me.ReportViewer1.RefreshReport()

pano po sya e Link sa datasource?
 
e2 po sir yong code;
query = "SELECT * FROM tabLename"
Cm = New MySql.Data.MySqlClient.MySqlCommand(query, Cn)
Da.SelectCommand = Cm
Da.Fill(Ds.Tables(0))

ReportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local
ReportViewer1.LocalReport.ReportPath = System.Environment.CurrentDirectory & "\Report1.rdlc"
ReportViewer1.LocalReport.DataSources.Clear()
ReportViewer1.LocalReport.DataSources.Add(New Microsoft.Reporting.WinForms.ReportDataSource("DataSet1_DataTable1", Ds.Tables(0)))
ReportViewer1.DocumentMapCollapsed = True
Me.ReportViewer1.RefreshReport()

pano po sya e Link sa datasource?

eto ung ginawa kong sample sa nagpatulong din...

Code:
 Dim newRDS As New ReportDataSource 'bale eto instantiate ka ng new report source
        'ganito pala ngyari,nag add ako ng dataset control then naglagay ako ng datatable which is pareho sa output ng query(mga fields/col)
        'then add ka new new item reporting/reportwizard
        'point mo kung anong datasource,kunin mo ngayn ung ginawang dataset control
        'next next mo lng

        newRDS.Name = "productDS" 'eto ung name ng dataset sa report wizard
        newRDS.Value = ds.Tables(0) 'fill out na natin
        Dim rep As LocalReport = ReportViewer1.LocalReport 'instantiate
        rep.ReportPath = "F:\POLENS STUFF\VB Projects\ReportSample\ReportSample\rpProduct.rdlc" 'source or path ng report

        rep.DataSources.Add(newRDS) 'add
        Me.ReportViewer1.RefreshReport()

bale ang nangyari gumawa ako ng dummy dataset na object then add ako ng table para merong parameters sa reportviewer..
 
Last edited:
gud day sir .. active pa po ba itong thread na ito ?
magpapatulong po sana ako ..

kaylangan ko pong gumawa ng "SLIDE SHOW" ng mga pictures .. sa form sa vb.net 10 ..

pero, hindi gagamitin ung resources sa vb.net10 ..

pwede po b un?? gagawa po ako ng folder na dun ilalagay ung picture. ung folder po ay nasa desktop or documents.. tapos naka connect na po sya dun sa folder. para kung gusto ko palitan ung picture. i-cocopy paste ko nalng po dun sa folder na ginawa ko ..

PWEDE PO BA UN ??

PATULONG PO PLS.
.. ts possible yan..
try mong iresearch kung paano i list ang contents ng isang folder.. na may file extensions ng pictures.. tpos gamit ka ng for loop para sa slideshow.. transitions lng ang prob jan..

EDIT:

example para makuha lahat ng laman ng isang folder na may file extension na .JPG

Code:
 Private Sub GetFolderContents()
        Dim loc As String = "c:\ss\"
        Dim ext As String = "*.jpg"
        Dim DirInfo As DirectoryInfo = New DirectoryInfo(loc)
        Dim Files() As FileInfo = DirInfo.GetFiles(ext, SearchOption.AllDirectories)
        Dim File As FileInfo
        Dim images(Files.Length) As String
        Dim c = 0
        For Each File In Files
            images(c) = loc & File.Name
            c += 1
        Next (File)
    End Sub

ilalagay nia ito sa isang Array
 
Last edited:
Back
Top Bottom