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

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

fMarkf

Member List

Crish
Zakamon
r3n
globemast
Chuck Cobb
edward123
bradygaster
sugrhigh
Alexey Raga
etcheverrjc
Jerome Smith
waheyluggage
Computer Guy69146
Akogo
Frode Fiplingdal
prayag
UltimateSniper
aboeing
Tom from cener.co.uk
MohamedSolyman
Only Title

fMarkf's Q&A profile

  • Visual C++ Where is the Register Tool

    In VS6 the Tools main menu used to have a Register item. So if you were developing an automation server you could just use this to register it. Has it gone or moved somewhere else Thanks. You can add it on your own: 1. Select Tools->External Tools... 2. Press "Add" 3. Give the title that you desire like: "Register COM object" 4. In the "Command" brtowse to the regsvr32.exe (in my case path is C:\WIN64\system32\regsvr32.exe) 5. In the arguments enter: $(TargetPath) That's it. Max ...Show All

  • Visual Basic Advanced Query

    I want to call an update on a Access database from the TableAdapter, is their another way to do it. I'm currently looking to TableAdapter.Update( I just want to add a string for the update, like normal SQL. Not the built in functions. Hi Heinz09 There is a way to execute SQL statments if this is what you want to do. this method can be used with all SQL commands (SELECT, DELETE, UPDATE, INSERT INTO) but let's see how does it work for all command except SELECT. 'Connection string can be replaced by any other connection string you want 'but this is the one in your application settings Dim dbcDB As New Data.OleDb.OleDbConnection( My .MySettings.Default.DBConnectionString) Dim ...Show All

  • Visual C++ CRichEditCtrl Problem

    Hi, This is done in VC++ MFC I have created a vector vector<CRichEditCtrl*>RichEditBox; CRichEditCtrl *r1 = new CRichEditCtrl; r1->Create(WS_CHILD|WS_VISIBLE|ES_AUTOVSCROLL, CRect(x1,y1,x2,y2), p, 1); r1->SetEventMask(ENM_CHANGE | ENM_SELCHANGE ); RichEditBox.push_back(r1); With the above code I get n cricheditboxes on a window . How do I navigate within these boxes using Up Down Arrow Keys Pritha Hi I tried giving the WM_KEYDOWN message but when the a key is pressed on a CRichEditCtrl on the view window the control does not go to the WM_KEYDOWN message function. If a key is pressed on the view window only then the message goes to the WM_KEYDOWN message function.Since the CRichEdit ...Show All

  • Visual Studio Team System Error TSD160 because I deleted a database

    When building my database project, I received this error: ------ Build started: Project: NorthwindDemo, Configuration: Default Any CPU ------ Building deployment script for NorthwindDemo : EnableFullTextSearch Error TSD160: Cannot open database "NorthwindDemo_DB_971876c2-cf4e-4976-bb7f-aaad31db9c47" requested by the login. The login failed. Login failed for user 'MyDomain\jonathan.rajotte'. Done building project "NorthwindDemo.dbproj" -- FAILED. I know why the login failed, it is because I deleted that database. I wanted to know if it was needed... But don't worry, it is just a testing environment. So now, I would like to know, how can I get my project to build again, and also what is th ...Show All

  • Visual Basic VB6 calling a C# dll

    Hi all, I am trying to call a c# dll from VB6. I could able to add the refernece for the dll but I am not able to access the methods of the dll. What could be the reason I registered the dll using the regasm and .tlb is also generated. If any one could help me. Regards, Santha This is because C# will create a .NET CLass Library and not a COM Class Library. VB6 knows only about COM Class Libraries. So if you have the C# project you can make it a COM DLL's which then would be visible to VB6. ...Show All

  • Visual Studio Disabling packages

    In the course of evaluating pre-release versions of several add-ins I've often been presented with an error message from VS asking to disable a misbehaving add-in or "package". One example is disabling the built-in unit testing support. This has piqued my interest in how to achieve this manually. Why There are many add-ins I use that provide overlapping functionality. ReSharper, for example, provides really nice code snippet support and refactoring. But ReSharper doesn't disable the built-in functionality it replaces. How do I do this How do I disable things like code snippet & refactoring support Then you can start digging into the registry at your own risk HKEY_LOCAL_MACHINE\SOFTWARE\Micro ...Show All

  • Windows Forms Adding records usnig binding navigator on datagridview

    hi im having a problem such that if i am adding a row using the addnewrow button on the bindingmanage. and i do not press the save button and try add a new row. the row i wanted to add is lost. i want to be able to save that row first via code. please let me know what to do im puzzled with .net 2005. What i want to do is that is using the : Private Sub BindingNavigatorAddNewItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorAddNewItem1.Click in that method checks if there is already a record being added.. and if so prevents adding a new record to continue. any idea anybody ...Show All

  • Visual Studio VB .NET 2005 Solution Files + CVS

    Hi, Im trying to import our new VS 2005 projects(ASP.NET 2.0 & VB) into WinCVS. Im having trouble though with checking the project out and then trying to open it. The problem comes from the fact that the solution files have the directories hard-coded into it. Is there a workaround for this I want to be able to put the project on CVS and then allow for other people to check the project out into a directory of their choice. Is this possible Any suggestions/workarounds Thank you. Eric Seidel In VS2005, directories are only "hard-coded" up to the relative path. For example, if the projects are in folders directly below the solution, only those folder names are written to the solution file. ...Show All

  • Internet Explorer Development IE7 and page-break-before

    I have some code that uses page-break-before: always that works fine in IE6, but in IE7, the page-break-before is ignored. Was there a change in this behavior that I have not seen documented uwdoug79 , Pardon me for stating the obvious, but have you tried wrapping around your <table></table> inside the <div> sample I showed above. I think the magic is in using the <div>'s for formatting layout since <div style="..."> complies with MS's new found CSS compliant standards. Also, I see you appear to be using single quotes as opposed to double quotes. May I suggest you run your code through http://validator.w3.org/ as it has excellent advice on what you are ...Show All

  • SQL Server SQL Job don't start

    Hello I have created a jon in the SQL Server Agent. This job will start 2 Integration Packages One package for the etl, and one package for processing the cube 70 % of the time the job wil end success. But 30 % of the time the job wil fail. I don't see anything in the log. This is the only message I see : Executed as user: RLS01BIP01\SYSTEM. The package execution failed. The step failed anyone an idea Thx I have changed the step to cmdexec and I get the following message when executing : Executed as user: RLS01BIT01\SYSTEM. The process could not be created for step 2 of job 0x70B885E0FBEFA144A575B75B59E0BBC1 (reason: The system cannot find the file specified). The s ...Show All

  • Visual C# How to plot real-time graph?

    Hi, Suppose I should plot a 2-D graph with XAxis the time, YAxis is a loop of integer from 1 to 500. How to realize this for(int x=1; x<501; x++) { double y; y= (doulbe)DateTime.Now; plot(x,y); } The data I received are as follows(ignore the hex numbers): 9:43:38 AM 1 1 9:43:38 AM 2 2 9:43:38 AM 3 3 9:43:38 AM 4 4 9:43:38 AM 5 5 9:43:38 AM 6 6 9:43:38 AM 7 7 9:43:38 AM 8 8 9:43:38 AM 9 9 9:43:38 AM a 10 9:43:38 AM b 11 9:43:38 AM c 12 9:43:38 AM d 13 9:43:38 AM e 14 9:43:38 AM f 15 9:43:38 AM 10 16 9:43:38 AM 11 17 9:43:38 AM 12 18 9:43:38 AM 13 19 9:43:38 AM 14 20 9:43:38 AM 15 21 9:43:38 AM 16 22 9:43:38 AM 17 23 9:43:38 AM 18 24 9:43:38 AM 19 25 9:43:38 AM 1a 26 9:43:38 AM 1b 27 9:43:38 AM 1c 28 9:4 ...Show All

  • Visual Basic Compiler bug ??

    I am developing an app in vb.net, vs version 2003, .net version1.1 sp1 Occasionally I get an error that isn't an error in which the compiler says a variable is not defined when in fact it is.  The first few lines of an example follow Friend Class MyTreeView       Inherits MyLib.MyTreeViewBase             Private m_intOfficeID as Integer             Private m_intProjID as integer         ..... Sometimes if I make a change somewhere in the class that will case a recompile, the compiler will return a bunch of errors saying m_intOfficeID is ...Show All

  • .NET Development devolping Composite Control

    I want to build Composite control using Datagrid in .NET 2.0 that should be reffered in ToolBox of VS2005. can any body suggest me some useful links regarding this problem and which project type should i choose for doing this. You can use Windows Control Library Type project or Class Library Type project. Take a new project Windows Control Library and there you add User Control type class file in your project then you go. For more details check out this site: http://msdn2.microsoft.com/en-us/library/system.windows.forms.usercontrol.aspx http://msdn2.microsoft.com/en-us/library/6hws6h2t.aspx http://msdn2.microsoft.com/en-us/library/ms996443.aspx ...Show All

  • Visual Studio Team System Import Schema

    running ctp5, I create a new sql 2005 project. I import schema against a database using a user who is sysadmin and dbowner of source database. Import schema completes in under a second and no schema is imported, can someone advice how I can get this import schema to work TIA Has anyone found a solution to this   I get the same problem VS does not not crash but no Schema is imported. I'm using VS2005 Team Edition for Software Developers and have installed the Team Edition for DB Profesionals CTP (June 2006) My SQL 2005 server is running SQL 2005 Developers edition I do beleive. The following information is the Version information from Visual Studio. Microsoft Visual Studio 2005 ...Show All

  • Visual C++ Which One(Managed C++ or Native C++)

    Hi everybody i am starting a new project and i ma in doubt about my programming language, should i use native c++ managed c++. i should use following thing in my project: wlan communication. direct input. direct show ( previewing) direct sound (capture wave) using usb. so know please tell me which one give me more freedom to do my project. I am currently developing application which works with number of digital careras using native C++ interface, and with different hardware devices using parallel port (in the future parallel port will be replaced with USB). Program contains GUI, graphics and database access. I use 3 languages for this: 1. C# - for GUI and everything that&nb ...Show All

©2008 Software Development Network