|
Your question is too broad. You need to decide how to design your software, will it be n tiered, will it be a web app, what tools will you use, etc ? Then you can ask specific questions here.
It sounds to me very much like this is too big a project for you now, what do you mean by 'I just learned VB.NET'. How long have you been using it ?
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
abdulnawas wrote: how to design a accounting software
You first need to know the rules for accounting e.g. Double Entry Book Keeping.
You need to know how a Nominal/General Ledger works
You need to know the difference between the Balance Sheet and Profit and Loss layouts and Accounts
You need to know how tax laws opporate in your intended market/country(ies)
That's a small sample of things you will need to know about General Ledgers
Stock Control :-
Different costing methods
Landed costs
Batch and Serial numbers
multi-locations
again the list is endless
I would start on something much simpler as a project.
Steve Jowett
-------------------------
It is offen dangerous to try and see someone else's point of view, without proper training. Douglas Adams (Mostly Harmless)
|
|
|
|
|
I want to give limit to the splitter bar in a framset so that user cannot move the splitter bar beyond the limit given.
ex-
I want to give limit such that user can move the bar say about 40 columns towards left.Beyond that he cannot move the bar.
Thank You...
|
|
|
|
|
If you're using the SplitContainer control, simply set the Panel2MinWidth (right side panel) property to the width of the SplitContainer minus the 40 pixels you want for the maximum size of Panel1 (left side).
mySplitContainer.Panel2MinSize = mySplitContainer.Width - 40
You'll have to put this code in the Resize event of your SplitContainer if your form is resizable and the SplitContainer is anchored to the sides of the form.
|
|
|
|
|
Thnak You Very much Dave 
|
|
|
|
|
I am getting the exception "Exception has been thrown by the target of an invocation" with the following code:
Imports System.Net.Mail
Public Class SendMail
Sub newreportMail(ByVal ex As String)
Dim SendEmail As New MailMessage()
With SendEmail
.From = New MailAddress("from@from.com")
.To.Add(New MailAddress("to@to.com"))
.Subject = "There is a problem"
.Body = "There has been a problem inserting a record : " + ex
Dim client As SmtpClient = New SmtpClient("1.2.3.4")
client.Credentials = New Net.NetworkCredential("from@from.com", "pass")
client.Send(SendEmail)
End With
End Sub
End Class
It bottoms out after a couple of seconds when it reaches the client.send(sendEmail) line.
Any help would be great.
|
|
|
|
|
Looks like you copied an example off the web and didn't bother to change it to use real values. I doubt that 1.2.3.4 is the IP address of a real mail server accessible to your network.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
It's not, i just put that in as an example.
|
|
|
|
|
I regret to report that we get enough dumb questions around here that you need to make that clear
Your mail server requires the step where you specify credentials ? No email code I've ever written involves that step, as far as I remember.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
hi try this
set
client.DeliveryMethod = SmtpDeliveryMethod.Network
before sending mail..
Rajesh B --> A Poor Workman Blames His Tools <--
|
|
|
|
|
hey guys, got it working in the end:
Sub newreportMail(ByVal ex As String)
Dim SendEmail As New MailMessage()
With SendEmail
.From = New MailAddress("from@from.com")
.To.Add(New MailAddress("to@to.com"))
.Subject = "There is a problem inserting records"
.Body = "There has been a problem inserting a record : " + ex
Dim client As SmtpClient = New SmtpClient()
client.Host = "mail.here.com"
client.Credentials = New Net.NetworkCredential("from@from.com", "pass")
client.Send(SendEmail)
End With
|
|
|
|
|
Sir,I want to display Treeview in Crystal Reports
pls help me on this
Mamatha
|
|
|
|
|
The only way to show a TreeView in Crystal Reports is to create an image on one. Try this[^].
|
|
|
|
|
This message is appeared suddenly ,,
I deleted Debug folder and rerun project without any change ..
Hoe can i solve this problem ?
jooooo
|
|
|
|
|
The rest of the exception text will tell you what dependancy is missing.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
hi guys
i have a windows library created in vb.net, now i want to know that how to i can create a html help file of this library ,, thanks in advance ..
hello
|
|
|
|
|
There are tools for doing that, did you google ?
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
|
Hi All,
Assume that you have an exe. Now you are creating a new application which opens or launches the existing exe. Launching an exe from your application can be done using Shell command.
Now my question is with out opening that exe you have to do operations what you are doing in that exe. eg: If are able to create new record in that exe then from your application you should be able to activate the new button in that exe.?
Thanks
Omprakash
|
|
|
|
|
Basically, if you're writing both apps, you need to write code to create communication between them, probably using WCF, named pipes, or the WM_COPYDATA message.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hi Christian
Thanks for reply.
I am using VB6 to do this. The exe what i am using is not developed by me. So i don't have source code of that exe also.
|
|
|
|
|
What you want to do is very problematic. Using SendKeys and posting mouse messages to another window depends on the input focus NOT being touched by the user using your application. If they click off your target application during an interactive operation, that operation will fail. You'll have no way of knowing it and no way of resetting the target app back to a known state so you can retry the operation.
|
|
|
|
|
Hi Dave
Thanks Dave. Even i tried to send the keys but problem is when you are using send keys if target exe don't have any shortcut keys then it will not work.
Thanks once again.
|
|
|
|
|
I Have been generating a text file using streamWriter in my project.I have to set the readonly attribute of that text file to true.
can anyone please help me to solve this.
thank u
|
|
|
|
|
Google broken where you live ?
Once you have a text file stored on disc, you can get the file attributes and set readonly to be true.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|