April 14th, 2011 06:51 PM
do you have the .net framework installed on the server? asp.net pages need a compiler. htm is what the browser sees when an aspx file is compiled.
April 12th, 2011 02:14 AM
Hello community, I haven't posted in a long time..
A question that is milling over in my mind is what is the best most flexible inversion of control framework? Two that jump to the top of the...
December 10th, 2010 09:05 AM
unless the main thread is kicking off async stuff in other threads. Really no way to know without seeing any code.
December 10th, 2010 09:02 AM
Have you thought about using crystal reports... or maybe the google charts api?
January 8th, 2009 06:46 AM
Fill a datatable and bind that to the report rather than letting crystal log in to your db.
December 30th, 2008 06:34 AM
Have you tried this?
if debugger.IsAttached then
' An IDE is attached (may be on remote machine)
end if
December 30th, 2008 06:23 AM
Instead of
playerview = players.DefaultView try
playerview.Table = players
December 30th, 2008 04:47 AM
The UI is handled by a seperate thread, so you have to either have
application.doevents inside your loop or place your loop code in a background worker thread.
December 24th, 2008 07:26 AM
I don't think the reference to frmMain is in scope. Try it like this:
SecondForm.MDIParent = Me.MDIParent
December 22nd, 2008 05:18 AM
It is going be a bit more complicated if you are using irregular shaped hotspots.
Using the mouseup event will give you coordinates clicked in the picbox. You will need a way to determine which...
December 16th, 2008 10:33 AM
It comes with the territory, don't worry about it.. at least you found the problem :)
December 16th, 2008 04:11 AM
I just tried this:
Private scnService As ServiceProcess.ServiceController
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
...
December 16th, 2008 03:47 AM
Very nice Grem!!..
I'm driving around in a big van that gets about 45 miles to gallon. I'm going to get a motorbike :)
December 15th, 2008 10:38 AM
December 12th, 2008 11:09 AM
Think I know exactly what you mean...
Have a look at this:
You need a datagridview (call it DataGridView1) with 2 columns (1st one is min qty, 2nd is qty) and a button (Button1).
Private Sub...
December 12th, 2008 09:25 AM
What type of database are you using and what programming language?
I hate crystal reports and normally try to do as little processing as possible inside the actual report. I as much as possible...
December 12th, 2008 09:14 AM
Is the servicecontroller managed or unmanaged code? If managed, it should dispose when the variable with the object reference goes out of scope (probably whats happening when you exit your program)....
December 12th, 2008 06:51 AM
If the messagebox has a title, you can use apis to get the messagebox's window handle, then you can use other apis to hide the window, and destroy it with your timer.
December 12th, 2008 06:04 AM
Does the messagebox have a title?
December 10th, 2008 07:55 AM
I guess it depends which version of SMTP the ISP is running, and what security measures they have in place.
December 9th, 2008 07:32 AM
It is still possible, but if your server has an open relay it will be added to blacklists faster than you can say lickety split.
December 5th, 2008 07:11 AM
Theres a nice example here:
http://www.codeproject.com/KB/vb/ErrorsAndEventsExample.aspx
December 5th, 2008 03:52 AM
There is a scope_identity() function which will get you what you want
see http://msdn.microsoft.com/en-us/library/ms190315.aspx
gl ;)
December 4th, 2008 07:02 AM
There is PDFbox... check out http://www.pdfbox.com/userguide/dot_net.html
Unfortunately (for us), it was wrote in java. You therefore need java dlls to get it to work (there are links to IKVM in...
December 1st, 2008 09:21 AM
As far as securing the number of users... your citrix client needs to logon using a domain account. You can setup which users have access to which programs. This is going to be the best way imo. ...