Forum: ASP.NET Dec 16th, 2008 |
| Replies: 3 Views: 853 Did you try http://NODE5/<my virtual dir>/. on the same IIS server?
You need to first make sure the server itself recognizes the host name. |
Forum: MS SQL Mar 11th, 2008 |
| Replies: 3 Views: 1,765 Is this a question or Solution? |
Forum: ASP.NET Mar 11th, 2008 |
| Replies: 11 Views: 7,838 You can read and download a set of real life .NET questions here (http://www.coderewind.com/?categ&view_article=98) |
Forum: ASP.NET Mar 11th, 2008 |
| Replies: 4 Views: 1,216 What do you mean by Session State? The default session has a timeout of 20 mins. Now if you are referring to View State i can probably give you more details. |
Forum: C# Nov 23rd, 2007 |
| Replies: 29 Views: 4,885 You can write a small console app or windows app and schedule it using windows scheduler. |
Forum: C# Nov 16th, 2007 |
| Replies: 29 Views: 4,885 |
Forum: Troubleshooting Dead Machines Nov 16th, 2007 |
| Replies: 5 Views: 4,048 |
Forum: C# Nov 15th, 2007 |
| Replies: 29 Views: 4,885 |
Forum: C# Nov 15th, 2007 |
| Replies: 29 Views: 4,885 As you are comparing two diff. text objects it is good to go with If. |
Forum: MySQL Nov 15th, 2007 |
| Replies: 7 Views: 1,409 What php code did you try? |
Forum: C# Nov 14th, 2007 |
| Replies: 29 Views: 4,885 |
Forum: C# Nov 14th, 2007 |
| Replies: 29 Views: 4,885 Switch is faster than using "if". Also i think you are in the right direction with the login. |
Forum: MySQL Nov 14th, 2007 |
| Replies: 7 Views: 1,409 |
Forum: C# Nov 14th, 2007 |
| Replies: 29 Views: 4,885 ok, I got the problem,
In the database you might be getting diff. verification code but when you send in email it is coming same, right?
And the reason is because you are using the same mail... |
Forum: C# Nov 14th, 2007 |
| Replies: 29 Views: 4,885 First debug and see what values are you getting for String v_code = generateVCode(); for each each call.
Then try using diff. mail objects to send mails to diff. people. In the above example you are... |
Forum: C# Nov 13th, 2007 |
| Replies: 29 Views: 4,885 You can check it against the Database, if it already exists then call the same routine to generate next randomn no. |
Forum: MySQL Nov 13th, 2007 |
| Replies: 7 Views: 1,409 You need to first convert the date to a php format. So we use the strtotime() function.
<?php
$date = "2007-11-13"; (or from DB)
$date = strtotime($date);
$aday = date("l",$date);
//Then we... |
Forum: Troubleshooting Dead Machines Nov 13th, 2007 |
| Replies: 5 Views: 4,048 Please select the Restore Defaults option in BIOS. |
Forum: C# Nov 13th, 2007 |
| Replies: 29 Views: 4,885 Yes, if app id is only for one user then you can. |
Forum: C# Nov 12th, 2007 |
| Replies: 29 Views: 4,885 You said this requests can goto only designated people. So is anyone allocated to a particlar project? Can the same request goto multiple people? If then you might have to add user_id in ver_code |
Forum: C# Nov 9th, 2007 |
| Replies: 29 Views: 4,885 Let me know if you need some help we can work out something. |
Forum: C# Nov 8th, 2007 |
| Replies: 29 Views: 4,885 Send a verification code in the link which will identify them provide you maintain a record of all verification codes, once it is clicked it cannot used by anyone. You might have to maintain a table... |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,441 What event of the textbox did you use? |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,441 This is pretty much doable and this functionality is called AutoComplete is Web Platform and Incremental Search in WinForms Arena. |
Forum: Visual Basic 4 / 5 / 6 Sep 25th, 2007 |
| Replies: 3 Views: 5,455 Try this:
Sub DeleteSheets()
dim xl as new excel.application
dim wb as excel.workbook
set wb=xl.workbooks.open("c:\test.xls"
xl.application.displayalerts=false
If... |
Forum: VB.NET Sep 25th, 2007 |
| Replies: 6 Views: 2,455 The only issue I found with this approach is that, you have to load the entire xml file into your dataset. wich could be a problem when your database gets to a larger size. I would still use SQL... |
Forum: VB.NET Sep 25th, 2007 |
| Replies: 6 Views: 2,455 Yes, it is possible to save and load Datasets to and from xml.
And after loading you can manipulate the dataset as you would after filling it with data from any database.
Here is how you can... |
Forum: Visual Basic 4 / 5 / 6 Sep 10th, 2007 |
| Replies: 9 Views: 3,334 Here is another way of doing it. After you populate your excel file with all the records. Run this function.
Public Sub InsertRows()
Dim xl As Excel.Application
Dim wb As Excel.Workbook
... |
Forum: Visual Basic 4 / 5 / 6 Sep 10th, 2007 |
| Replies: 9 Views: 3,334 Which version of excel are you using? And are you on vb6 or vb.net? |
Forum: Visual Basic 4 / 5 / 6 Sep 10th, 2007 |
| Replies: 9 Views: 3,334 |
Forum: Visual Basic 4 / 5 / 6 Sep 10th, 2007 |
| Replies: 9 Views: 3,334 Use this
xlWksht.Range(i + 1:1).Insert(Shift:=xlDown)
instead of xlWksht.Cells(i + 1, 1).Value = Chr(10) 'Add a blank line after each record.
Let me know. |
Forum: VB.NET Sep 4th, 2007 |
| Replies: 5 Views: 913 String values are possible using attributes not directly. |
Forum: VB.NET Sep 4th, 2007 |
| Replies: 5 Views: 913 You can even store string values to the enum variables. |
Forum: Visual Basic 4 / 5 / 6 Aug 31st, 2007 |
| Replies: 19 Views: 3,380 Also let me know if you can take care of the popup reminders. |
Forum: Visual Basic 4 / 5 / 6 Aug 31st, 2007 |
| Replies: 19 Views: 3,380 I would suggest the popup reminder to be part of VB6 app and not within Outlook. So when the user gets the reminder he can select from the list and click the send button and it will trigger the email... |
Forum: Visual Basic 4 / 5 / 6 Aug 29th, 2007 |
| Replies: 19 Views: 3,380 If you are ready to pay then its fine with me. But i can surely help you integrate Outlook with VB. Give me a rough spec and i will see what i can do. |
Forum: VB.NET Aug 27th, 2007 |
| Replies: 9 Views: 2,332 Read (http://www.coderewind.com/?categ&view_article=34) this article (http://www.coderewind.com/?categ&view_article=34) and you can even download a working sample which uses Connection to Access DB... |
Forum: Visual Basic 4 / 5 / 6 Aug 20th, 2007 |
| Replies: 7 Views: 1,065 You can change the form name "frmSystray" to your main form name. and also add a button named "cmdAddIcon" on your main form. When you click this button your form would goto the Tray Icon |
Forum: Visual Basic 4 / 5 / 6 Aug 16th, 2007 |
| Replies: 19 Views: 3,380 please visit this site and login to see the free download. click here (http://www.coderewind.com)
Iam working on the code to share it on this site. |
Forum: Visual Basic 4 / 5 / 6 Aug 16th, 2007 |
| Replies: 19 Views: 3,380 well, when you say messages do you mean regular email or chat messages? |