|
Hi there,
I have a requirement where I need to design a code of an application for the Master Slave communication via serial ports.I got the idea how to send and read data via serial ports in VB
but i got stuck about how to code the logic so that Master will throw data packet over the channel
and it will be listening to all the slaves but data will be actually received by the particular slave which Slave ID is mentioned and ignored by the all other Slaves.
|
|
|
|
|
You don't get more answers if you ask your question as Discussion and also as Q&A ...
|
|
|
|
|
First, since this is new development work, ABANDON VB6 NOW. You have no real reason to use it. It's been obsolete for the last 16 years.
Visual Studio 2017 Community is FREE and you get a modern version of the language.
|
|
|
|
|
Any one can help me ? i'm stuck Please :'(
|
|
|
|
|
You stuck with what ?
I'm sorry but this is so vague that an answer is nearly impossible ...
|
|
|
|
|
what are scale mode , scale height , scale width in vb in picture box ...how to do in mfc.
how to do call 32 bit vb ocx in 64 bit environment
|
|
|
|
|
|
please I need help on how to create a 3d form and button in visual studio. am using VB 2013
|
|
|
|
|
Yeah, there's really no answer to this vague question because you haven't spelled out what you mean by "a 3D form and button".
|
|
|
|
|
Please fellower friends I need help on how to restrict a label as an output to take floating point values with 3 decimal places
|
|
|
|
|
Really? A label has no way of limiting what is put into its Text property. You have call ToString on the value you're displaying and provide the number format string to limit the result to 3 places while formatting everything to the left of the decimal to whatever specification you want.
See Standard Numeric Format Strings[^] for more.
|
|
|
|
|
As Dave allready has written ...
But there is another possibility :
You create your own (customized) AnalogueLabel which derives from Label and has a Property 'Value' which type is for example single (or double).
If a legal value is assigned to this Property you can assign it to the Text-Property with the rerquired formatting :
Public Class AnalogueLabel
Inherits Label
Property Value As Single
Get
Return my_Value
End Get
Set(value As Single)
my_Value = value
Me.Text = my_Value.ToString("F3")
End Set
End Property
Private my_Value As Single = 0.0
End Class
|
|
|
|
|
I have a string...
<pre><add name="ConDB" connectionString="‘Ú·ÐŽÇáäޯΟ£‘ ª~«q œª¤ªµºÒÖÛÂÞ™Ú·ÐÚãÙ¬°ŽÀÇÛÈÚ»¿â§ÖÓ¯ÇâѾ‰«¶žØëˆÉ¤âáëááЉ³ÃÝÂäí®ªu¢©ÁÛÝŒœØÑÞÅâÇÞ€¤©ÁÓ猜ØÑÞÅâÇÞ€¥ž¯"
providerName="System.Data.SqlClient" />
How to change connection string above into regular string...
|
|
|
|
|
You need to know both the encryption algorithm and the key.
Cheers,
Mick
------------------------------------------------
A programmer is a person who always checks both ways when crossing a one-way street.
|
|
|
|
|
im newbie programmer... im not understand...
please advise... 
|
|
|
|
|
The data is encrypted so if you do not know how it was encrypted there is nothing you can do.
|
|
|
|
|
Can i change the string with:
<add name="ConnDB" connectionString="Data Source=localhost; Initial Catalog=DB_WB; User Id=sa; Password=123456; Integrate Security=false"
providerName="System.Data.SqlClient" />
|
|
|
|
|
Try it and see what happens.
|
|
|
|
|
If you typed that into the code, sure, it might work, IF that connection string is appropriate for your database and database engine.
Also, if that is an appropriate connection string, using the SA account is a horrible idea and a huge security risk to your database and the database server, subjecting both to being destroyed. Google for "SQL Injection Attack" for more information on why that is.
|
|
|
|
|
good morning to all
any help me to do report card generation uing vb.net 
|
|
|
|
|
Yes, but first you need to ask a proper question.
|
|
|
|
|
how create subreport with crystalReports in vb6 and access db=?
in my code i have error logon failed
please help me ,thanks
my code:
Private Sub lvButtons_H6_Click()
Dim Rs As New ADODB.Recordset
If Rs.State = 1 Then Rs.Close
' If Rs.State = 1 Then Rs.Close
If StrSQL = "" Then
Rs.Open "SELECT ID,GroupName,Fname,LName FROM tblMain ORDER BY ID ASC", Conn, adOpenStatic, adLockOptimistic
Else
On Error Resume Next
Rs.Open StrSQL, Conn, adOpenStatic, adLockOptimistic
End If
StrSQLPrint = Rs.Source
Set Me.VS.DataSource = Rs
PrintMember StrSQLPrint
End Sub
Private Sub PrintMember(StrSQL As String)
'On Error GoTo E_R
Dim Rs As New ADODB.Recordset
'Dim ObjApp As New CRAXDRT.Application
'Dim ObjRpt As New CRAXDRT.report
'Dim crDBTab As CRAXDRT.DatabaseTable
If Rs.State = 1 Then Rs.Close
'MsgBox StrSQL, vbCritical
Rs.Open StrSQL, Conn
Dim CrxApp As CRAXDRT.Application
Dim CrxRep As CRAXDRT.report
Dim crxSubreport As CRAXDRT.report
Dim crxSubreportObject As SubreportObject
Dim crxDatabase As CRAXDRT.Database
Dim crxDatabaseTables As CRAXDRT.DatabaseTables
Dim crxDatabaseTable As CRAXDRT.DatabaseTable
Dim crxSections As CRAXDRT.Sections
Dim crxSection As CRAXDRT.Section
Dim CRXReportObject As Object
Set CrxApp = New CRAXDRT.Application
Set CrxRep = CrxApp.OpenReport(App.Path & "\Reports\R.rpt")
CrxRep.Database.SetDataSource Rs
Set crxSections = CrxRep.Sections
For Each crxSection In crxSections
For Each CRXReportObject In crxSection.ReportObjects
If CRXReportObject.Kind = crSubreportObject Then
Set crxSubreportObject = CRXReportObject
Set crxSubreport = crxSubreportObject.OpenSubreport
Set crxDatabase = crxSubreport.Database
Set crxDatabaseTables = crxDatabase.Tables
For Each crxDatabaseTable In crxDatabaseTables
crxDatabaseTable.Location = App.Path & "\Database.mdb"
crxDatabaseTable.SetLogOnInfo "Local", "Database.mdb", "Admin", "123456"
Next
Set crxSubreport = Nothing
End If
Next
Next
Frm_Preview.CR.ReportSource = CrxRep
Frm_Preview.CR.ViewReport
Frm_Preview.Show vbModeless, MainForm
Set crxDatabase = Nothing
Set crxDatabaseTable = Nothing
Set crxDatabaseTables = Nothing
Set crxSections = Nothing
Set crxSection = Nothing
Set crxSubreportObject = Nothing
Set crxReport = Nothing
Set crxApplication = Nothing
End sub
modified 7-Apr-17 19:09pm.
|
|
|
|
|
hoomi_ghost wrote: please complete source for download
That's not how it works.
Even if you had provided a complete and actionable specification, this is not a "write-my-code-for-me" site.
We're happy to help with specific questions about code you have written. But nobody here is going to write the code for you.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
i edited my question
thanks
|
|
|
|
|