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

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

skud13

Member List

Bartosz
Animal One
Itsme18
jake222
Thomas Belser
Angel Azcarraga
TeddyG
ctadlock
Arsoft
Bernd
taumuon
DICKDDD
LostStudent
joemele
CHiLLD
pavankumar.D.V.
WTHUGHES
Paul Hammond
Mhed
Rick01
Only Title

skud13's Q&A profile

  • Visual Basic change published project dir

    hi, after finishing my project i would like to publish it so i can burn it to a cd and if a computer doesnt have .net framework 2.0 it will install it before running my project. I know how to do this and can publish it with all the right files through the publish wizard. The problem is when i publish it, the running directory is a temporary one which i found out with the help of a couple of people and the application.startuppath command, and the shell commands in my project dont link properly because you have to put the .exes in the running directory. If i copy the \bin\release files to a cd including all .exe files (for shell commands) it w ...Show All

  • Visual Basic Asc(e.KeyChar) ?

    What value would this have to have to be caught by a try-catch; Asc(e.KeyChar) I am getting a  Index was outside the bounds of the array. In my textboxes Key press event. Code follows; <code> Try                       Select Case Asc(e.KeyChar)                 Case "13" 'enter                     vBtn_BF_GetOrders_Click(sender, e)     &nbs ...Show All

  • .NET Development DAO in C# Express

    I am just starting to learn c# (I am from vb.net background) but I am having problems using DAO OpenDatabase and OpenRecordset when using c# express. I am not sure if this is related to database limitation of c# express. I have the following code in c# (which I converted from vb.net): DAO._DBEngine dbEng = new DAO.DBEngineClass(); DAO.Workspace ws = dbEng.CreateWorkspace("", "admin", "", DAO.WorkspaceTypeEnum.dbUseJet­ ; DAO.Database db = ws.OpenDatabase(DBFileName, false, false, ""); DAO.Recordset rs; rs = db.OpenRecordset("select * from Folder where FolderNo=0", "", "" ,""); But I get the error "Operation is not supported for ...Show All

  • Visual Studio Express Editions Executable icon in Win32 project

    In visual c++ 6.0 I could set the icon by including a bitmap resource, but I haven't figured out how to do this in vc++ express. Is it even possible There is no resource editor in VC++ Express. But you can still add a rc file to the project and add an icon file to it. BTW: There is no way to add an icon by including a bitmap. You always must add an icon resource. ...Show All

  • Visual Studio Is VSTA extensible by VSPackages

    Hi, is it possible to extend VSTA with managed VSPackages If yes. Are there differences between VSPackages for VS 2005 and VSTA in how to implement and deploy them. My first managed vspackage with a DefaultRegistryRoot under Software\\Microsoft\\VSTA\\8.0 wasn't succesfully. Regards Josef Sorry, for my bad english. I will work on it. ...Show All

  • Windows Forms Can I edit the deployment list of Publish Pane by MageUI?

    I cannot find a way to add my own data files to the list shown by the "Application Files..." button on the Publish Pane.  If I do all the thing in MageUI, I cannot benefit(like Prerequise..) from the UI of VS2005.  Therefore, I would like to know the way to edit the deployment list of Publish Pane by MageUI.  Or actually edit the manifest files generated by VS2005 in MageUI, and then reload it in VS2005. Any suggestion is appreciated. Dunno why the files are not getting placed inside the culture folders, maybe its a bug, try reporting it. In the meantime I guess you will have to move them manually.  & ...Show All

  • Windows Forms picturebox

    hi, There is a pictureBox on a windows form. In design mode, the image is set to pick up a .bmp file from the local machine. I would like to click on this image and another image to appear instead in the same location. in other words, the image of the same PictureBox changes. What should i put in the click event to pick up another .bmp for the image Thanks Don't compare image that way, everytime you call Image.FromFile, a new instance is called. You will need to create a variable (bool or int) and compare this instead. private void AssignPadLockImage()   {    if (_closed)    {   ...Show All

  • SQL Server Extended Stored Procedures and VB

    I have two functions in a .DLL created in VB6 I want to use. I create two Extended Stored Procedures using: sp_addextendedproc 'MyFunctionA', 'MyFunctions.dll' sp_addextendedproc 'MyFunctionB', 'MyFunctions.dll' When I run: EXECUTE @ReturnValue = MyFunctionA @Paramate1 I get: "Cannot find the function MyFunctionA in the library C:\Program Files\MyDLLs\MyFunctions.dll. Reason: 127(The specified procedure could not be found.)" What am I missing Hi. Do you get the same with CREATE ASSEMBLY and CREATE PROC CREATE ASSEMBLY ... CREATE PROC ... AS EXTERNAL NAME ... I guess I would not use MyFunctionA, not 'My ...Show All

  • Microsoft ISV Community Center Forums product id

    is it possible to obtain some registration information for Office and Windows via VBA by registed information I mean Product ID for Office, Product ID for Windows etc. Thank you, Andrej Hi Andrej, Here is the sample code about how to obtain product IDS via VBA (from our support engineer). =========================================================================   Option Explicit Public Const REG_NONE As Long = 0 Public Const REG_SZ As Long = 1 Public Const REG_EXPAND_SZ As Long = 2 Public Const REG_BINARY As Long = 3 Public Const REG_DWORD As Long = 4 Public Const ...Show All

  • .NET Development net remoting problem

    Hi! I have a remote object that was runing fine over iss, but active directory was installed on the server and now the remote object is not available anymore. I get the next error:   System.TypeInitializationException: The type initializer for "System.Net.IPAddress" threw an exception. ---> System.TypeInitializationException: The type initializer for "System.Net.Sockets.Socket" threw an exception. ---> System.DllNotFoundException: at System.Net.OSSOCK.WSAStartup(Int16 wVersionRequested, WSAData& lpWSAData) at System.Net.Sockets.Socket.InitializeSockets() at System.Net.Sockets.Socket..cctor() --- End of inner ...Show All

  • Windows Forms How would I create a control that looks like this?

    Hi. Here is an example of something I want to create graphically: Now I think I can handle the content (i.e. get a datagrid and populate it :P) but want im after is information on how I would create the item. It needs to have the little button in the right to collapse and expand the 'mini-form', it needs to have the heading (table name) and it needs to be drag-able. Another criteria is this has to be able to go into a form... specifically PART of a form (so im not sure if i can inherit from the windows form class as i only know of normal forms and mdi forms, not something inbetween!). So how do I go about doing soemthing like this Ive cr ...Show All

  • Windows Forms writing the euro symbol ("€") to a ascii or utf 8 textfile

    Hi, I'm trying to write the "€" Euro Symbol to a textfile with either UTF8 or ASCII encoding but it doesn't work. The Euro symbol is returned by the currency formatting of the string. Can anybody help me Michael Hi, some additional information: I think this is an encoding problem, since the german letters "ü","ö","ä" a ...Show All

  • Visual Studio Cannot see all the sections

    Hi all, This is a newbie question, so please bear with me. I have Visual Studio 2005 and VSIP April 2006 installed on my machine. When I open the Microsoft Document Explorer, I can see the following sections in: Visual Studio SDK Help on Help Why don't I see the other sections like .NET Framework or Visual C# etc. Do I need to install msdn to get these I am confused. Thanks, J Hi J., Being a newbie is where we all start, so please don't worry. One of the best ways to solve problems like this is to "backtrack" through your actions. It's similar to finding a lost set of car keys or a misplaced wallet. If y ...Show All

  • Software Development for Windows Vista Video Trimming using DirectShow

    Hi, I am new to DirectShow programming. My current project requirement is to trim the video file of any type and save the trimmed data in a different file, with the same format as source video file. I am unable to save a file with trimmed data. Could anyone helps me out with sample source code. Thanks in advance Regards Gopalakrishna Rao Hi Etienne, Thank you for your reply.First we would like to know about the approach in video trimming. I would like to have more explanation on video trimming part, as i am new to the DirectShow programming. We are using "File Writer" filter for adding a filter to the FilterG ...Show All

  • Visual Studio Team System TFS WorkGroup Edition / 180 day Trial

    Under our volume license agreement we have a number of MSDN Premium subscriptions. It was my understanding that Microsoft would include a version of Team Foundation Server for use with the role based versions of Visual Studio i.e.: Architect, Developer, Tester. This 'Workgroup Edition' was to have the full functionality of TFS functionality, but limited to 5 users. However on the MS subscription downloads I only get the option to download the full (180 day trial) version. Does anyone have any information about the WorkGroup Edition Alternatively, if there is an upgrade path from the 180 day trial version to full version, perhaps that is the ...Show All

©2008 Software Development Network