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

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

killerless

Member List

EnigMa_AnGeL
Ron L
PhilipHaugaard
nzmike
Oskar2
nhsfreak
Ross Watson
SekharPC
KitGreen
Dany V
Gerdes
RolandKlein
Joshizzle
LouisVanAlphen
mrobold
AndersBank
NateInIndy
Zoran Bebic
Gorav
Keyth
Only Title

killerless's Q&A profile

  • Visual Basic ddeml.dll

    Is it possible to use the MS ddeml.dll to get the URL from IE I can't find sample code anywhere. I did find some for vb6 but I couldn't get it to work. ok, here's a brief bit of the code. The whole vb6 code can be downloaded here: http://www.vbcode.com/Asp/showzip.asp ZipFile=http%3A%2F%2Fwww%2Evbcode%2Ecom%2Fcode%2FDDEML12022002%2Ezip&theID=5916 Ultimately, I'd like this in vb.net if I can get it to work. Here's the section of code i think applies. 'ran the initialize code first. 'add functions that are listed below but not shown are api calls. ' Private Sub cmdRequest_Click() Dim lRet As Long Dim lSize As Long Dim sBuffer As String Dim sFinal As String If (CheckData("Req ...Show All

  • Visual Basic adding databindings to a user control

    I have bound data to a combobox using the tools in the IDE, but when I load the .dll for the control, I get no data. Can i not do this Ok, I found the problem. IN the windows form application, the IDE will automatically add the following line of code: me.TableAdapter.fill(me.dataset) The user control doesn't once I place this line in the code it works as expected. Thanks for the help. ...Show All

  • SQL Server Pass XML Data to use as Data Source?

    Hello, Is it possible to pass an XML document as a string parameter to a Reporting Services 2005 report and use this report as a data source for the report I know you can source from a web service, the problem is that the effort needed to convert what I have into a web service will be more than we would like to take on. Instead, I am trying to pass an XML structure as a string parameter to a report and then setting the Command Text like so: <Query><XmlData>Parameters!XmlData.Value</XmlData><ElementPath>MyRootElement</ElementPath></Query> TIA!!! It will run in the designer preview or a published report. However, the report designer query window/data tab does not have the ability to parse ...Show All

  • SQL Server To configure database mirroring-Dont get Mirror option in TASK

    To configure database mirroring After connecting to the principal server instance, in Object Explorer, click the server name to expand the server tree. Expand Databases , and select the database to be mirrored. Right-click the database, select Tasks, and then click Mirror. This opens the Mirroring page of the Database Properties dialog box. To begin configuring mirroring, click the Configure Security button to launch the Configure Database Mirroring Security Wizard. but i do not see any "Mirror" Option in the "Tasks" menu. Why Which edition and release (RTM or SP1) of SQL Server are you using I don't know why you don't see the Mirror option in the Task menu. ...Show All

  • Visual Studio Tools for Office How does office clipboard work?

    Hi, We know that window can place more than one object on the system's clipboard, each representing the same information in a different clipboard format. And there is a Office clipboard. If I copy the full contents of word document that contains lots of data in various data format, such Text, Image, OLE Object and so on. And I press Ctrl+V in Word application. How Word application put data on the clopboard and retrieval it again from clipboard without loss of format informations Thank you for any help! When OleSetClipboard is called , how does Office clipboard know that data is available on clipboard Does office clipboard keep reference to original IDataObject from OleClipboard or creates its ...Show All

  • Visual Studio Team System RSS Notifications for Work Item Tracking

    Is it possible to create a RSS feed for notifications of new Work Items Thanks Henrik Skak Pedersen Yes, here is sample code for it: http://blogs.msdn.com/narend/archive/2006/08/02/686838.aspx . You could query on created date from certain date and return the results as xml. ...Show All

  • Visual Studio Team System Attempted to perform an unauthorized operation while publishing

    When trying to publish the results from a webtest to source control I get the message of "Attempted to perform an unauthorized operation". I get this message in the Test Results window under the Error Message column. We can not find a problem with permissions on the server side and hoping that someone here might have a suggestion. Thanks Thank you very much for your reply. We have double checked permissions and still am getting the error. We actually do have the tool you suggested. Any other suggestions would be appreciated. ...Show All

  • SQL Server Backup and recovery of SQL Server using VB.net

    Hi, I have a small application in which i'm using Sql Server as Database. my requirement is how to take the backup of the entire database or some tables from the database when there is any delete from the database. My requirement is to do from the VB.net application.Hope i delivered my question correctly. Any little help is beneficial to me. -regards GRK Try this one out... Dim oDevice As New SQLDMO.BackupDevice Dim BACKUP As New SQLDMO.BACKUP Dim SERVER As New SQLServer Private Sub Form_Load() On Error Resume Next 'If the device already exists an error will result if you try to add it again so just resume next cos its already there With oDevice .Type = SQLDMODevice_DiskDump .Name = "NorthwindBakUp" .Physic ...Show All

  • Visual Studio Team System unit test errors and debugging

    When I debug a unit test, any errors that occur has I step through are not displayed in any manner. Instead of notifying of an error the test just falls through and is reported as failed. How do I see errors as I step through while debugging a unit test Let me clarify my questions.. 1. Are you using NUnit for the unit tests 2. If you are using NUnit and want to debug means, you have to ATTACH THE PROCESS - Nunit with the VSTS ide itself so that you can debug the NUnit test cases also in VSTS. 3. If you are using the VSTS for unit tests means, you can debug the test cases normally as you are doing in any windows applications or web app. It shouldn't create a any problem at all...since i am using ...Show All

  • .NET Development Object Allocation Performance

    I have been implementing a geometrical algorithm in C#. The algorithm performs boolean operation on triangle meshes of arbitrary size. This implies that meshes sometimes get rather large (500,000-1,000,000 triangles) and as a result a lot of objects need to be allocated (triangles and vertices of the mesh). The allocation seems to be the primary bottle neck of the algorithm, instead of the very large amount of arithmetic computations. So my question is if there is any way to fasten or tweak the allocation of such a large amount of objects (avoiding the managed heap by using structs is of course not an option as the vertices are not unique for each triangle neither are triangle adjacencies). Pre-allocat ...Show All

  • .NET Development NamesSpace for MS-Access

    Hi, What NameSpace needs to e given when MS-Access is used Please be noted that am absolutely new , guide me. First remove that line: ‘using Database1.mdf;’. You have the needed namespaces declared. The rest of the code seems OK to me except that you are missing the connection string. I’m posting a few links where you can find useful information on connecting to OleDB data sources, and building connection strings: http://msdn2.microsoft.com/en-us/library/system.data.oledb.oledbconnection.aspx http://msdn2.microsoft.com/en-us/library/ms254507.aspx http://msdn2.microsoft.com/en-us/library/system.data.oledb.oledbconnection.connectionstring.aspx Zlatko ...Show All

  • Visual Studio Express Editions MenuStripItem on sys tray

    After looking at this topic here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=381830&SiteID=1 Anyone know how to add some Sub or something for handling each individual MenuStripItem well when the user tries to close the form, that event will be fired. you then can ask if the user wishes to quit - if so then set the e parameter to true: e.Cancel = true otherwise if the user wants to quit: e.Cancel = false ...Show All

  • Visual C++ How to convert the DEC to HEX type??

    Hi ~~~ I have a problem. I can't convert the dec to hex Example int qq = 100; how to convert to hex (Not : 0x100) I want to convert the "qq" . Or how to convert the string "100" to "64" (dec type convert to hex type) Thanks for your help!!! Hi!! Thanks your answer... But I don't understand that strtol("100",NULL,10); ←it means what and ltoa(i,buffer,16); ←it means what Because I can't find them from MSDN Library....... And I'm sorry....I made something wrong!! I set qq is String like this (String^ qq) and qq = "123456", the "123456" is catch from other's some segment...so it's not has the range or mayb ...Show All

  • Visual Studio Cannot se property values, when I debug

    After I have upgraded to Visual Studio 2005 Team Dev. Edition, I have problem to se the values of the property's. I just get this information instead: Cannot evaluate expression because a thread is stopped at a point where garbage collection is impossible, possibly because the code is optimized. My code is not set to be optimized. When I reach a break point, and want to step into the next statement, the debugging sesion just finish. I have read Mike Stall's .NET Debugging Blog , but I can figure out what to do, to get my debugging work again Can somone help me The problem is solved I have installed the product iolo System Mechanic, and after I uninstall the product it was still running as a windows service. When I hav ...Show All

  • Visual Studio Express Editions Download and Install Not Working

    I downloaded VBSETUP.EXE and when I "Open" it, a bunch of files are copied to a temporary folder, and eventually I get to the Download and Install Progress screen, which contains the following lines: The following items are being downloaded and installed on this computer: Microsoft .Net Framework 2.0 Visual Basic 2005 Express Edition Currently downloading (1 of 2): Microsoft .Net Framework 2.0 The current transfer rate is 0 mb/sec. Total Download Progress: 0 MB/60 MB Then, after a few minutes, the "current transfer" line is replaced with: Status: Re-establishing connection with the server (attempt 1 of 5) Any ideas on how I can get this to work. Thanks. R Forest, ...Show All

©2008 Software Development Network