Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Robby

    MS Agent

    Here's a sample in C#, http://www.devarticles.com/art/1/298/3 It should be the same thing n VB.NET
  2. To add an existing folder you can copy it into the root of your project then in the solution explorer click on "Show All", you will now see your folder (a bit faded), right-click and "Include in Solution".
  3. You can: Remove the Table and TD tags from the CSS or: Add a new Class attribute to each of your tags in your aspx page. (with or without its' elements in the CSS) In other words if you speficy a class that does not exist in the CSS then no harm the existing tags will not be altered.
  4. If you want to install the framework only if needed then check this out http://www.microsoft.com/downloads/details.aspx?FamilyId=BF253CFD-1EFC-4FC5-BA7E-6A6F21403495&displaylang=en
  5. Add an attribute to an html button .... OnClick="javascript:history.back()"
  6. Are you on a shared host?
  7. If this is a shared web hosting environment they may have restrictions in place, check if they provide third party libraries for uploading files.
  8. The DLL you are already referencing should be enough, though the user needs Word installed on their system.
  9. What type of project, which code window??
  10. You need to Add a Reference to the other projects, and if you don't add them as Imports at the top of your code page then you will need to fully-qualify them during your declaration, ie... dim fr2 as New Project2.form2
  11. Yes and No, you can add an event handler per control type, each control has it's own signature and events. Check for the TypeOf control inside your loop... If TypeOf x Is TextBox Then 'add handler here end if
  12. Is it a compile error or during execution?
  13. So does the Insert work now?
  14. You can use ... Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long 'use this to play it... PlaySound(Application.StartupPath & "\soundFile.wav", 0&, 0&)
  15. You can create an Array and bind it.
  16. If you're using MS Access the surround dates with # instead of ' (single quotes)
  17. Actually if the textbox is blank you should skip this line myCmd.Parameters.Add(catidparam) and only change this in your SP @myVar varchar(10) Null
  18. change this Event Time with this [Event Time]
  19. Robby

    Set bgColor

    Most control attributes do not conform to XHTML/CSS, if it exists in Styles then go that route. Details: http://www.w3schools.com/site/site_w3c.asp Validate your pages here: http://www.w3schools.com/site/site_validate.asp
  20. Especially when it's a PK/FK in one of the DTS items.
  21. get rid of Cstr() and use Ctype() Ctype(.Rows(I).Item("ProductID"), string)
  22. I grabed a table made a copy the did the Insert. It works only when you remove any Identity from a column ( which I had)
  23. I just tried it and in did not work.
  24. seems to be a dead link.
  25. I'm pretty sure that SQL Server you cannot use the * for an insert
×
×
  • Create New...