Forum: VB.NET Oct 14th, 2009 |
| Replies: 1 Views: 529 I am writing a fairly simple web site monitoring app. It uses a timer to call a class that requests a web page and measures the response. Problem is that the third time the class is called the app... |
Forum: Windows Servers and IIS Sep 14th, 2009 |
| Replies: 0 Views: 767 We have an IIS server serving a couple of asp based sites to the internet while still connected to our network and VPN. The server has 2 NICs and static routes set up to keep traffic straight.... |
Forum: MS SQL Aug 27th, 2009 |
| Replies: 3 Views: 513 Here is the actual trigger. A caveat I use the 'replace' function:
REPLACE(FileName,' ','_')
because there is another trigger on the table that replaces any spaces in the file name with... |
Forum: MS SQL Aug 27th, 2009 |
| Replies: 3 Views: 513 Actually I wanted to avoid reinventing the wheel. I have made some progress toward this trigger and I believe I will be able to do it on my own. As for the constraints this wouldn't effect those. The... |
Forum: MS SQL Aug 26th, 2009 |
| Replies: 3 Views: 513 I am working with a third party program that sends data and files to a web based repository for our customers. I have rewritten the ASP side of things and cleaned that up but we have run across a... |
Forum: VB.NET Aug 25th, 2009 |
| Replies: 8 Views: 297 I got it. It was a combination of things (that originally appeared unrelated ) that were causing problems, coupled with the inability in the debugger to see all of the values at one point in time.... |
Forum: VB.NET Aug 25th, 2009 |
| Replies: 8 Views: 297 That'll be next on my list I do have one other Idea i am going to try first. That will work in this case as this particular form would rarely (if ever) be used without passing some form of ID or... |
Forum: VB.NET Aug 25th, 2009 |
| Replies: 8 Views: 297 I made the change suggested above and it worked as far as not needing the "With Events" part of the "Friend" declaration. Unfortunately that didn't solve the problem. when I step into the code with... |
Forum: VB.NET Aug 24th, 2009 |
| Replies: 8 Views: 297 Ok so I can change the code to something like
Friend CAddress As frmClientAddress
AddHandler txtBox.TextChanged, AddressOf TextBox_TextChanged
code to handle event
...etc |
Forum: VB.NET Aug 24th, 2009 |
| Replies: 8 Views: 297 I had an issue getting data beck from a popup form and was assisted with a solution from Stevoni (thanks again). It has led to another problem however. In trying to send data to the popup I have over... |
Forum: VB.NET Aug 20th, 2009 |
| Replies: 2 Views: 238 That did the trick. Now I just have to code out all the rest of the crap they want to do from one form. Wheeeeee! Thanks a bunch. |
Forum: VB.NET Aug 19th, 2009 |
| Replies: 2 Views: 238 I am writing an app where I will need to pop up a form to allow the user to enter data and then pass back at least a portion of that data (an ID perhaps) to the calling form. I have not completely... |
Forum: Posting Games Jul 27th, 2009 |
| Replies: 638 Views: 55,493 biotech
cot, hot, cob
invoice |
Forum: Posting Games Jul 21st, 2009 |
| Replies: 638 Views: 55,493 verse
versed
diver
divers
seed
ride
rides
serve
served
sever |
Forum: VB.NET Jul 20th, 2009 |
| Replies: 9 Views: 1,292 I have some new information. Through multiple debugging runs with various breakpoints I have found out why I am getting the error. It starts earlier in the code, here:
w(ByVal colNum As Integer)... |
Forum: VB.NET Jul 20th, 2009 |
| Replies: 9 Views: 1,292 Not very different from how I was doing it.I tried it that way as well with no change. It appears that the error is not actually happening at that point in the code. Perhaps somewhere deeper in the... |
Forum: VB.NET Jul 18th, 2009 |
| Replies: 9 Views: 1,292 Yes, the long block of code in my code for this form. There is a statement like yours (exactly) in it. also as i said in its original project it worked fine it was when i added it to this one that... |
Forum: Posting Games Jul 17th, 2009 |
| Replies: 638 Views: 55,493 slap
play
lay
lad
lisp
plaid
unfair |
Forum: Posting Games Jul 17th, 2009 |
| Replies: 164 Views: 16,224 today is a day. pleasant is a relative subjective term.
Have you ever seen a house fly? |
Forum: Posting Games Jul 17th, 2009 |
| Replies: 1,429 Views: 113,722 No (not anymore)
Have you ever broken a bone?(one of your own that is) |
Forum: VB.NET Jul 17th, 2009 |
| Replies: 9 Views: 1,292 Because this
frmCL.Show()
Or this
frmCaseList.show() |
Forum: VB.NET Jul 17th, 2009 |
| Replies: 9 Views: 1,292 I am working on a vb app and am getting this error when calling a form (frmCaseList) from another form(LoginForm). the frmCaseList wasat one time in a different solution where it worked fine (it was... |