Software Development Network Logo
  • Visual Studio
  • SQL Server
  • Visual FoxPro
  • Windows Forms
  • VS Express Editions
  • Visual Basic
  • Visual C#
  • Game Technologies
  • Visual J#
  • Microsoft ISV
  • Windows Vista
  • Visual C++
  • VS Team System
  • Windows Live
  • .NET Development

Software Development Network >> Dan Jimenez's Q&A profile

Dan Jimenez

Member List

B1u3dr4g0n
arvestal
kementeus
talon121
M3NTA7
Hariharan
flo2007
leonide
MattR-KS
Isuru
MarkEllis
lightninnzl
blancblanc
Mr MTA
Yared Kassa
mmmeee
Baris ERGUN
Enkht
pkinaus
P Liedman
Only Title

Dan Jimenez's Q&A profile

  • Visual Studio 2008 (Pre-release) Interfaces as a solution to n-tier and other issues

    In making a type serializable, we have two options: via attributes such as [Serializable] / [NonSerialized], or by implementing interfaces such as ISerializable and IDeserializationCallback. It would be nice if we could have the same two options when writing an entity class – either using attributes as in the current DLinq preview – or by implementing a set of interfaces. This would solve a number of isssues: entities could be written whose schema is created at runtime a base class for statically typed entities could be designed whose SqlMetal-style generator produces close to parsimon ...Show All

  • SQL Server Problem using SQL Server Mobile 2005 with Windows Mobile 5 application

    Hello, I am developping a non-managed C++ application for PocketPC using a SQL Server mobile database. The application is compiled for PocketPC 2003 and uses SQL Server Mobile v2. I use Visual Studio 2005. But I need to compile the application for Windows Mobile 5.0 devices. So I installed the WM5 SDK and had the WM5 into my project configuration. The "ssceoledb.h" which I include incluses the "transact.h" file. But my problem is that this file is only provided with the PocketPC 2003 SDK and not in the WM5 SDK. So I cannot use the WM5 configuration project with SQL Server. I also tried with the last SQL Server Mobile 2005 ...Show All

  • SQL Server Multi-line annotation?

    Is it not possible to have a multi-line annotation OR my ENTER key is stuck ;-) thanks, Nitesh Personally, I wonder why the annotation object doesn't have word-wrapping enabled, like the tesxt in visio. That would certainly (imho) be the simplest answer. I do wish enter worked as well (again, a la visio), but at least now I can takes those 8 annotations I had, and re-merge them into 1, having found this answer. ...Show All

  • Windows Forms listview details dragdrop to another listview with the same view details

    Hi im new and need help pls. have 2 listviews in details that get there information from a database they both have 4-5 items in a row and the dragdrop is fullrowselect. i need to drag a row from one listview to another. need help to do this. thanks hagar. You might find the following projects useful: http://www.codeproject.com/cs/miscctrl/DragDropTreeview.asp http://www.thecodeproject.com/cs/combobox/LarryDragAndDrop.asp (in C# but you should be able to grasp the basics) ...Show All

  • Visual C# Visual c# beta 1

    I'm not sure if this is the appropriate forum for this, but I guess it is close. I recently downloaded and installed visual studio .net beta 2.  Before installing I uninstalled all .net framework v2, and VS.net beta 1.  I also have a version of VS.net 2002 on my machine that I cant uninstall  because I use it to develop software for my company. I didnt realize that you have to uninstall ALL visual studio.net versions to install the beta 2 version.  Well, since I cant uninstall VS.net 2002, and VS.net beta 2 wont work with it installed, is there somewhere I can get a copy of VS.net beta 1 If anyone knows where to get beta ...Show All

  • Visual Basic Problems with converting VB6 to VBNet handling of Fortran strings

    I am having trouble with strings returned from a fortran DLL to a Visual Basic program.  It works in VB6, but I can not seem to get it to work in VB.NET In VB6 I get the full character string, in VB.Net I get only the first character. The simplified VB6 code was as follows Declare Sub ABUT_DLL Lib "ABUT.DLL" (  ByVal vbMsgbox As Long) Sub vbMsgbox1(s1 As String)  debug.print (s1) end sub Call ABUT_DLL( AddressOf vbMsgbox1) The change that I made to get VB.Net code to compile was Delegate Sub BraddErrorboxDelegate( ByRef s1 As String ) Declare Sub ABUT_DLL Lib "ABUT.DLL" ...Show All

  • Windows Forms datagrid delete button

    I have a datagrid I have set up to delete the selected row when the delete key is pressed. But, I also added a button to do the same thing but Im having problems doing the same thing because inorder to do some of the things you need to have the DataGridViewRowCancelEventArgs variable that goes with the row delete event.  My question is if it would be possible to just call the UserDeletedRow event that occurs when the delete key is presses in my button code so that the button would execute the same as that event using the same code   Thanks We'll, you could remove the row (Rows.Remove) ...Show All

  • Windows Live Developer Forums More than 300 contacts in list?

    I'm currently working on a BOT wich users can add to their list. Only problem is: the BOT can only handle 300 people in it's contactlist like any normal user. In the future this could be a problem. Is there a way to lift the 300-contacts barrier in Messenger Perhaps someone at MSN who I can mail about this problem That's still called the RL (AFAIK)...  You're still capped one way or another.. ...Show All

  • Visual Basic Exe will not run on network drive

    When I try to run a VB.net program I wrote from a Network drive, it receives this error: 'WindowsApplication1 has encountered a problem and needs to close.  We are sorry for the inconvenience.'.  If I move the exe anywhere on my local machine then it runs fine. Now I have admin rights to the network drive and folders. Any ideas thanks, Dean Check out: http://blogs.msdn.com/shawnfa/archive/2003/06/20/57023.aspx Best regards, Johan Stenberg ...Show All

  • Visual Studio 2008 (Pre-release) How to turn off anti aliasing for small text?

    Anti aliasing small text tends to make the letters look blurry and indistinct. I cannot find a way to disable the anti-aliasing of text in WPF and as a result label or button text looks really bad. Ideally I'd like to disable anti aliasing globally for font sizes below a certain size. How can I accomplish this -Ryan rfuller987@hotmail.com Hi Ryan, Anti-aliasing cannot be turned off in WPF, but I am quite concerned that small text sizes appear blurry for you. In general our ClearType sub-pixel antialiasing has been show to improve readability at small font sizes. What font and font size are ...Show All

  • Smart Device Development MissingMethodException in SqlServerCe 2.0

    I am running MW 5.0 on a AXIM X51 and using ActiveSync 4.0. I am writing code with VS 2003 in VB.NET->Smart Device Application and deploying in Pocket PC. I can produce a good HELLO WORLD application that works on the POCKET PC 2002 EMULATOR as well as the DEVICE(AXIM). While I have had success with .csv type database tables and XML tables I can not get the System.Data.SqlServerCe to work on the device. My application will run on the emulator but throws an exception on the device when it comes to using a SqlServerCe method, like. The application reads through this code just fine;     Dim sqlEngine As SqlCeEngine sql ...Show All

  • Visual C++ 'DWORD_PTR' : undeclared identifier

    Ok, I have seen several others here post questions concerning the problem of getting: error C2065: 'DWORD_PTR' : undeclared identifier ; however, I have not seen any solutions I can use. Has anyone figured out what is going on I have tried the same suggestions that others have made to no avail, including adding <windows.h>, etc. I just installed VStudio 2005 Standard on a machine that I just did a new install of W2K w/SP4, so there is nothing in there that should be fouling anything up. All my stuff from a previous version of Visual Studio is isolated and VStudio 2005 Std was installed into a separate new set of folders. Also ...Show All

  • SQL Server Error Viewing the Execution option of a Report

    I select the option execution from a report (it's in properties option) and then raise an error which says An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help EXECUTE permission denied on object 'xp_sqlagent_notify', database 'mssqlsystemresource', schema 'sys'. I have full privileges in the DB and I think the report server is well configured. This is happening since I reinstalled all the system (including windows). Any ideas HI. I got my SSRS Subscription works with this: Code Block USE [master] ...Show All

  • Visual Studio Team System TFS Version Control workspace structure

    hi Is there any API or Sample to get folders and files in project I try to write a small program working as Source Control Explorer, but I can only list the project under workspace. Here is my test program tfs = TeamFoundationServerFactory.GetServer(); versionControl = (VersionControlServer)tfs.GetService(typeof(VersionControlServer)); Workspace workspace = versionControl.GetWorkspace("Administrator", versionControl.AuthenticatedUser); foreach (TeamProject teamProject in versionControl.GetAllTeamProjects(true) ) { treeView1.Nodes.Add(teamProject.Name); treeView1.Sort(); } ...Show All

  • Architecture Why custom business object's while i can't update my database with them ?

    Hi, i have this big problem in my architecture : i want to build my object model by using the idea of collections, so i have a Customers object, a Customer object, an Orders object, and an Order object, and so on... the Problem is that those custom business objects, hold my data, and of corse, i want to update my database by using the data in those object's, and oop's, the DataAdapter don't accept custome business objects as a parameter !! (only dataset are allowed). I know that a dataset is also a collection of tables, and i could write my business objects as a dataset's and tables inside them, but with this method, i am obliged to ac ...Show All

©2008 Software Development Network