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

Software Development Network >> Galin Iliev's Q&A profile

Galin Iliev

Member List

DanMeyers
Victor BA
JohnHarding
Chris Richner
Weston Hutchins - MSFT
Miyamoto M
h1
erick_the_redd
medicineworker
Nick...A
Jawaharlal_LS
kgaudana123
Vitalijus
ReneeC
edukulla
bubu
ss4steve
Rabbitrun
Fahad Habib
Vítor
Only Title

Galin Iliev's Q&A profile

  • SQL Server semi invisible hyperlink server name

    Hi I have PDFs that are embedded in Internal server. In my report, I want to create hyperlinks to these PDF. However, how do you make it so that when the PDFs are displayed in a browser, the viewer don't get to see the address of where these PDFs are stored This is so that the viewer don't get to see our company's server address where there are lots of sensitive documents and information. Can I make it so that a fake or symbolic address of those PDFs show up Any suggestion Thank you very much in advance ...Show All

  • SQL Server Read CSV file - Save Columns into Rows

    I want to import CSV file and convert columns into rows depending on Customer count(2nd record in each row of CSV file) and save to SQL table --CSV file format State, Customer_Count, Name_1, Total_1,Name_2, Total_2,Name_3, Total_3..can go upto 350 GA,2,'John Doe',14.00,'Roger Smith',15.00 FL,3,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00 SC,5,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00,'James Brown',17.00,'Rick Davis',18.00 Data in SQL table from csv file should look like this State,Name,Total GA,John Doe,14.00 GA,Roger Smith,15.00 FL,John Doe,14.00, FL,Roger Smith,15.00 FL,Sally Cox,16.00 I have multiple CSV files with millions of records. How can i achieve this using Integration Services or Bulk Data ...Show All

  • Visual Studio Team System Continuous Integration builds not wanted in WorkItems Details

    Hi, I finally managed to setup the contiuous integration build for our new TFS system. As expected I have about 20 builds per day, and the problem is: they all show up in the WorkItems->Details->FoundInBuild and WorkItems->Details->ResolvedInBuild dropdown lists. After two days I have about 40 builds in the lists, not very funny. The continuous builds are not associated with any items, I included a SkipWorkItemCreation tag in the build definition. But as contiuous builds produce lots of entries in this lists I don't want them in the dropdowns. We have release builds that are different from the continuous builds and they should show up here, nothing else. Any properties I have to set or tasks I have to define/overwrite ...Show All

  • Visual Studio Express Editions call a c++ dll func returning a int array from a c# code

    hello! I need a help for this: i need to call a c++ dll that allocates and returns an int array something like this struct vett_int { int vettore_interi[10]; }; static struct vett_int new_vett_int; extern "C" __declspec (dllexport) vett_int __stdcall intvect(int scelta) { { switch (scelta) { case 1 : return new_vett_int; } return new_vett_int; } } i am calling intvect from a c# application like this [ DllImport ( "dataex.dll" )] public static extern vettore_di_interi intvect( int choice); public struct vettore_di_interi { public int [] vettore_di_int; } main prova_chiamata_a_dll. Program . vettore_di_interi vettore_interi_instance = new Program ...Show All

  • .NET Development ANNOUNCING: Xml Notepad 2006

    Download, including source code, from: XML Notepad 2006 Design doc at: http://msdn.microsoft.com/library/en-us/dnxmlnet/html/xmlnotepad.asp Handy features include: Tree View synchronized with Node Text View for quick editing of node names and values. Incremental search (Ctrl+I) in both tree and text views, so as you type it navigates to matching nodes. Cut/copy/paste with full namespace support. Drag/drop support for easy manipulation of the tree, even across different instances of XML Notepad and from the file system. Infinite undo/redo for all edit operations. In place popup multi-line editing of large text node values. Configurable fonts and colors via the options dialog. Full find/replace d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirextX Version?

    The Readme file notes that DirectX Runtime XNA Game Studio Express Setup installs the current version of the DirectX runtime. The runtime is required in order to use the XNA Framework game API. Does this mean XNA stuido is using the October runtime and if I install the october SDK is it going to break anything Darkside wrote: Question still remains. Which version of the DirectX runtime and SDK is the Beta 2 running under October DX runtime updates. DX SDK is not required. Darkside wrote: is it safe to install just the october SDK with the Beta 2 Sure. Darkside wrote: noticed that under the tool options with the beta 2 that XACT is installed as well, so is this XACT from ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture coords in export of 3dmax, help

    Hi I have a problem with the texture coords when i export my mesh of the 3dsmax 9.0 using the panda export, the situacion is this I have a simple plane with 4 vertices, in the material editor of 3dmax i apply a diffuse map and define the tilling with the values U =3 V=3, then apply this in my mesh, render then 3 times the texture, is OK, but when i export this, his export to .x file with the coords 0.000000;1.000000;, 1.000000;1.000000;, 0.000000;0.000000;, 1.000000;0.000000; His forever betowen 0 and 1, how i can export the coords equals in the 3dsmax thanks Most exporters will not pay attention to the crop & tile parameters in the material map settings. Instead, you have to m ...Show All

  • SQL Server @@ERROR logic not working

    Hi There I am having a little trouble with something very simple: I have a stored procedure with the following sql in it: UPDATE mfsWS_CustNewCustomer SET Result_Id = 0 WHERE QueryGUID = @Guid IF ( @@ERROR <> 0 ) BEGIN RAISERROR ( 'Error setting Result_Id' , 16 , 1 ) UPDATE mfsWS_CustNewCustomer SET Result_Id = 1 WHERE QueryGUID = @Guid RETURN END To test if this works i SET the Result_Id = 'X' this is a smallint column so this should not work. My issue is that all i get is the error: cannot convert char to numeric etc etc However the @@ERROR logic is not executed , my error is not raised and the update does nto happen, it si as though the entire sp aborts at ...Show All

  • Visual Studio Express Editions Open excel files from a button click event

    i am having a huge problem finding a way to open an already created excel workbook from a button click event from my forms in visual studio express...does anyone know the coding to do this or how it can be done well if the file already exists, you can launch it like so: System.Diagnostics.Process.Start( TheFileNameAndPathToExcelFile ) this will start a process, launching the specified file externally. The code can be placed any where in your code, for example as you stated, on the button click event. This will open the excel file, just as if you double clicked on it manually. Does this help/answer your question ...Show All

  • Visual C# namespace for ConfigurationManager

    Trying to get hold of my connection string: public static OleDbConnection cnn = new OleDbConnection ( System . Configuration . ConfigurationManager . AppSettings [ "connectionString" ] ); I am getting an error: Error 2 The type or namespace name 'ConfigurationManager' does not exist in the namespace 'System.Configuration' (are you missing an assembly reference ) D:\VCsharp_Projects\tapTCPports_1\Class2.cs 16 88 tapTCPports_1 using System.Configuration; statement is in the namespace. In the AssemblyInfo.cs I have a statement: [ assembly : AssemblyConfiguration ( "" )] . using System.Configuration; statement is NOT included in AssemblyInfo.cs. Please help. Thanks. ...Show All

  • Commerce Server Basic Pipeline Questions

    I'm totally new to pipelines and I've read the documentation, but I have a couple of basic questions that aren't answered that would help point me in the proper direction. Say I have a custom product property indicating whether a product is active or not... and I am currently running the Basket pipeline whenever the user brings up his/her basketed order. I want to modify the QueryCatalogInfo so that if the product has been inactivated since they added it to their basket it will notify the user of this and remove the product from the cart. My question is, can I update the QueryCatalogInfo component or do I have to write a completely new component and add it to the basket pipeline after the QueryCatalogInfo one Also, should the Basket ...Show All

  • Visual C# Strange null reference problem within enum?

    Hi All, We've been having a strange problem. Recently we have seen null pointer exception coming out from our code. The exception trace is dead simple: Message: The run has errored with description: Object reference not set to an instance of an object. Object reference not set to an instance of an object. ------------------------- User: Source: mscorlib Server stack trace: at System.Collections.Hashtable.get_Item(Object key) at WGP.Adapter.IntToPrataEnum(String prataCode, String val) at WGP.Adapter.Curve.BuildCurves(Double[] date, Int32[] instrument, String[] currencies) ... Anyway what really strange is that the code in IntToPrataEnum method is dead simple and straight forward. As far as I can see, I couldn't find a single ...Show All

  • Visual Studio Express Editions how to make password(login form) case sensitive?

    how to make login form password case sensitive u mean this Option Compare Binary If "red" = "RED" Then MsgBox("DIff") Else MsgBox("Same") End If what if items in database dim pass as object = nothing pass = theDataReader("password") Option Compare Binary if pass <> textbox1.text then msgbox ("diff") else msgbox ("same") end if ...Show All

  • Visual C++ This application has failed to start because the application configuration is incorrect

    Hi everyone, I'm posting about a problem that has been addressed in the past, but the pure wealth of options and acronyms posted confused me. I'm a new Masters student, and I'm used to developing all my projects under a Linux environment. As such, I'm very new to developing applications using VS. I'm using Visual Studio 2005 (not Express) and developing in C++. I'm developing an OpenGL program, and the template I used to set it up uses Managed C++. All I want to do is develop an application executable that can be run on machines that don't have VS2005 installed. I don't want to force my supervisors to install VS2005 to simply run my various applications. I've built a debug version, found the executable in the program directory, and it runs ...Show All

  • Software Development for Windows Vista creating desktop on vista and launch IE on it

    Hi, All I run into some issue with creating a new desktop on windows vista: If I create a 2nd desktop using CreateDesktop (with NULL for security attributes), and launch an IE using CreateProcess() on the 2nd desktop from default desktop, it will be created with medium integrity level and a pop up on the 2nd desktop mentioning that Admin rights is required w/o real IE displayed. However, launch an IE using CreateProcess() on default desktop directly is OK(and in low integriy level). Then I tried launching an IE using CreateProcess() on default desktop from 2nd desktop instead, it works fine with an IE with low integrity level appeared on default desktop. So, how can I enable same behavior on 2nd desktop as the default one - IE c ...Show All

©2008 Software Development Network