Search Results

Showing results 1 to 40 of 890
Search took 0.05 seconds.
Search: Posts Made By: Tekmaven
Forum: C# Jun 19th, 2009
Replies: 2
Views: 827
Posted By Tekmaven
Application.Exit()


MSDN Doc: http://msdn.microsoft.com/en-us/library/system.windows.forms.application.exit(VS.71).aspx
Forum: ASP.NET Jun 15th, 2009
Replies: 5
Views: 567
Posted By Tekmaven
There is no way that any modern browser has javascript functions allowing access to COM ports.
Forum: ASP.NET Jun 12th, 2009
Replies: 5
Views: 567
Posted By Tekmaven
There is no way to do that. ASP.NET is a server side language.
Forum: C# Jun 9th, 2009
Replies: 1
Views: 589
Posted By Tekmaven
Regular expressions are the way to go. Using them in C# is easy, but developing the actual regular expression is slightly complicated. There are two tools that I've used in the past to help me craft...
Forum: VB.NET Jun 8th, 2009
Replies: 3
Views: 348
Posted By Tekmaven
I used this converter: http://www.dotnetspider.com/convert/Csharp-To-Vb.aspx. It seems to compile the app then use the MSIL to convert it to VB, which is the best way of translation. If this...
Forum: ASP.NET Jun 8th, 2009
Replies: 4
Views: 466
Posted By Tekmaven
Use the DateTime object. You can check out the DateTime object's members here: http://msdn.microsoft.com/en-us/library/system.datetime_members.aspx
Forum: ASP.NET Jun 8th, 2009
Replies: 2
Views: 735
Posted By Tekmaven
It looks like Red Hat has only included it in Fedora and not in Red Hat Enterprise Linux. http://news.cnet.com/8301-10784_3-6025387-7.html
Forum: ASP.NET Jun 7th, 2009
Replies: 15
Views: 2,836
Posted By Tekmaven
You should post what you've come up with. You never know, it might help other DaniWeb users out!
Forum: C# Jun 6th, 2009
Replies: 2
Views: 1,049
Posted By Tekmaven
Have you tried setting the .DataSource of the combobox to null, then clearing it, then binding it? Also, there is probably a more elegant way to write that function, since all 3 if blocks are...
Forum: C# Jun 6th, 2009
Replies: 3
Views: 262
Posted By Tekmaven
You need to do an INSERT query to add data. You gave us a screenshot of a SELECT query. Since you have two tables with a relationship, when you go to insert a row in both tables with the same ID.
Forum: ASP.NET Jun 6th, 2009
Replies: 2
Views: 495
Posted By Tekmaven
http://www.c-sharpcorner.com/UploadFile/mgold/DotNetBlog12022005013909AM/DotNetBlog.aspx
Forum: C# Jun 6th, 2009
Replies: 3
Views: 882
Posted By Tekmaven
Cool. If you don't know how to get Spy++, I believe I read that it is included in the Windows SDK.
Forum: C# Jun 6th, 2009
Replies: 1
Views: 451
Posted By Tekmaven
Have you tried using the SharpZip? It's probably much better at handling compression. http://www.icsharpcode.net/OpenSource/SharpZipLib/
Forum: C# Jun 5th, 2009
Replies: 3
Views: 882
Posted By Tekmaven
Have you tried using Spy++? Check out this article:...
Forum: C# Jun 5th, 2009
Replies: 4
Views: 860
Posted By Tekmaven
So what exactly initiates the download? It comes from javascript? You might have to just parse the javascript. Sendkeys would be a cop out :)
Forum: ASP.NET Jun 5th, 2009
Replies: 4
Views: 904
Posted By Tekmaven
@ithelp: that is exactly what I was thinking :)
Forum: ASP.NET Jun 5th, 2009
Replies: 4
Views: 904
Posted By Tekmaven
You can put the date of birth in a DateTime, and then use the dates in this wikipedia article, http://en.wikipedia.org/wiki/Zodiac_sign#The_twelve_signs, to calculate what zodiac sign the date falls...
Forum: ASP.NET Jun 5th, 2009
Replies: 1
Views: 376
Posted By Tekmaven
Here is an article on URL Rewriting in ASP.NET 1.1: http://msdn.microsoft.com/en-us/library/ms972974.aspx
Forum: C# Jun 5th, 2009
Replies: 4
Views: 860
Posted By Tekmaven
You should override the Navigating event of the browser control. You're going to have to figure out when the URL is the download url (the file name might change, but it might be in a certain path or...
Forum: ASP.NET Jun 4th, 2009
Replies: 6
Views: 581
Posted By Tekmaven
Get rid of runat="server" in that script tag. That isn't server side script; it's javascript which runs on the client.
Forum: ASP.NET Jun 4th, 2009
Replies: 6
Views: 581
Posted By Tekmaven
Which line is doing that? Can you put it in bold or something? I'm not sure if your counting the whitespace as a line number.
Forum: C# Jun 4th, 2009
Replies: 2
Views: 1,058
Posted By Tekmaven
Thanks for sharing. Use the code snippits area of DaniWeb to post your code snipits - http://www.daniweb.com/code/csharp.html
Forum: C# Jun 4th, 2009
Replies: 2
Views: 481
Posted By Tekmaven
You don't have to compile the project from the command line to generate a .dll file. In Visual Studio, select the Class Library project type, and that will compile into a .dll file. After you...
Forum: ASP.NET Jun 2nd, 2009
Replies: 15
Views: 2,836
Posted By Tekmaven
Forum: C# Jun 1st, 2009
Replies: 2
Views: 1,268
Posted By Tekmaven
I don't think there are services on Windows Mobile, however, you can just run an application in the background on startup (with no UI).
Forum: C# Jun 1st, 2009
Replies: 5
Views: 918
Posted By Tekmaven
Well the opennetcf library is open source, so you can at least download the source and see how they do it.
Forum: ASP.NET Jun 1st, 2009
Replies: 3
Views: 613
Posted By Tekmaven
Forum: C# Jun 1st, 2009
Replies: 5
Views: 918
Posted By Tekmaven
Check out the OpenNetCF Desktop Communication Library. It is available here: http://www.opennetcf.com/FreeSoftware/DesktopCommunication/tabid/90/Default.aspx
Forum: C# Jun 1st, 2009
Replies: 1
Views: 562
Posted By Tekmaven
It looks like there are 4 C# Twitter libraries listed on the Twitter API Wiki. You can check them out here: http://apiwiki.twitter.com/Libraries#C/NET
Forum: C# Jun 1st, 2009
Replies: 1
Views: 333
Posted By Tekmaven
This is possible. Check out this blog post, which shows how to use a CookieContainer with WebClient: http://couldbedone.blogspot.com/2007/08/webclient-handling-cookies.html
Forum: ASP.NET Jun 1st, 2009
Replies: 1
Views: 790
Posted By Tekmaven
The reason why your are experiencing this error is because all of the controls are not a part of the form, they are part of the EditItemTemplate in the FormView control. This means that they are not...
Forum: ASP.NET Jun 1st, 2009
Replies: 1
Views: 264
Posted By Tekmaven
What help do you need? Have you tried doing it yourself? What errors are you experiencing? Converting this code should be fairly straightforward.
Forum: ASP.NET Jun 1st, 2009
Replies: 1
Views: 459
Posted By Tekmaven
Not that it matters, but the two attributes stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=userid;password="xyz" are totally ignored in your...
Forum: ASP.NET Jun 1st, 2009
Replies: 3
Views: 613
Posted By Tekmaven
There are a few articles on MSDN that will be able to help you out:

GridView Examples for ASP.NET 2.0: Editing the Underlying Data in a GridView:...
Forum: ASP.NET Jun 1st, 2009
Replies: 15
Views: 2,836
Posted By Tekmaven
ASP.NET 2.0 and up have the ASP.NET Membership Provider and the login controls, which will make this simple for you. Check out this walkthrough on MSDN:...
Forum: ASP.NET Jul 3rd, 2008
Replies: 4
Views: 12,192
Posted By Tekmaven
I need you to post your entire web.config file. The issue goes deeper then what you've posted.

Also, what you've done is considered "thread hijacking". Proper netiquette states that if you...
Forum: Growing an Online Community May 30th, 2008
Replies: 4
Views: 1,311
Posted By Tekmaven
I've been using CommunityServer since before it was called CommunityServer. It's highly recommended. Themeing and customization can be a little complicated if you don't have any ASP.NET experience....
Forum: ASP.NET Jan 3rd, 2008
Replies: 6
Views: 3,270
Posted By Tekmaven
Well, you can just output printer friendly HTML pages, but this won't allow you to control 100% of the paper output (the brower will put the url, page number, title, etc on the header/footer).
...
Forum: Existing Scripts Oct 6th, 2006
Replies: 17
Views: 6,826
Posted By Tekmaven
Well, I'm the tekmaven that Dani was refering to :). I actually am biased too, because I also worked for Telligent Systems, Inc ;).

Community Server is an amazing web platform. The free version...
Forum: C# Sep 20th, 2006
Replies: 1
Views: 3,568
Posted By Tekmaven
Well, the code you just gave is not C# ;). It's C/C++...
Showing results 1 to 40 of 890

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC