- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
19 Posted Topics
I don't browse the Internet anymore. I've started to realize that I actually visit standalone websites less and less. Aside from interactive sites like forums, I find myself subscribing to more and more websites' RSS feeds as a way to stay current. No longer do I have a list of … | |
Everyone always talks of an "Office" killer, or how something might come along and supplant Microsoft's dominance by Exchange and Windows Server. I don't think this will come anytime soon from the free or open-source crowd. Instead, I think it should come from Google. A big reason lots of businesses … | |
We have a VB6 application that was developed in-house, that are trying to make available to remote users. The remote users are connecting from the other side of the world, through a VPN tunnel to our network; RDPing into a terminal services server and then running the VB6 application. Essentially, … | |
I've got a strange problem that I'm hoping someone might have an idea on... I have a VB6 application, and in that there is a form with a password textbox, and a multiline textbox. On one of the workstations, a user pulls up this form, and the multiline textbox acts … | |
Ok, I've got a newbish question that Google is turning up tons of different answers too....hopefully I can get some interactive input. I've been working in Microsoft shops doing web development for going on 10 years now. I'm very familiar with SQL Server and classic ASP, and that is what … | |
Re: Hmmmm, I think you want a join instead. Try something like this: [code=sql]SELECT User_Id,User_Name,Ms_Menu.Menu_Id,Menu_Name FROM dbo.Ms_Menu LEFT OUTER JOIN dbo.Tbl_User ON Ms_Menu.Menu_Id = Tbl_User.Menu_Id[/code] I think that gets you close, although you might need to tweak it a bit. | |
I've just inherited some classic ASP code that apparently uses client side vbscript. The bulk of our code is classic ASP with server side VBScript, but I've always done any client side with Javascript, since as long as I can remember. I didn't even know there was client-side vbscript until … | |
I have a classic ASP form with a date input. I would like to have a javascript datemask for the textbox, but I need it to ideally respect localization settings. I've found a number of masks that look like they would work for the US, and I may try hacking … | |
I'm using classic ASP here, and trying to do some Javascript validation. In my form, I'm dynamically creating checkbox groups - each group has a common Name, and each checkbox has a unique ID. Before the form submits (in the onclick on the submit button) I want to check and … | |
Re: I'm a fan lately of a program called Notepad++ for Windows. It's a straight text editor with syntax highlighting - you didn't say if you wanted WYSIWYG or not. If you do, I'd check out a program called NVU, or if you're looking to spend money, Dreamweaver. Microsoft Expression or … | |
I'm having a problem querying data from two different databases on a SQL 2000 server. We have two databases, a main data db, and a separate security db that has login info. Database logins for the data db DO NOT have access to the security db. I have a function … | |
I'm sure this is easy, but I'm seeming to have a brainfart or something and can't find any ways to do this.... I have a gridview, which is displaying data from an objectdatasource/tableadapter. One of the columns in the gridview is a UserID. Instead of displaying the UserID, I want … | |
I'm working on an ASP.NET 2.0 app with WSE 3.0, that is trying to connect to a web service that was written with ASP.NET 1.1 and WSE 2. It's close, but when I try to actually retrieve data, I'm getting this error: [QUOTE]System.Web.Services.Protocols.SoapHeaderException: System.Web.Services.Protocols.SoapHeaderException: Server unavailable, please try later ---> … | |
I'm working in VBScript and want to sort a multidimensional array on two of the columns in it. I've got a function (based on TONS of examples around the Net) that is sorting on one column, but I can't seem to get how to then do a second column. I'm … | |
:-) Here's another one that's bugging me.....again in VB.NET 2005 and windows forms. After selecting an account from a dropdownlist, I am populating a datagrid with items that correspond to that account. Really, I just wanted to display a summary of the items in the datagrid, and then pass the … | |
I know this is probably a basic question, but I'm stuck and can't seem to figure it out :-/ This is in VB.NET 2005 and I'm making a windows forms app. I'm filling a DataTable from a SQL command, and then binding a dropdownlist to that DataTable. I'm assigning the … | |
Re: Doesn't Access have some sort of limit on concurrent usage or something? It seems like I remember it not liking to be used in a true "multi user client-server" setup. Do you know if when it gets locked, if both users were trying to access the same table at the … | |
I'm working on a side project/consulting job for my former employer...basically I want to recreate an app I did in VB6 using VB2005. It's a simple app, but it was built when I was less experienced, and while I've got the business logic, I'm having troubles getting to a point … | |
I've implemented a security method where a user goes to a page, if they are are session authenticated, they redirect to a central login page, and then if they login correctly they are redirected back to the originating page with the session variable true. I'm basically using javascipt to accomplish … |
The End.