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

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

gjbilik

Member List

philmwebb
WillSmith
seco
mzirino
Jens Egil Evensen
Chrisql
dcboy
onskee
dalix
Koolchamp
Fredrik Lindstr&#246&#59;m - Qbranch AB
DrJazz
Spacer
Gaurav85
Irshad_ip
GanjaDoc
Mike Yeager
KCurtis
RAi SWETA
llong
Only Title

gjbilik's Q&A profile

  • Windows Forms sorting Datagridview

    Hi I have a datagridview control which I am binding to a datatable. Before binding to a datatable I am adding one row in the datatable for Total and populating data in that row at runtime. Now when user click the header of the column data gets sorted. I always want the row which is displaying TOTAL at the end. I have scenario as mentioned below. Is there a way to keep the total row always at the end --------------------------------- ...Show All

  • Microsoft ISV Community Center Forums download a file via internet and save it locally

    Hi, I would like to have a script that download a file (a word document) from internet (http/https) and save it on local PC. I've already found how to download a file: ************************************************************ Dim WinHttpReq Set WinHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1") WinHttpReq.Open "GET", "http://", False ************************************************************ but then, I don't know how to save th ...Show All

  • Visual Studio vss label history

    We want to achieve cmmi level 2 compatibility using VSS. The baselines once created should not be overwritten as per CMMI. When the label command is used for baseline creation, these labels can be overwritten. I checked the history and there was no information about the overwritten baseline. Now I want some labels of some specific format not overwritable or atleast when overwritten, I want to have a history of such overwriting. Is it possib ...Show All

  • Visual Basic fm20.dll redistribution

    The thing is that I need to redistribute fm20.dll with my program which uses it my VisualBasic project. But since this dll ain't redistributable I'm in a little confusion. It is senseless to ask people that will use my program to have MicrosoftOffice installed... Then I read about Microsoft ActiveX Control Pad and thought that my problem was solved....but unfortunatly I couldn't find it using 'Search Microsoft.com'...So as I already said I'm i ...Show All

  • Visual Studio Express Editions Data structures design

    I'm unsure how to represent my data in an application I am building. I've often used 'structure' in 'C' and 'type' in old VB, and built an organised data structure. This method allows me to define the size of any arrays in the structures within the definition. However, in VB.net, I have to dimension the arrays during run-time with redim. This I feel is adding complexity to what was simple, with more chance of introducing programming error. ...Show All

  • .NET Development Howto: Check Contraint in DataSet?

    Hi! Is there any way to use check contraint in DataSets I've two date fields in a table, dtmStart and dtmEnd. dtmStart mustn't be greater than dtmEnd and I do it in database by using check contraint but for this check to occur one trip to database is required which i want to avoid. Both field are marked not null, and whenever I try to enter null to these fields, dataset varifies the data and doesn't allow null values to be inserted. ...Show All

  • Visual Basic Error on References tab of project properties page.

    I have just created a new Extensibility Addin for Visual Basic using VS2005 Professional. This addin will be targeted at MS Outlook (I hope). When I look at the References tab of the project properties, I see the following message:- An error occurred trying to load the page. Unable to cast COM object of type 'System.__ComObject' to interface type 'EnvDTE.ProjectItemsEvents'. This operation failed because the QueryInterface call on the COM compon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can I develop the DX10 and DX9.0c application use VC++ 6.0?

    Can I develop the DX10 and DX9.0c application use VC++ 6.0 My develop environment is VC++ 6.0 and installed VSSP 5.0. VC++ 6 hasn't been supported by the DirectX SDK for quite a while now. If you go back far enough you can use DX9, but I think it was somewhere around December 2004 that VC6 support was dropped. The short easy answer is no. You'd be better of downloading VC++ 2005 Express (which is free) a ...Show All

  • Visual Studio Express Editions XML-Documentation IN VB.NET 2.0 Express

    I cannot find the checkbox "generate xml documentation file" in the compile section of the project manager. I used this feature in the Beta-Release of VS and would like to carry on doing so in the Express Edition while I wait for the final version of VS to be shipped. Can it be that this feature is disabled in the Express-Edition Thanks in advance. OK, the xml documentation is built automatically when ...Show All

  • SQL Server SQL2005

    Hi Is there any other way on SQL2005 to get this information select * from SPT_SERVER_INFO WHERE ATTRIBUTE_ID=18 becasuse i cant find SPT_SERVER_INFO on the master database, works finne om sql2000 Best Regards Janne ...Show All

  • Visual Studio Team System Rosetta Not Playing Nicely - Help Request (Security)

    hey all, i did the virtual server install path and i'm having some troubles in getting a project created as per the example.  for reference, i used the how-to for virtual server (except my dc is on the base machine) for the december CTP build. wanted to try to troubleshoot this a little.  if anyone could lend a hand i'd appreciate it greatly. i have three machines in the game: WATERPOLO dc, ad, dns CRICKET (virtual machine) sql + re ...Show All

  • Visual Basic Which Control did I RightClick on?

    hi all... Is it possible to find out which control a user rightclicked on and show the name of the control in a messagebox For example I have three buttons on a form and a contextmenu that is used in common with all the buttons. When a user rightclicks on a button the context menu is shown. Kind of like the "Whats This" menu in MS Apps. So instead of writing a rightclick event for all of the controls on the form, I thought that i ...Show All

  • Visual Studio Express Editions Binary Search and Sort multidimensional array

    I am using the FileInfo[] array class and i need to sort the array and binary search it here is my code FileInfo[] destinationinfo = new DirectoryInfo(destination).GetFiles(); FileInfo[] sourceInfo = new DirectoryInfo(source).GetFiles(); Please notice i am trimming the array and only getting the dimensions of GetFiles I need to sort and search by the Name Property. Can you guys post me code on how to do that I figured it out class SnSArra ...Show All

  • .NET Development web service does not work on webserver only on local box!

    Hi there. Interesting thing I just found. I made a webservice which updates my app on request. This is the way it works, simple pseudo: [webservice] Recieves incoming versioning compares with server files if server file versioning > incoming versioning    send the file name end if [client] if filename != null    create the file    request file size from webservice [webservice] recieves incoming request for updat ...Show All

  • Visual Basic How to create a plugin system

    I want to create an application that uses plugins, i want loand and unload plugins, in vb6 i was using activeX dll's, but here is not the same, it's a good thing, but i dont know how to implement this, maybe someone could help me ... Some examples in Code Project, using different implementations: http://www.codeproject.com/csharp/PluginsInCSharp.asp http://www.codeproject.com/csharp/pluginmanager.asp http:/ ...Show All

©2008 Software Development Network

powered by phorum