Yadyn

1,082
reputation
105 views

Registered User

name Yadyn
member for 1 year
seen 2 hours ago
website
location Arkansas, USA
age 24

I'm a software Windows and Web developer mostly for .NET applications. I work for the government, so I do in-house intranet work.

I'm just here trying to carve out an existence and maybe make things better and easier for other employees in the process — and maybe in the long term help increase Arkansas' technological sophistication!

Dec
8
comment How to catch connection timeout exceptions from XSD-generated typed DataSets?
It is certainly using SqlClient and all, and the exception type is correct (as I've confirmed via the InnerException of the TargetInvocationException). I've changed it to be a catch (Exception) and it does not behave any differently. I'll try placing more try-catches around until something finally catches. Thanks for at least giving it a consideration!
Dec
8
asked How to catch connection timeout exceptions from XSD-generated typed DataSets?
Dec
7
awarded  Notable Question
Nov
17
revised word wrap for label in winforms
edited tags
Nov
16
comment Is it possible to use theme colors in Windows Forms apps?
That assumes they haven't changed the default theme. Which is likely, as most people don't, but still... it's not as elegant as the current System.Drawing.SystemColors way.
Nov
16
asked Is it possible to use theme colors in Windows Forms apps?
Nov
4
answered ALT-TAB Application Icon Pixelated
Oct
27
comment C# member variables / fields naming convention
This is what we do. Seems simple enough and if you look at a lot of the official .NET framework code that's what MS seems to do (well, most of the time).
Oct
27
comment Suggestions for making pixel-perfect CSS layouts?
I second this one... why can't you use PDF again? If you're trying to get pixel-perfect rendering AND when printing AND cross-browser (INCLUDING IE6) then, like the others, good luck man... you might as well try to summon Bahamut using only your sheer force of will (or materia I guess).
Sep
25
awarded  Popular Question
Sep
25
comment How can I get browsers other than IE to accept file urls?
Could you provide an example? Does this mean messing with IIS or the equivalent? Or is this something I can do at the application level? If it helps, this is an ASP.NET web app.
Sep
25
comment How can I get browsers other than IE to accept file urls?
Would this initiate a download prompt from most browsers or would this call the default handler? For example, I'd much prefer PDFs open in the in-tab Adobe Reader plugin... or at the very least open in the desktop client Adobe Reader... I suppose it is acceptable if the browser offers the "Open or Save" and they can click Open... hmm.
Sep
25
comment How can I get browsers other than IE to accept file urls?
Indeed, the goal is to have things "just work" and not put the onus on the user to reconfigure settings or otherwise change their computer/browser (since many of them are not even remotely computer whizzes).
Sep
25
asked How can I get browsers other than IE to accept file urls?
Sep
23
comment ASP.NET - Loading controls at one time (on application load)
If you are using an ObjectDataSource or SqlDataSource to bind the drop-down control to you can also enable caching on the data source control.
Sep
23
comment authentication to sql 2005 using domain account from ASP
I think he's using classic ASP, though... even so your answer still applies!
Sep
23
comment How to load webusercontrol from classlibrary
Like he said, add a reference to the class library assembly, and in your code add a Using/Include statement at the top for the namespace and then use it like anything else. When done initializing the object, you can add it to the page with the Controls.Add method.
Sep
23
comment gridview_paging messing up
Only if it isn't already declared in markup or in, say, a Load event. Do you have ViewState disabled? If not, I don't think you'd need to re-databind unless your data source only contains the displayed records (and omits the ones on other pages).
Sep
23
comment I lose my newly inserted row when I cancel the BeforeRowUpdate event
I agree. It's behaving as expected, actually, and in all likelihood it is re-databinding and thus killing your partly-entered data. Regular GridViews remember the edit row and typed data just fine if you stop them with manually written code. It may be difficult or impossible to prevent the databinding if it is happening due to custom WinUltraGrid code. You might have to resort to what Shelby suggested and roll your own ViewState restore, essentially. Be better if you could let the ViewState due it for you, though.
Sep
23
comment in asp.net avoid rebinding of data to grid on every pageload
Yep. If you hook into the DataBind event, you'll notice that it does not fire on post back with ViewState enabled unless an action that would invalidate the cached values happens. The GridView is typically fairly smart about knowing when something that would make the cached copy invalid happens. Particularly when used with official data sources, like ObjectDataSource and friends.
Sep
23
answered ASP.NET Session Inheritence
Sep
23
answered Is it better to disable or omit context/popup menu options?
Sep
18
comment ASP.NET RadioButtonList help. If I set a selectedItem, that item doesn’t react to SelectedIndexChanged event
I think we're going to need even more code. I've got a page in a system I'm working on here at work that has almost an identical RadioButtonList. Flow layout, Horizontal, with two in-markup ListItems, first one selected through markup. SelectedIndexChanged works fine. Now, maybe you just left it out of the example, but are you sure you are attaching an event handler for SelectedIndexChanged? I don't see one in your markup, so are you doing it in the page load or something?
Sep
18
comment ASP.NET RadioButtonList help. If I set a selectedItem, that item doesn’t react to SelectedIndexChanged event
Do you mean that the event fires if you click on any other radio button but even if you click back on the pre-selected one no event fires?
Sep
16
awarded  Yearling
Sep
10
accepted How do I best store a list of numbers in a relational database?
Sep
10
answered How do I best store a list of numbers in a relational database?
Aug
22
accepted Prototype’s DOM extensions are colliding with a 3rd party JS library — what’s my best bet?
Aug
21
answered How to test user’s permissions to the database
Aug
21
comment Prototype’s DOM extensions are colliding with a 3rd party JS library — what’s my best bet?
I should note that, having used both Prototype and jQuery, I like both and each have their strengths. I'm often missing abilities from each when project x I'm working on can only use one of them. But that's just it: I've purposefully avoided mixing the two.
Aug
21
answered Prototype’s DOM extensions are colliding with a 3rd party JS library — what’s my best bet?
Aug
21
comment jQuery fadeTo effect applied to <tr>
The plot thickens!
Aug
21
comment CSS - Formatting Forms with label tags
Any reason you are wrapping your label/inputs in paragraph elements? That may work fine, but semantically shouldn't they be divs? Maybe it's thinking too much on my part, but one thing I can think of is you're gonna want to explicitly set a lot of boring style values in the p.Field style because browsers all add different things to p tags (margins and padding especially) and rarely is any one browser the same on that. At least with a div you know most browsers should be treating it as a container only with all style defaults to 0 or blank.
Aug
21
comment authentication problem on windows vista (cookie is getting written but httpcontext.current.user is null)
You're gonna need to provide a lot more info if you want any help. Why should we take the time to craft a good answer if you won't take the time to craft a good question? Anyway, as an early guess you might check if anonymous logins are allowed in IIS. Maybe you've already checked and confirmed that isn't the case but since you were so sparse with problem details...
Aug
21
answered jQuery fadeTo effect applied to <tr>
Aug
5
answered Transparency Problem by Overlapped PictureBox’s at C#
Aug
5
comment Why would my child controls be uninitialized at the time of event attachment?
Is there a way to do it that doesn't have this pitfall? A "Scott Gu"-recommended approach to exposing child controls' events in a user control?
Aug
5
comment Why would my child controls be uninitialized at the time of event attachment?
It is in markup, yes. No control is being programmatically/dynamically added.
Aug
5
asked Why would my child controls be uninitialized at the time of event attachment?
Jul
20
comment ASP.NET Store uploaded file sql server table
@Spencer Ruport: Backups. Much easier to reliably backup the database and be sure that the files go with it and you're not left with a bunch of file links that no longer work. This is, I suppose, related to James Avery's comment about versioning above. The security is also more straightforward, as you needn't worry about granting the web user file system access of any kind.
Jul
6
comment How do I best store a list of numbers in a relational database?
Interesting that it has that. I've wanted something like an "array" datatype. But yes I'm required to use what we have --- SQL Server. :)
Jul
6
comment How do I best store a list of numbers in a relational database?
I mentioned the platform, but honestly I hope the answer is generic enough for any reasonably featured relational database system. I'd rather not rely on a Microsoft-tethered solution, but if there ARE some nifty tricks I'm all for it. For example, I use Common Table Expressions a lot, and I'm pretty sure they are a SQL Server specific feature.
Jul
6
comment How do I best store a list of numbers in a relational database?
But the list need not (and usually isn't) a nice simple range. Typically it is one or two, possibly three distinct numbers in no particular sequence (i.e. 3, 5, 9). Only occasionally is it 1 - 4.
Jul
6
comment How do I best display CheckBoxes in SQL Server Reporting Services?
Let us know if you have any success with that!
Jul
6
asked How do I best store a list of numbers in a relational database?