594 Posted Topics
Re: [QUOTE]Amazing -- view earth by satellite!![/QUOTE] I take it GoogleEarth has escaped your notice so far ? | |
Re: We use a third party component to do that kind of thing. [URL="http://www.aspose.com/"]http://www.aspose.com/[/URL] There are other options, crystal reports can create pdf output too. If your budget is 0 here are some open source c# libraries: [URL="http://csharp-source.net/open-source/pdf-libraries"]http://csharp-source.net/open-source/pdf-libraries[/URL] | |
Re: [QUOTE]Can you believe these?[/QUOTE] No not really, mostly they're urban myths. Some of them are amusingly inventive though :) | |
Re: javascript obviously. [quote] Javascript has a little quirk where a date of zero will set the date to be the last day of the previous month. Likewise is there are 30 days in a month and you set a date of 31 it will be the 1st day of the … | |
![]() | Re: [QUOTE=thunderstorm98;418637]Where it is ? I can't find please specify the path.[/QUOTE] [URL="http://www.daniweb.com/forums/search.php"]http://www.daniweb.com/forums/search.php[/URL] |
Re: You will need to set an onchange or onkeydown event in all of your editable controls to set a global dirty flag. Check this flag in the window.onbeforeunload event and simply return a string to it, the browser will do the rest. [code] <html> <head> <script type="text/javascript"> var unsaved = … | |
Re: Squirrel Shape Little red squirrel small and neat Where have you been on your little light feet Lost in a forest your soft eyes agape Living in a home that's not squirrel shape Wrap your little nutkins safe and warm Ready for the journey at tomorrows dawn Make haste little … | |
Re: Pirates of the Caribean - Dead Mans Chest verdict: Pants! Johnny Depp is extremely funny, but that's about all it has going for it. | |
Re: DEV C++ compiles C or C++ just fine. What is the reported error ? The links you posted give me a 404 page not found error. | |
Re: Is it 'cause the slots are chewed so the driver can't engage the head properly? If so get some super glue, glue the tip of the driver to the screw head, you'll need something like a peg to hold the driver upright while the glue dries (this is an art … | |
Re: I'm surprised no-one's mentioned that having a power outage mid-BIOS-flash is very bad, I'm not familiar with the model, but the manual should have instructions on how to restore the BIOS firmware to default version and settings, many modern BIOS chips have a backup built in (shorting the CMOS just … | |
Re: This is probably to do with how the javascript is rendered (somewhere in the middle) in the completed page that goes to the browser. I would put the javascript in a .js file. Then in the page_load event of the content page you can get a reference to the master … | |
Re: I've always used javascript for this kind of validation as it's more useful client side, not so good for the user to wait for a server round trip only to find they typed too much. PHP doesn't execute on the client so you can only inspect the length of the … | |
Re: [QUOTE]Legally, you have no ground[/QUOTE] Are you sure? If an employee creates a program as part of their job duties during contracted working hours in your employ YOU the employer own the Intellectual Property not the employee. When a freelance programmer creates some software for you THEY own the Intellectual … | |
Re: SET IDENTITY_INSERT <tablename> ON Place this statement before your insert statement, it allows you to enter specific id's into an identity seed column. Place this line immediately after your insert statement. SET IDENTITY_INSERT <tablename> OFF New id's will continue to be generated for new inserts. I am assuming there will … | |
Re: Make the office a round of tea. Sort my desk. Just look out the window for a few minutes. Stand up and do some stretching. The rule of thumb is: you should vary your focus and flex your shoulders and back about once an hour. just anything that's different from … | |
Re: Not in Control panel it doesn't. Attach a screenshot of same thread, one from ASP.NET forum view and the other from Control Panel Subscribed threads view. One shows solved the other doesn't. | |
Re: [QUOTE]how are declarations in header file associated with the definitions in the .CPP file??[/QUOTE] Because you [inlinecode]#include "myheader.h"[/inlinecode] at the top of the cpp file. #include tells the pre-processor to bung the code in "myheader.h" right there. Yes you can call the header whatever you like, but why would you? … | |
Re: You'll have to be more descriptive. I didn't think there could be anything outside of HTML tags other than a DOCTYPE declaration. Same way you search any text data I guess, put it in a string and RegEx (Reglar Expression) for what your looking for. | |
Re: What's a datasheet? do you mean a DataGrid or GridView control? just set the BackgroundColor property. | |
Re: You have a couple of choices depending on how many elements you require to print. There is no 'builtin' solution for this kind of thing in ASP.NET look into CSS [code]<style type="text/css" media="print">#elementid {display; none;}</style> [/code] You can have a separate style sheet for the browser to apply when printing, … | |
Re: Hurrah! not only british but a thirty something too. Welcome aboard :) | |
Re: You need to look in the right place, to identify the process using 90% cpu it *will* be there that's step one. I attach screen dump to get you to the right place. Tell us what you find. | |
Re: [code] <input type="checkbox" id="CheckBox1" onclick="window.open('somepage.html','myWindow','width=300,height=200');" /> [/code] | |
Re: You have to remember the extra slot for the null terminator '\0' | |
Re: the ExecuteScalar method returns an object (in VB.NET in VB6 I can't remember perhaps a variant) not a reader. The object is the value in the first column of the first row of the odbc result set. Also your code doesn't look like valid VB.NET to me. Don't you have … | |
Re: [code] MsgBox("This is line one.\r\nThis is line two") [/code] or: [code] MsgBox("This is line one." & Environment.NewLine & "This is line two") [/code] See: [URL="http://msdn2.microsoft.com/en-us/library/system.environment.newline.aspx"]http://msdn2.microsoft.com/en-us/library/system.environment.newline.aspx[/URL] | |
Re: javaw is designed for that (launches the JVM but without a command window) again needs to be in your path. Then create a windows shortcut with the necessary command. See here for more info: [URL="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html"]http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html[/URL] | |
Re: OP is creating it dynamically so do Infarction's suggestion but in your code behind wherever you are building it. [code] using System.Web.UI.WebControls. : public partial class ... blah { private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here Button btn = new Button(); … | |
Re: [code] Dim MIN As Integer = 1378 Dim MAX As Integer = 2000 For i As Integer = MIN To Max SomeSub(String.Format("http://www.cric8.com/livescorecard/od_minicard2_{0}.html", i.ToString())) Next i Private Sub SomeSub(url As String) 'Do some funky thing with url End Sub [/code] Or something like that... gad I hate VB syntax, yuck! | |
Re: A better solution is to use a left join it is more efficient than using the IN clause [code] Select t1.* from Table1 t1 left join Table2 t2 on t1.date_field = t2.date_field and t1.number_dialed = t2.number_dialed where t2.date_field is null [/code] The left join means return all records in Table1 … | |
Re: Windows installs a HAL (Hardware Abstraction Layer) between the OS and your hardware. If you change that hardware significantly (as in your case a whole new mobo) It will no longer be valid A breif search gives some interesting links: [URL="http://www.pcstats.com/articleview.cfm?articleid=1755&page=5"]http://www.pcstats.com/articleview.cfm?articleid=1755&page=5[/URL] So a Windows XP repair install should fix your … | |
Re: If you're using javascript alert or confirm you are stuffed you can't control the style it is part of the users system and therefore controled by their current theme, browser skin etc. You will have to create your own 'pop-up' by dynamicaly creating an absolute positioned div add some controls … | |
Re: ASP.NET is a web technology which is 'pull' only. A webserver can't 'force' your browser to browse it cos there's an urgent appointment to be seen. Where are the appointments stored? if in Sql Server you can use SqlServer Agent to poll for appointments and email alerts to users. Or … | |
Re: Yes those are your two choices. It's no problem to have framework 1 and 2 on a comnputer side by side so bundle the framework 2 re-distributable in your set-up project. | |
Re: There are many different types of barcode. I haven't been involved with scanners for a few years now, but I do remember on the scanners we used there was a configuration applet where you could set what types of barcode should be enabled for the scanner to read. | |
Re: [QUOTE]i am kind of stuck and i need some help. i have a dll and a .cs file. i have opened the .cs file and it contains a class. i asume that the class and the dll works together. sort of like a cpp header file and class file[/QUOTE] No. … | |
Re: Cripes! What happened to KISS (Keep It Simple Stupid) May be I'm missing something? I am assuming [QUOTE]link word delete[/QUOTE] is just an anchor tag? So whats wrong with rendering it like this: [code] <a href="delete.php?id=1" onclick="return confirm('Are you sure');">Delete</a> [/code] This way you never even leave List.php, unless the … | |
Re: Drag a GridView or Repeater control onto your form in design view. In the code behind (Do your databse code which you have shown you know how to do) then just pass the resulting reader to the DataSource property of the WebControl (GridView, Repeater whatever) and call it's DataBind() method. … | |
Re: Hi Aniruddha, I can tell by your post you are very much in the deep end and out of your depth. You need more help than a little post in a tech forum thread can give you. And we don't just give code away here, you have to earn it. … | |
Re: How much do you know about the ASP.NET page life-cycle? I suspect that is where you are struggling. If you are creating WebControls on the fly, to capture events from them they have to be re-created on postback *before* viewstate is access to assign all the values to the controls … | |
| |
Re: Solved here:[URL="http://www.daniweb.com/forums/thread90874.html"] http://www.daniweb.com/forums/thread90874.html[/URL] | |
Re: Ebabes stop spamming the forums !! Solved here:[URL="http://www.daniweb.com/forums/thread90874.html"] http://www.daniweb.com/forums/thread90874.html[/URL] | |
Re: If you are familiar with C/C++ I would recommend C#. It's not important whether you chose VB or C# both are compiled to MSIL so the end result is the same. Therefore, I think you will pick up .NET programming quicker if you go with C# because you will spend … | |
Re: You just need a ssl enabled on your web server and a ssl certificate. Then the client just uses http[COLOR="Red"]s[/COLOR]:// instead of http:// Any POST data will be encrypted. | |
Re: I bake and decorate cakes Make just about anything with my daughters. This years achievment was recyclying some branches that fell from my lilac tree. Stripping them (took like days!) then painting them in white gloss and sticking them in a bucket topped of with those coloured glass pebbles you … |
The End.