Topics
-
- 1 reply
- 678 views
Hi all, :) Very new to ASP.NET programming. i have to create a Home page with Left side tree view for navigation right side of the page also has some details like free registration etc. top and bottom of the page has some logo / Search / some links All these have to remain constant across all pages when navigated from the tree view. What is the best way of doing this in ASP.Net. Also pls provide me the details of how the following functionality can be achieved. 1)Site map 2)Site statictics 3)search the site One more query the content of the Pages are to be displayed from the DB-Dynamic conents for pages what is the best way of doing this ....lot of c…
Last reply by mike55, -
- 0 replies
- 904 views
Hello everyone, I am creating a custom control which consists of a ASP.Net listbox and a context menu. The listbox consists of a couple of list items and there are empty spaces within the listbox as it is not filled up. Is it possible to display the context menu only when the user right-clicks on the selected list items? (The context menu will not be displayed if the user right clicks on the empty space below the list items within the listbox)
Last reply by LiLo, -
- 2 replies
- 966 views
I've created a DataGrid with a TableStyle, I set the datasource of the DataGrid to a DataTable, and it works great. I can see the columns I specified in the TableStyle. I've loaded another DataTable and linked this new table to the existing table so my datagrid can use the DataRelation object to show these tables in same datagrid. The problem is, my TableStyle for the Parent is no longer being used. Is it possible to apply a TableStyle in this situation?, If so, how can I go about this? Here is some code snippets: private void MakeDataRelation(){ // DataRelation requires two DataColumn (parent and child) and a name. DataRelation myDataRelation; Data…
Last reply by Ice725, -
-
- Administrators
- 4 replies
- 1.2k views
Is there anyway to send a variable to a Windows Service that is running on the same server as my ASP.NET page?
Last reply by holtzy, -
-
-
- *Experts*
- 2 replies
- 869 views
I don't have any recent projects on my list... no matter how many I open, close, save or whatever... the list is always empty, any reason why?
Last reply by Nazgulled, -
-
-
- *Experts*
- 2 replies
- 794 views
I'm surprised that, at runtime, if you click on an MDI child form or select one of its controls, it doesn't get activated, i.e. its caption bar remains the same colour and the MDI's caption doesn't get changed. I thought activation of a form in this manner was standard behaviour - if you look at Word for instance you will see that the form does get activated. So is there a very simple way to achieve this effect? I can use the form's Enter event, but that won't trigger if the user clicks on the form, only on a control that is capable of being entered. So any thoughts?
Last reply by rbulph, -
-
- 0 replies
- 1.2k views
I need help on fingerprint verification ... actually how to do fingerprint verification in VB.net instead on depending on SDK.. I had bought a Microsoft FingerPrint reader but i do not know how to integrate with with that hardware to get the image that scanned. AFter that, Is it someone can provide me the camporison algorim in sample. Thanks .
Last reply by lhk_mgtf2008, -
-
- Leaders
- Administrators
- *Experts*
- 7 replies
- 2k views
Is it possible to have a textbox to act like the ones in the network connections in the TCP/IP properties? how?
Last reply by Nerseus, -
-
-
- *Experts*
- 6 replies
- 1.4k views
I would like to know is there is any better alternative to v1.1 .net Datagrid Control, specialy if it is freeware... Thank you.
Last reply by Nerseus, -
-
-
- *Experts*
- 5 replies
- 1.1k views
Ok, this is really really strange: When I press by debug button, My program starts under debug mode etc. Everything works fine. But, when I go the myprojectfolder/bin/Debug and try to start the exe, I get an error! They ask if I want to send an report to microsoft etc. This is the error signature: I can't do anything with this, except I know it's a system.nullreferenceexception But where the problem is, I don't know.. Why am I getting this error when I try to start the application with the .exe, and not under debug mode?
Last reply by Nerseus, -
-
-
- *Experts*
- 2 replies
- 1.1k views
This has nothing to do with programming, but it's computer related so I thought I'd share. I've been using a wireless router at home for about a year now but I didn't secure it - I had some trouble with drivers early on and didn't want to mess with things once it was working. My son wanted to play a 2 player LAN game so I finally broke down and setup the encryption on the router/wireless adapter. The nice part was that the D-Link site (my router and card) had this in their FAQ and it worked on the first try. Maybe it's a sign of the times that I AM surprised that things went smoothly. I'm glad things are working! Since the wireless adapter is in my wife's computer, …
Last reply by mskeel, -
-
- 1 reply
- 1k views
I got up this morning and decided to do abit of programming. I clicked the shortcut on my start menu, but instead of Visual Studio 2003 appearing I was faced with 'The Visual Studio .NET Combined Help Collection'. Upon investigation I discovered that '/helpcol ms-help://ms.vscc.2003' had somehow become appended as an argument to the shortcut. Has anyone got any idea what would have caused the shortcut to change? Because I'm certainly baffled!
Last reply by Cags, -
-
- Administrators
- 2 replies
- 869 views
The below calls a stored procedure passing the contents of a number of textboxes as parameters, these are then inserted into a database. However it seems like masses of code for what seems quite simple. It does work perfectly, but i just feel there must be a better way of doing things. I've looked at using the SQLDataSource control, but i cant seem to get that working without something like a gridview - which doesnt fit into the way the screen is laid out. Is there a better way for me to do this? If so, could you please give me a few pointers on what these are? Thanks. 'Enter information into user_t table Dim conn As New SqlConne…
Last reply by Jay1b, -
-
- 1 reply
- 8.3k views
Given a TextBox (tbInput), I want to block the total number of characters a user can write - is there a nice way to do this? Specificially, I want to ensure that the user can write more then 3 characters in tbInput ... any clues? (such as XXX as opposed to XXXX)
Last reply by Cags, -
-
- Leaders
- 5 replies
- 1.1k views
Could someone please enlighten me on what the best way to check password strength is? The password in question must be at least 8 characters including at least 1 numeric and 1 non-alpha-numeric character. I can compare the two passwords, but i dont know how to ensure each one is of a certain strength. Thanks.
Last reply by Jay1b, -
-
-
- Leaders
- 2 replies
- 1.6k views
Hi All, I just find a problem using drag & drag and ShowDialog problem in Visual Studio 2003. In my form, I add DragDrop method: private void Form11_DragDrop(object sender, System.Windows.Forms.DragEventArgs e) { if(e.Data.GetDataPresent(DataFormats.FileDrop)) { using(Form f1 = new Form10()) { f1.ShowDialog(this); } } } Then I drag a file from Windows Explorer to the form and Form10 opens as expected. However, when I switch to Windows Explorer, I can't use the Windows Explorer as the focus is on Form10. If I close Form10, then the Windows Explorer can be reached and used again. Can anyone help me to solve the a…
Last reply by vincentchang, -
-
-
- Administrators
- 5 replies
- 2k views
Hi, I was wondering if someone to could help me and put me out of my misery :P I have written a program to talk across the network, which works quite well, I have read most of the posts about making the program talk across the internet (port forwarding etc) and for the most part, it works.. however.. it seems that it is being sent from my TCP port.. but 'Ethereal' is saying its being moved to a different port.... I thought this might be my router, and changed to a different one, but its doing the same thing ... This is what I get... I sent data out ipaddress:9000 and ethereal says 9000 > insertrandomport so when the data gets to the other computer it re…
Last reply by PlausiblyDamp, -
-
-
- *Experts*
- Leaders
- 10 replies
- 3.5k views
Hiya all, I'm not a newbie to .NET by any means, but I've obviously missed something big here. For some reason I can't seem to get indexed properties to work! Well, not in the way I want (and think to be most logical), I can get them to work like: public int this[int index] { get { ... } set { ... } }but not like this: public int Item[int index] { get { ... } set { ... } }I know I seem dumb, but to me it doesn't seem logical to have the item itself manage it's own collection. To me it seems more logical to have the owning class manage a collection of its subordinates. Here's the code I would like to use: using System; using System.Collections.Generic;…
Last reply by brentnewbury, -
-
-
- *Experts*
- Leaders
- 13 replies
- 18.6k views
Keywords: VB.Net, AVI Compression, avifil32.dll Hello, I have been struggling for days now to write a VB.Net application which converts BMP Images to AVI. This program works just fine in VB but will not run in VB.Net. The problem lies with the conversion of VarPtr() in VB to some other means in VB.Net. The main problem begins when calling the avifil32.dll function AVISaveOptions Defined as follow: Public Declare Function AVISaveOptions Lib "avifil32.dll" (ByVal hWnd As Integer, ByVal uiFlags As Integer, ByVal nStreams As Integer, ByRef ppavi As Integer, ByRef ppOptions As Integer) As Integer 'TRUE if user pressed OK, False if cancel, or error if error This fun…
Last reply by dynamic_sysop, -
-
- 0 replies
- 936 views
Is it possible to have the scrollbars of a multiline textbox always on the bottom? If yes, How? :) Thnx in advance -Edit: Got it already, I used the appendText method :)
Last reply by MrLucky,
-
Who's Online 0 Members, 0 Anonymous, 57 Guests (See full list)
- There are no registered users currently online