|
HI,
well, that is all i need from the programing world for now, since i don't realy have the time to study it for months, i do understand though, what is going on, besides a few little basic things which i don't understand in VB.net.. and i do study from the Msdn videos and any other source i can get my hands on, i appriciate your help, and the links, allthough i know them all pretty well, the first link is the one that started me going..
anyway, thank you for encourging me.. as i said on another msg, i just want this simple basic code to work, it would give me a jump start to everything else, and will improve my learning after i'll get it right..
and thanks for your help..
i realy realy appriciate it..
Ray.
|
|
|
|
|
No problem. I've had a light load the past week and I have appreciated the site in the past, so I have jumped in to answer questions. Its been fun, 5 minutes here and there throughout the day while I work.
The problem is that there is no telling what is wrong with your code or how long it would take to fix. Open ended questions like this are open ended time sinks. And despite the fact that I have a light load, I do have work to get done, and so do others who volenteer here.
My suggestion is set break points in your code, put watches on the objects and examine them. Step throught your code line by line and watch what it does. Read the examples and yes, study programming. If you can locate a specific problem and ask for clarification, it might be that someone will look at it, decide its not to much work to answer it for you and give you an answer.
topcoderjax - Remember, Google is your friend.
|
|
|
|
|
Thanks for the advice, i just GOT IT WORKING!!!
you guys are amazing..
NO WORDS.
(Besides THANKSSSS!!!!!!!!!!!!!!!)
Ray.
|
|
|
|
|
Hiya
Just wondering if anyone knows if you can export financial information (like totals of nominals) into an access database, or even export it as a txt or xls file from sage?
I need to create a piece of software that does this but i've never used the ODBC before.
Thanks
See, told ya!
|
|
|
|
|
You're going to have to ask Sage this question. There doesn't appear to be an SDK or any documentation on the database structure on their website. Without knowing how the database is organized, you're pretty much SOL.
|
|
|
|
|
This information is somewhat reserved for the Sage Developers' community, which Sage charge hansomly to be a member of. You didn't say which Sage Accounts your interested in?
Line 50, Line 100, Sage 200, MMS, Sage 500, Instant etc.
Steve Jowett
-------------------------
Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
|
|
|
|
|
I didn't say it because I'm not interested in it. Try replying to the OP instead.
|
|
|
|
|
Oops, sorry Dave. A bit of an oversight there
Steve Jowett
-------------------------
Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
|
|
|
|
|
Hello,
How is SFtp done with .NET? I have looked for Internet and have not found anything, alone components of payment.
I would like to be able programme it like.
Thanks,
Shiveta
|
|
|
|
|
The .NET Framework FTP component doesn't support SFTP. You need to use a third party component that does. Click[^] for an example.
|
|
|
|
|
Hello Dave,
This web already I saw. I already know that there are many components in Internet that do that, but are of payment. I need to know like doing it without using an existing library. The web that you have put is of a trial component. Long ago that I'm looking for it.
In any case thanks.
Shiveta
(forgives my language, I don't speak very well English)
.NET Developer
MCSD Certificate
|
|
|
|
|
In that case, you'll have to implement your own FTP Client class, complete with SSL support. I hope you're very familiar with how Sockets and SSL works.
|
|
|
|
|
I have some problems in implementing Operations Research algorithms(in a Distribution Management System/Sales) such as Salesman Problem,Application of Constrained Nonlinear Programming,etc....
It was difficult as I couldn't find a mathematical approach
to solve it.If anyone knows any links where i can find a solution(if possible a Source code) please let me know.
Regards
Roshan
|
|
|
|
|
It's absolutely amazing what you can get out of Google[^] if you just try.
|
|
|
|
|
Hi!
Is there a flexgrid conrol in vb.net as in vb?if it is not,what should i do to get the same functinality.
Regards
Roshan
|
|
|
|
|
de silva wrote: Is there a flexgrid conrol in vb.net as in vb?if it is not,what should i do to get the same functinality.
Try the DataGridView. It is similar functionality once you have got your head round how to use it.
David Loring
!! Keep Music Live !!
|
|
|
|
|
Can we insert data into the DataGrid without connecting it to a table in the database?(selecting a row/column/cell)
Roshan
|
|
|
|
|
Yes absolutely. It does not have to be connected at all. The only thing I found difficult was getting my head round the way you go about doing this. You can also have columns with combo box drop downs or check boxes.
I could try an help you out if you get stuck with some examples, but I don't guarantee that I am doing it the right way! I have worked it out over a period of time, and it works for me.
I am away from my email at present so do not be surprised if there is a delay in replying.
David Loring
!! Keep Music Live !!
|
|
|
|
|
Hi,
Can anyone tell me if VB .NET leaves strange entries in My Documents\%USER PROFILE%\Application Data when an item is deleted from a project?
CGlobalParameters.dll_Url_4l0fzug125s0wj3wm2qsvdo53iyv2xj5 is the name of a folder that has been created. I did delete the CGlobalParameters.dll from a project. There are several others that all appear to be items or projects I have deleted, but Spyware Detector is saying they are spyware.
David Loring
!! Keep Music Live !!
|
|
|
|
|
Not when a project is deleted, no. It's possible that some stuff gets in there when the code is run though, like settings files or minidumps.
|
|
|
|
|
Thanks Dave
Maybe they get there when VS2005 crashes, as it has done several times, but they just appear to contain a configuration file the contents o which is:
<configuration>
<configsections>
They are all itentical.
David Loring
!! Keep Music Live !!
|
|
|
|
|
HI , I want one function to be called repltedly after a perticular interval. SO i have implemented OnTimedEvent. In that I called my function IsFinish. Isfinish contains some more function calls.
If i call Isfinish from a button and get the values after some interval it is workig fine. but if I call this function from OnTimedEvent it is returning null. Please guide.
ciacia
|
|
|
|
|
There's no such event in the .NET Framework. Which Timer did you use? There are three in the .NET BCL:
System.Threading.Timer
System.Timers.Timer
System.Windows.Forms.Timer
|
|
|
|
|
i have implemented Imports System.Timers and on form load
AddHandler NotifyTimer.Elapsed, AddressOf OnTimedEvent
please tell me some other way
|
|
|
|
|
The System.Timers.Timer uses a seperate thread to call the timer elapsed handler code. If your code is trying to get data from user controls to do it's work, it won't get any data. This is because you can only use a controls methods and properties on the thread that the control was created on.
Let's see your OnTimedEvent method...
|
|
|
|