179 Posted Topics

Member Avatar for laghaterohan

You only handle one value with what you have here. Think about it - how many i's can you have with what you have below? How many j's? I understand you think since i,j would be different for each row,column that you have it covered but you only have one …

Member Avatar for manal
0
127
Member Avatar for PkTidus

Can you use a For Each statement with a list? Dim word as String For Each word in lstResults strMedal = word blnStartG = strMedal.StartsWith("G") etc . . .

Member Avatar for rapture
0
119
Member Avatar for laghaterohan
Member Avatar for rapture
0
85
Member Avatar for bob.huston

I assumed with so many posts that this one was being worked on . . . I'm at work so I can't go through everything step by step but I didn't see anything that jumped out at me on your hijack this log. My first thought is that you may …

Member Avatar for bob.huston
0
449
Member Avatar for Zachery_C

I'm assuming that you powered the modem and router down - then plugged in the dsl modem and waited until it was up then plugged in the router and waited until it was up then powered on the computers . . . if not you might try that or else …

Member Avatar for zeroth
0
124
Member Avatar for liquoriser21

I used this when working with datagrids recently - hope it helps [url]http://www.xmlfox.com/datagrid_datagridview.htm[/url] I've also done some formatting in the html of my vb.net application

Member Avatar for liquoriser21
0
161
Member Avatar for fbg14619

Is it a Dell machine? Ton's of stuff on Pre-boot System Assessment on google - most all related to Dell's

Member Avatar for rapture
0
173
Member Avatar for arupa
Re: os

Sure - but you have to start it and get some work on your own first. If you're stuck getting started let us know, we can give you some general guidelines but you will probably not find someone who will write the program for you. Make sure you have read …

Member Avatar for rapture
0
363
Member Avatar for blackcorner

I've not used it but [url]http://www.download.com/EasyQuery-NET-WebForms-/3000-7959_4-10566452.html?tag=mncol&cdlPid=10882975[/url] I also saw this one . . . [url]http://www.download.com/Korzh-Query-Builder/3000-2181_4-10284413.html[/url]

Member Avatar for ssmagin
0
126
Member Avatar for gvan_itm

First of all I would say it's quite possible he will set up a schedule to auto send the message or send it at a later time. If that happens then he wants to remind himself as well. He may also just want them to see that he sent it …

Member Avatar for gvan_itm
0
209
Member Avatar for htmlforums

I've used VB.Net code with windows authentication but nothing else - have you tried using the login controls? [url]http://msdn.microsoft.com/en-us/library/ms178329.aspx[/url]

Member Avatar for rapture
0
80
Member Avatar for Nickel

Nickel, My assumption is that you have a program that isn't wanting to shut down by using this shut down process. I've had problems in the past with adobe not wanting to shut down properly. I don't think that's the problem but the suggestion to post what tasks you have …

Member Avatar for Frank Wallis
0
97
Member Avatar for ashish banerjee

You could also set the breakpoint at the beginning and step through everything if you can't find that - it will be a pain if you're program is huge but if you're in debug mode then they probably are not being hit because you're not getting to that point in …

Member Avatar for LizR
0
117
Member Avatar for mus1010

LizR - you are by far the most patient and understanding person I've met in a long time. (well basically we have not met but you get the idea . . .) This guy basically trashes you and you still continue to try to help him. You're amazing - besides …

Member Avatar for LizR
0
336
Member Avatar for samwatson

What version of ie are you running? I just viewed all six pages with firefox 3 as well as ie7

Member Avatar for sittas87
0
110
Member Avatar for Elmo_loves_you

If you declare file in advance it's just Dim file As string followed with For Each file in all_files At least that's how I normally do it "For Each liListItem In ddlAssigned.Items" is how I've done it

Member Avatar for Jx_Man
0
219
Member Avatar for spinnaret

Actually I've done some work with datagrids and they can drive you nuts sometimes. As far as I know, the only way to do this is for you to set the border properties for the columns from the HTML side. You will probably not have each individual column listed already …

Member Avatar for spinnaret
0
131
Member Avatar for katrinawafs

I'm not totally sure what you're asking but ... I would start by mapping out what you want the system to do and breaking it out into manageable chunks. If it helps then write out pseudocode or do a flowchart. After that then start picking the pieces that are easiest …

Member Avatar for miculnegru
0
125
Member Avatar for arupa

I think this is an assignment for school and it's possible his English isn't the greatest. Or at least his explanation. He also posted that he needed to try to write a program that would show what operating system the program is running on at that time. At least that's …

Member Avatar for LizR
0
316
Member Avatar for rapture

Hi all, I'm stuck - it might be easy but I don't work with VB6 much. I have a form that is open and has a button on it which opens a second form overtop of it. when the second form opens it locks the first form. Upon exit from …

Member Avatar for rapture
0
98
Member Avatar for bpacheco1227

You run grossPay = hoursWorked * payRate payRate is defined above it but hoursWorked is not - therefore it looks like you're running grossPay = 0 * (the value of the textbox) -- move your hoursWorked = textboxHours.Text to above the grossPay = hoursWorked * payRate and see if that …

Member Avatar for bpacheco1227
0
185
Member Avatar for joywena
Member Avatar for rapture

Hey all, I know this is probably easy but I'm going cross eyed looking at my code. When I used [code] List<string> SOID; //SOID is the database name for the filepath List<string> filesInDatabase = GetDatabaseFileName(out SOIDs); List<string> filesOnServer = GetServerFileNames(); foreach ( string fileName in filesOnServer ){ string fileWpath = …

Member Avatar for rapture
0
138
Member Avatar for Gaurav arora

Have you seen this? [url]http://www.codeproject.com/KB/webforms/datagrid_checkbox.aspx?display=Print[/url] (hopefully that's not bad sending you to another site . .. ) or in your search try using some form of datagrid column binding with checkbox

Member Avatar for rapture
0
125
Member Avatar for natpu

You could get a ton of different answers to your question and all of them could be right depending on the situation. My first thought is that you have presented a valid question that you need to discuss with the professor/s (providing you have one and it's not self taught). …

Member Avatar for rapture
0
267
Member Avatar for rapture

Hello, I'm newer to programming and trying to do something that has me stumped. I need to read files from a directory on a server and compare those file names to a field in a database. When I find the file names that are the same, grab a different field …

Member Avatar for nvmobius
0
1K
Member Avatar for rapture

Hello, I did a search several ways and didn't see this addressed and am hoping someone can help me. I have a computer that has a fresh install of windows xp on it. When I went to access a website [url]http://wcmh.weatherplus.com/wxplocal/index.html[/url] the browser locks up and will not unlock - …

Member Avatar for rapture
0
163
Member Avatar for rapture

Hello, I did a search several ways and didn't see this addressed and am hoping someone can help me. I have a computer that has a fresh install of windows xp on it. When I went to access a website [url]http://wcmh.weatherplus.com/wxplocal/index.html[/url] the browser locks up and will not unlock - …

Member Avatar for rapture
0
121
Member Avatar for kkkk
Member Avatar for cguan_77
0
138

The End.