Showing results 1 to 27 of 27
Search took 0.01 seconds.
Posts Made By: edmicman
Forum: Visual Basic 4 / 5 / 6 Sep 5th, 2008
Replies: 0
Views: 215
Posted By edmicman
VB6 controls render differently on different workstations

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...
Forum: IT Professionals' Lounge Jul 1st, 2008
Replies: 9
Views: 1,264
Posted By edmicman
Re: What's the "standard" OSS equivalent to asp.net?

Thanks everyone! I've read some about RoR and such, and it does sound interesting. I think I'm going to pick up my PHP skills a bit and see where that leads me!
Forum: MS SQL Jun 12th, 2008
Replies: 2
Views: 1,166
Posted By edmicman
Re: Help - Union Select - Using VB.Net

Hmmmm, I think you want a join instead. Try something like this:

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 =...
Forum: IT Professionals' Lounge Jun 11th, 2008
Replies: 9
Views: 1,264
Posted By edmicman
What's the "standard" OSS equivalent to asp.net?

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...
Forum: ASP May 1st, 2008
Replies: 0
Views: 740
Posted By edmicman
What is client side vbscript?

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...
Forum: JavaScript / DHTML / AJAX Mar 4th, 2008
Replies: 0
Views: 466
Posted By edmicman
Javascript datemask for both US and international dates?

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...
Forum: JavaScript / DHTML / AJAX Sep 14th, 2007
Replies: 3
Views: 2,801
Posted By edmicman
Re: need help requiring at least one checkbox from group to be selected

Well, yeah, I probably need to return checkSelected or something. Errrrr, actually, it probably would work if it popped the warning for each one, and then returned for that one. Ideally I'd focus...
Forum: JavaScript / DHTML / AJAX Sep 12th, 2007
Replies: 3
Views: 2,801
Posted By edmicman
need help requiring at least one checkbox from group to be selected

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. ...
Forum: MS SQL Mar 7th, 2007
Replies: 0
Views: 1,626
Posted By edmicman
SQL 2000 - getting data from two databases, same server

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...
Forum: ASP.NET Feb 13th, 2007
Replies: 6
Views: 4,588
Posted By edmicman
Re: How to bind a value in GridView to other data?

Thanks all...yes, I can write my own query, and that's what I ended up doing. I was just trying to abstract it out as much as possible, without having to make custom queries, stored procs, etc. for...
Forum: ASP.NET Feb 9th, 2007
Replies: 6
Views: 4,588
Posted By edmicman
Re: How to bind a value in GridView to other data?

Thanks, that's what I was afraid of. Can't I do something in the gridview or row binding or something, too?
Forum: Site Layout and Usability Feb 8th, 2007
Replies: 21
Views: 4,812
Posted By edmicman
Re: where can i find a good HTML editor ?

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...
Forum: ASP.NET Feb 8th, 2007
Replies: 6
Views: 4,588
Posted By edmicman
How to bind a value in GridView to other data?

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...
Forum: RSS, Web Services and SOAP Feb 7th, 2007
Replies: 5
Views: 3,161
Posted By edmicman
Re: Strange WSE error when trying to connect to web service

Thanks, I saw those results and didn't they they applied very well. It's *close*, but seems to be speaking to an Apache option. I'll check again and see if there's an equivalent .NET option. ...
Forum: RSS, Web Services and SOAP Feb 6th, 2007
Replies: 5
Views: 3,161
Posted By edmicman
Re: Strange WSE error when trying to connect to web service

Unfortunately, searching for any specifics from that error message ("WSE535", "The following SecurityToken QName is unsupported", etc.) isn't turning up much. A lot of the google hits are Java...
Forum: RSS, Web Services and SOAP Feb 5th, 2007
Replies: 5
Views: 3,161
Posted By edmicman
Strange WSE error when trying to connect to web service

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...
Forum: ASP Jan 30th, 2007
Replies: 2
Views: 4,920
Posted By edmicman
Re: Sort multidimensional array on more than one column?

Thanks for the help! I think I tried that, and all it did was first sort by the second column, and then sort by the first column, independent of what had already been sorted. I think it was the...
Forum: ASP Jan 24th, 2007
Replies: 2
Views: 4,920
Posted By edmicman
Sort multidimensional array on more than one column?

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...
Forum: VB.NET Apr 1st, 2006
Replies: 1
Views: 11,523
Posted By edmicman
Re: another one...selecing rows in datagrid and sorting with column headers

Just wanted to post an update:

I still don't really know why this was happening, but to "fix" it, I ended up doing a "Try...Catch...End Try", and having nothing if it caught an error. That was the...
Forum: VB.NET Feb 14th, 2006
Replies: 1
Views: 4,789
Posted By edmicman
Re: How do add a blank choice to dropdownlist

Derrrr, I found some old C# code I used in another project, I'm hoping to try it tonight after work. I think this might work?

// Add blank option
ddlDepartment.Items.Insert(0, new ListItem("",...
Forum: VB.NET Feb 13th, 2006
Replies: 2
Views: 3,268
Posted By edmicman
Re: Problem with VB.NET and MS Access

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...
Forum: VB.NET Feb 13th, 2006
Replies: 1
Views: 11,523
Posted By edmicman
another one...selecing rows in datagrid and sorting with column headers

:-) 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...
Forum: VB.NET Feb 13th, 2006
Replies: 1
Views: 4,789
Posted By edmicman
How do add a blank choice to dropdownlist

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,...
Forum: VB.NET Feb 9th, 2006
Replies: 2
Views: 2,670
Posted By edmicman
Re: Quick VB2005 help....how do I get this basic app started?

Thank you for the reply! It's starting to come back to me, and that's pretty much how I set things up - the login form starts, tries to connect, and if successful it loads the main form, otherwise...
Forum: VB.NET Feb 4th, 2006
Replies: 2
Views: 2,670
Posted By edmicman
Quick VB2005 help....how do I get this basic app started?

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,...
Forum: ASP Oct 28th, 2005
Replies: 2
Views: 7,575
Posted By edmicman
Re: Losing session variable problem...help!

Hmmm, for some reason it isn't, or at least your code puts an extra "/" in. The Request.ServerVariables("URL") is including the leading "/". I dunno, our setup is messed up, the test environment...
Forum: ASP Oct 28th, 2005
Replies: 2
Views: 7,575
Posted By edmicman
Losing session variable problem...help!

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...
Showing results 1 to 27 of 27

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 5:03 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC