594 Posted Topics

Member Avatar for The Dude

[QUOTE]Amazing -- view earth by satellite!![/QUOTE] I take it GoogleEarth has escaped your notice so far ?

Member Avatar for lasher511
0
94
Member Avatar for Ravenous Wolf

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]

Member Avatar for scru
-1
1K
Member Avatar for The Dude

[QUOTE]Can you believe these?[/QUOTE] No not really, mostly they're urban myths. Some of them are amusingly inventive though :)

Member Avatar for jasimp
0
282
Member Avatar for atrusmre

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 …

Member Avatar for hollystyles
0
88
Member Avatar for thunderstorm98

[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]

Member Avatar for Ezzaral
1
872
Member Avatar for sasindagi

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 = …

Member Avatar for hollystyles
0
93
Member Avatar for The Dude

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 …

Member Avatar for Lardmeister
0
193
Member Avatar for The Dude

Pirates of the Caribean - Dead Mans Chest verdict: Pants! Johnny Depp is extremely funny, but that's about all it has going for it.

Member Avatar for Lardmeister
0
423
Member Avatar for cwarn23

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.

Member Avatar for Kocmotex
0
513
Member Avatar for Southerngirl

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 …

Member Avatar for caperjack
0
166
Member Avatar for Ancient Dragon
Member Avatar for thunderstorm98
0
116
Member Avatar for mudguard

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 …

Member Avatar for jbennet
0
154
Member Avatar for piote

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 …

Member Avatar for hollystyles
0
105
Member Avatar for thunderbbolt

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 …

Member Avatar for hollystyles
0
70
Member Avatar for steff_dk

[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 …

Member Avatar for steff_dk
0
107
Member Avatar for GLT

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 …

Member Avatar for GLT
0
105
Member Avatar for plusplus

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 …

Member Avatar for twomers
0
112
Member Avatar for Prozeen

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.

Member Avatar for Prozeen
0
115
Member Avatar for Ashu@sym

[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? …

Member Avatar for Ashu@sym
0
124
Member Avatar for bcm

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.

Member Avatar for preetham.saroja
0
105
Member Avatar for geetajlo

What's a datasheet? do you mean a DataGrid or GridView control? just set the BackgroundColor property.

Member Avatar for preetham.saroja
0
90
Member Avatar for bhavna_816

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, …

Member Avatar for hollystyles
0
70
Member Avatar for curvespace

Hurrah! not only british but a thirty something too. Welcome aboard :)

Member Avatar for curvespace
0
108
Member Avatar for vitycent

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.

Member Avatar for jbennet
0
282
Member Avatar for pointers

[code] <input type="checkbox" id="CheckBox1" onclick="window.open('somepage.html','myWindow','width=300,height=200');" /> [/code]

Member Avatar for hollystyles
0
56
Member Avatar for geekychick
Member Avatar for hollystyles
0
119
Member Avatar for JavaFish

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 …

Member Avatar for JavaFish
0
574
Member Avatar for geetajlo

[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]

Member Avatar for geetajlo
0
99
Member Avatar for The Dude
Member Avatar for vicky_dev

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]

Member Avatar for vicky_dev
0
2K
Member Avatar for genpopo

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(); …

Member Avatar for hollystyles
0
84
Member Avatar for bcm

[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!

Member Avatar for binoj_daniel
0
88
Member Avatar for BOUKHARI

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 …

Member Avatar for hollystyles
0
124
Member Avatar for Dougie

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 …

Member Avatar for MeadowsPV
0
122
Member Avatar for geetajlo

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 …

Member Avatar for SheSaidImaPregy
0
124
Member Avatar for Fam

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 …

Member Avatar for Fam
0
95
Member Avatar for GRaymer

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.

Member Avatar for GRaymer
0
104
Member Avatar for rinoa04

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.

Member Avatar for blacklocist
0
79
Member Avatar for Ravenous Wolf

[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. …

Member Avatar for Ravenous Wolf
0
207
Member Avatar for tanha

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 …

Member Avatar for tanha
0
289
Member Avatar for The Dude
Member Avatar for SheSaidImaPregy

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. …

Member Avatar for SheSaidImaPregy
0
167
Member Avatar for aniruddha garai

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. …

Member Avatar for hollystyles
0
78
Member Avatar for alokdayal

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 …

Member Avatar for hollystyles
0
64
Member Avatar for Duki
Member Avatar for Chaky
4
172
Member Avatar for ebabes

Solved here:[URL="http://www.daniweb.com/forums/thread90874.html"] http://www.daniweb.com/forums/thread90874.html[/URL]

Member Avatar for hollystyles
0
103
Member Avatar for ebabes

Ebabes stop spamming the forums !! Solved here:[URL="http://www.daniweb.com/forums/thread90874.html"] http://www.daniweb.com/forums/thread90874.html[/URL]

Member Avatar for hollystyles
0
147
Member Avatar for nayan408duet

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 …

Member Avatar for hollystyles
0
111
Member Avatar for jinju

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.

Member Avatar for jinju
0
76
Member Avatar for Infarction

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 …

Member Avatar for ndeniche
0
445

The End.