Search results for query: *

  • Users: nK0de
  • Order by date
  1. nK0de

    uploading files (.pdf, .docx, .xls) to SQL Server from a Windows application

    I got it! I was having trouble finding the SQL Server instance. Thanks
  2. nK0de

    uploading files (.pdf, .docx, .xls) to SQL Server from a Windows application

    Thank you both for your responses. @jmcilhinney : I managed to save the files in SQL Server database using ReadAllBytes. Thank you very much. I know this saving files in a database method is not the ideal way to go about saving files. I'm just doing this as a learning exercise. Just wanted to...
  3. nK0de

    uploading files (.pdf, .docx, .xls) to SQL Server from a Windows application

    I did quite a lot of research on Google on this topic but didn't come across anything useful and clear. How can I upload files such as .pdf, .docx to SQL Server 2008 from a Windows application? A description on what datatypes to use on SQL Server and what classes to use in the VB.NET code would...
  4. nK0de

    Tag selection from web page

    aw nooo don't goo, we'll miss youu! look man, getting views and getting answers have nothing to do with each other. Maybe no one here knows the answer to your question. We're programmers but we're also humans. We don't know everything! And if you talk **** and whine like a crybaby on the...
  5. nK0de

    how to open a URL in VB 2010

    Lotok is right. Process.Start ​should work. Show us the code you're trying.
  6. nK0de

    MDI Parent

    Depends on how you design the system. In my opinion, a MDI application is the best way to go about for a system such as a Library Management.
  7. nK0de

    Question How to get the howl html document not just the source code ??

    As far as I know, the Webbrowser control doesn't run Javascripts.
  8. nK0de

    Question Label forecolor not updating on dynamic controls

    It is because you've set the .Enables property of the Label to False. Change it to True.
  9. nK0de

    Question Qrcode

    Take a look at this (QrCode.Net) project. It's pretty neat. The application is written in C# but you can get an idea on how it works.
  10. nK0de

    Question ADO.NET update through DataSet

    When I saw the Linq-like syntax in EF, I thought learning Linq was essential before migrating to EF. Being familiar with linq syntax sounds like a good idea. Thanks :)
  11. nK0de

    Question ADO.NET update through DataSet

    I went through a couple of tutorials on Entity Framework. It's not very difficult to understand. Frankly a little into it, I saw how easy and efficient it is to work with data access with EF. But it seems EF is kinda based on LINQ(?) I have no prior knowledge of Linq so I should prolly start...
  12. nK0de

    Question ADO.NET update through DataSet

    Although I have heard about the Entity Framework, I never really got to a situation which I have to learn it. I guess this is that time. Thank you very much for all the information. :)
  13. nK0de

    Question ADO.NET update through DataSet

    ah yes, I meant the controls under the Data category in VS. In the first example, I didn't add a command builder. The only query I wrote was in the Data Adapter Configuration Wizard, a select query to retrieve all the fields from a table. And thanks for the link to your article. I've been...
  14. nK0de

    Question changes are not saved in database.

    I came across a similar scenario recently and my fault was I hadn't given the complete correct path to the AttachedDB attribute in the connection string. You might wanna double check that also.
  15. nK0de

    Question ADO.NET update through DataSet

    This is not really a question. More like a clarification. I wanna know As to why this is happening. This is an exercise from a tutorial which I did last year. I came across this today and thought of just trying it out. Its about using a DataSet and how you can make changes in it and update the...
  16. nK0de

    Question Communication between forms

    Are you invoking the 2nd form through a button or something in the Main form. If so, in that button's click event write this code, Dim frm As New Form1 frm.Show() if the main form has mdicontainer property enables, then you need to add another line. Dim frm As New Form1 frm.MdiParent = Me...
  17. nK0de

    Please help with errors..

    That's not enough details to determine the error. Instead of posting your whole program, first debug and find where exactly the errors occur. And put comments there and post it here.
  18. nK0de

    File Preview

    This code is in C++, I thin. You may have to convert it. Anyway its a good read. Windows Vista and Office: Writing Your Own Preview Handlers
  19. nK0de

    Question problem in stored procedure

    This forum is for VB.NET questions only. There is a sister forum for C#. I come from a VB.NET background but as far as I know, you have to set the CommandType to StoredProcedure. Have a look at this Stored Procedures and other queries with parameter - Using ADO.NET with SQL Server - SQL Server...
  20. nK0de

    Question RichTextBox Formatting...

    you can use Control Characters to format text. Know Dot Net - VB.NET Control Characters yes, you can use vbCrLf. And also you can use Environment.NewLine for the same purpose. Environment.NewLine Property (System)
Back
Top