scorpion53061

Stories submitted by scorpion53061

BackgroundWorker Component For .NET Framework 1.1 with vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 9 months ago

I was asked to work in 1.1 of the Framework with doesn't have some of our helpful things that we have gotten used to in later versions of the framework. I was asked to write a backgroundworker component developers could use for SQL operations within this .NET Framework 1.1. read more...

add a comment |category: |Views: 38

tags: another

Extract Legitimate Links or URLs from Collection using vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 9 months ago

the task before me, which seemed simple, was to get all legitimate links from a collection. As you know, you can get a lot of crap links when looking in your Internet history that start with "JavaScript" or other stuff you don't necessarily want to see. So using regular expressions I came up with something. we don't even need to compare case! It isn't a lot of code but it was actually quite challenging. read more...

add a comment |category: |Views: 19

tags: another

Replace and/or Translate Legacy File Characters in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 9 months ago

I had to find a way to translate what those systems do in a file to make a line break happen, a tab and etc. Usually though those files when brought to the Windows side would represent these markers as a simple square. It would do that because to Windows these characters had no meaning. But the actual information was there. It was just a matter of determining what was in it and what it meant. So here is what I came up with. read more...

add a comment |category: |Views: 3

tags: another

Getting all groups that an Active Directory user is a member of in vb.(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 9 months ago

my topic today we want to find out all groups a given user belongs to. This was written some time ago at a time when we were trying to reorganize an active directory structure. read more...

add a comment |category: |Views: 111

tags: another

Working for a big company changes how I learn and grow(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 9 months ago

Because I don't have the pressures I used to I am going to have to force myself to keep learning on my own. Working in a small company I was forced to learn by every day events so at home work wasn't as important. I bought a server for home study a couple years ago and have been administering a web server, Windows Server 2003, Exchange and all that stuff. If I put my hands on it I will learn. I will have to stay motivated to keep learning the new technologies. Otherwise I fear my skills will become outdated. There is nothing sadder than to see a guy let go in an IT position that he has had for years because he didn't keep pace with the times. I've seen it happen before. I must resist the urge to "get comfortable" with where I am at. It's not what got me here and it certainly won't keep me here. This is part of the reason this blog exists. Every day I post something new I am doing and if I don't I get upset with myself. I see way too many developers relying on code they have written for the past number of years and then never doing anything new to push themselves. read more...

add a comment |category: |Views: 14

tags: another

Get Window Handles Associated With Process in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

For an application, it became necessary to find all handles (hWND) associated with that process and not just the main window. read more...

add a comment |category: |Views: 242

tags: another

Map Or Disconnect a Network Drive in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

There are times when working with network drives it becomes necessary in an application to create or remove a network share. We don't want an unhanded exception if the path is not mapped correctly or if it does not exist. read more...

add a comment |category: |Views: 367

tags: another

Get Value Of Node in XML Response From HTTP Request in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

Basically it is in a memory stream and we are trying to get a specific value of a node in the response. read more...

add a comment |category: |Views: 21

tags: another

USPS Standards for Check Digit Computation in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

implement a check digit sum number for this address correction service. When a alpha+number is given, it should convert to this check digit algorithm Eg if I input ID1234, the check digit sum would be : ID12343 read more...

add a comment |category: |Views: 31

tags: another

Export DataSet to Excel Using An Array(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

The example for writing the data to an array and sending it to a spreadsheet at http://support.microsoft.com/default.aspx?scid=kb;EN-US;306022 is great and where my thinking on this began. It was inadequate however to deal with datasets and the problems encountered in dynamic data. read more...

add a comment |category: |Views: 279

tags: another

Encrypt DataSet to File in vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

we need to save data (i.e. a dataset) to the local machine but not necessarily expose the data within to the end user outside of the application. read more...

add a comment |category: |Views: 42

tags: another

Load a Word Document Into A SQL BLOB with vb.net(kellychronicles.spaces.live.com)

submitted by scorpion53061scorpion53061(85) 3 years, 10 months ago

load a word document into a SQL BLOB image with vb.net read more...

add a comment |category: |Views: 281

tags: another