Software Development Network Logo
  • Audio and Video
  • IE Development
  • SharePoint Products
  • Windows Vista
  • Windows Forms
  • Visual Studio
  • SQL Server
  • Microsoft ISV
  • VS Team System
  • Visual C#
  • Visual Basic
  • .NET Development
  • Smart Devicet
  • Game Technologies
  • Visual C++

Software Development Network >> johnny_no1_boy's Q&A profile

johnny_no1_boy

Member List

R Raghu
aashta
DongMT
Sweeps78
msaeedf
devnull444114
sudhirvn
John Petritis
Edi-Mobixell
Will Merydith
yeahbuddy
drewex
Robert-UTS
him19010
dfl
Will Merydith
SeeMe
Alpedk
volleynerd
belm
Only Title

johnny_no1_boy's Q&A profile

  • Architecture Still unclear on how to use Typed Datasets in BLL...

    OK, I have decided to use typed datasets in my data access layer (DAL). So, my question is, do I really need to create a business logic layer (BLL) From what I have read, you can extend the dataset classes in the DAL using partial classes and place business logic there. Doesn't this combine the DAL and BLL into one component Or is there something I'm missing Do you create the BLL and start by referencing the DAL project and inheriting the classes from the DAL and extend the classes there I don't get where one ends and the other starts. OR, if it really makes a difference. ...or do I even know what I'm talking about... Background: VB 2005, Winform app, expertise level: intermediate+, small application audience, single develo ...Show All

  • Windows Forms why some part of my mode not working

    i want know the reasons why sometimes the part of code won't work. Usually, lol, it is because you don't know what you are doing or have made a simple, overlooked mistake. But unless you provide us with any kind of sample code, there really isn't a question to be answered here. ...Show All

  • Smart Device Development how to install software at emulator?

    hi I have some softwares. I want to install them at my emulator(wm 5.0) and run it at my emulator. How to do that Thank you First of all this question is not related to the .NetCF, second of all you can just make any folder on your desktop available in the emulator by going to "File\Configure" menu. ...Show All

  • SQL Server Special/Foreign Language Characters Issue

    Hi,   We have a package that does a simple table to table data loading. Both source and destination have the same Codepage (850) and collation (SQL_Latin1_General_CP850_CI_AI). However, there are some foreign language characters in the source table, and it gets messed up when it's loaded into the target.   Here's an example for a column with this type of text:   Source: Solut§es Informst Target: Solu■oes Inform t   Both columns are char(30).   I have tried to load this row into another server in a different location and it works just fine, however the original target of data displays the text incorrectly.   I have no idea what can be causing this.   Thanks, ...Show All

  • Smart Device Development XP Pro Local Smart Card Logon

    I was wondering why it is not possible to log on to a Windows XP Pro machine locally using a Smart Card. I have looked in the Local Security Settings console and have found this under Local Policies > Security Options. "Interactive logon: Require smart card" It does now state that you have to be on a domain in order for that to work. I have even tried using NetSign to force my system to prompt for Smart Card in order to log on locally but it keeps prompting that there is no smart card present when inserted at the logon screen. I even forced Ctrl+Alt+Del to be pressed to log on and it still prompts for smart card to be inserted even after I have inserted it. Is there any software out there that can force Smart Card to be ...Show All

  • SQL Server Whereis the AdventureWorks and MaxMinSales sample projects/.mdf files (server databases)?

    I installed the samples (Start-->Sql Server 2005->Documentation-->Sample-->Build, however, I cannot locate any projects or .mdf files for these filenames. Doing a search on MSDN for "AdventureWorks" gives plenty: http://search.microsoft.com/results.aspx mkt=en-US&setlang=en-US&q=AdventureWorks ...Show All

  • Visual Studio Express Editions VWD is busy for internal process

    When I work on ASP.NET 2.0 applications with VWD 2005 Express Edition & SQL SERVER 2005 Express Edition, I face the problem that the process become very slow sometimes and a message prompt that "VWD is running Very Slow" what is this problem Is this RAM Problem, if yes than what should be minimum RAM Please Let me know!!! Thanks!! ...Show All

  • Visual Basic Accessing LAN server

    When i accessing computers in my LAN for some computers i need to enter password and user name. My database is on the server computer. If i previously access the server my program work. If I didn't access the server program thru me a error then i don't heve premission to access the database file. Can i enter user name and password true code I can't share access to server so i must enter user name and password. THANKS Perhaps this article helps... ...Show All

  • Visual C++ Version Node IVerRes

    How does one use Version Node IVerRes::Condition to switch between Versions Hello Re: Version Node IVerRes I am going to mark this thread as answered since you have not followed up with any further information on your problem - I assume you solved the problem yourself or one of the suggestions in this thread helped you solved the problem. If you have a solution you could post it so others can find it. If you do not have a solution then please submit further details and then mark the thread as unanswered. Thanks Damien ...Show All

  • Visual Studio 2008 (Pre-release) I can't install orcas

    Hi all, I installed .Net Framework 3.0 then when i try to install orcas, it doesn't start installing, giving me a message saying: install .net framework 3.0 runtime first, althought it is already installed any help is appreciated Hello, I would suggest Uninstalling all the previous CTP versions including Small apps like powershell . Install .Net Framwork 3.0 RC1 then try installing .. ORCAS ShrinanD Vyas ...Show All

  • Visual Studio 2008 (Pre-release) Support for Group By, Having etc

    How sophisticated are the query capabilities for LINQ. Can a SELECT includes Group Bys, Aggregate Functions, Having Clauses. I have a sophisticated query which runs within the MS Access query designer, but running the same query using .NET OleDb provider results in an error. The query uses joins to selects which have group by and aggregate functions in them. The error message says there is an error in the Syntax after the From clause. So I'm thinking to return result sets back to VB.NET and use LINQ to further process the data into the final result set. The other alternative is use a lot more code to massage the data into the final result set which is going to be nasty. Yes, it can. If you dow ...Show All

  • Visual Studio Team System Check-in of a big file problem

    Hi, Sometimes when I perform a check-in of a big file (size > 3 Mb) I get the following erron in Team Explorer "Error. <file path>: Unable to write data to the transport connection. An existing connection was forcibly closed by the remote host". If I keep trying I am able to check-in the big file. Here are some messages from Event Log on the TFS server: ---------------------------------------------------------------------- Event Type: Warning Event Source: ASP.NET 2.0.50727.0 Event Category: Web Event Event ID: 1309 Date: 2/7/2007 Time: 6:38:06 AM User: N/A Computer: TFSDEV01 Description: Event code: 3001 Event message: The ...Show All

  • Visual C# Time Passed

    Is there any way to determine the amount of time that has passed from one specific point to another I.E. If the user logs in at 16:00 and logs out at 21:00 is there any way to tell that 5hours have passed Cheers Thomas take a look at the TimeSpan class, this will do this for you http://msdn2.microsoft.com/en-us/library/system.timespan(VS.80).aspx Example: DateTime startTime = DateTime.Now; DateTime endTime = startTime.AddHours(3); TimeSpan diff = endTime - startTime; MessageBox.Show(diff.ToString()); ...Show All

  • Visual Studio Tools for Office Generate Excel file using ASP.NET

    I am currently working on a page that will generate dynamic reports for my company. These generated reports are building an excel file using C# and the Microsoft.Office.Interop.Excel dll. While most of this works the way I would like it to I have run into one problem. When I use Pictures.Insert() I recieve an error stating that I am not including an assembly reference. When I tracked this down, it appeared to be because I needed the office.dll in my bin folder, which fixed the compiling issue but now I get an error that says there is a vesion problem. Does anybody know why this is My server has Excel 2000 on it, if you need other information let me know. Any suggestions would be greatly appreciated, and thanks in advance. ...Show All

  • Visual Studio Express Editions CellContentClick event

    I have a form (Catalog_Form) with a datagridview on it. Inside the datagridview I have a buttoncolumn. The name of the button is Add_to_Tracking and the name of the column is Tracking_List_Button. I can't find the right code to allow the user to click on the button to open another form (Tracking_List_Entry_Form). This is the code I have: Private Sub Catalog_FormDataGridView_CellContentClick( ByVal sender As Object , ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles Catalog_FormDataGridView.CellContentClick Tracking_List_Entry_Form.Show() End Sub Am I not referencing the cell or column properly I'm new to VB, but it seems to me that this shouldn't be that difficult of a problem to solve. Can anyone help me ...Show All

©2008 Software Development Network