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

Software Development Network >> Eugene Ostroukhov's Q&A profile

Eugene Ostroukhov

Member List

killerless
mtm81
DavidHolliss
qzam
jim-
smhaig
JohnYG
drmcl
arunsinghk
RabinLin
Cammyr
AlexCr
spotl
JFoushee
UncleSam89
michot
wchedm
Martin181
johnvarney
xyzt
Only Title

Eugene Ostroukhov's Q&A profile

  • Visual Studio Tools for Office Drag-and-drop a well-formatted block contains images and text to the document

    can this be implementted I want to drag-and-drop some images and text to the current document from action pane. when drag drop, the "well-formatted" block will appearred in the document. Is there any work around to approach the "well-formatted" block should be look like: ____________ | | text | | image | | | |_____| | |image| |______|_____| anyone knows Hi, It can probably be done, but it would be non-trivial. You would need to create an IDataObject in a format that would both support what you are trying to do and be recognizable to Word. Most likely, that means you would need to build an in-memory RTF (Rich Text Format) blob that describes ...Show All

  • Visual Studio Express Editions Check control type

    Is there a way to use switch case instead of If else to check the type of controls passed ie Button,CheckBox...etc..thanks Regards Alu ...Show All

  • Visual Studio Team System Please help: Merge options are disabled

    I am using TFS. I have created a brunch for project proj1 which is called proj1B. After modifing one of the files in proj1B, chek-in and merge to proj1, the modification was automatically merged into proj1. If I modify (adding a method) on of the files in proj1, then modifying it also in proj1B (also adding a method), both check-in ---> When I come to merge proj1B to proj1 i get the conflicts dialog (which is fine) with the "Auto Merge All" button DISABLED. When I click on the "Resolve" button, I get the resolve options dialog with the first two merge options also DISABLED ("Merge changes for me" and "Merge changes in merge tool"). I have full permissions. Anyone This indeed ...Show All

  • SQL Server Loop Through Flat Files Based On A Date Range

    Hello, I currently have a For Each File container that loops through all files from a specific directory. The files have a naming convention that looks like this; CDNSC.CDNSC.SC00015.01012007 The last segment of the file name is the date of the data in the file (mmddyyyy). The create date for these files is always a day later than indicated in the file name. What I would like to do is to have more control over the 'range' of files that are looped through by using the date portion of the file name to define what group of files should be looped through. Ideally, I would like to have a 'StartDate' variable and an 'EndDate' variable that I could define at run time for the package, and the package would loop through all of the files ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Displaying textured 3D objects

    Hi there, I've been working my way through the tutorials at http://xna101.spaces.live.com/ , and I am stuck on lesson 16, the first 3D tutorial. The download of die.x didn't work, so I whipped up my own little 3D cube in Blender and applied a simple 64x64 pixel texture to it and saved it in DirectX format as cube.x. I was able to add it to my Project fine, but when I try to compile the program, it has all sorts of trouble understanding any texture I put on the thing. It will say the texture file is not found in the debug/bin directory; or it will give me other error messages about the structure of the texture file. I tried saving the cube as cube.3ds and cube.x3d and whatnot, and none of that worked. (Indeed, the Project didn't even rec ...Show All

  • Visual Basic List Folderames in a folder

    How do I list the names of all the folders inside another folder you would pretty much do a string parsing process: Dim theFolders() as String theFolders = Directory.GetDirectories( path ) for each currentFolder as string in theFolders Me.theListBox.Items.Add(currentFolder.SubString(currentFolder.LastIndexOf("\")) next that should do it hopefully. Another way would be: Path.GetDirectoryName(currentFolder) in the for each loop does this help ...Show All

  • Visual Basic Run time Error

    Private Sub cmd_DeleteTables_Click() MsgBox "Click yes when prompted to delete records" Dim sqldel As String sqldel = "DELETE tbl_physical_main.*, tbl_physical_main.[Material Number] FROM tbl_physical_main WHERE (((tbl_physical_main.[Material Number]) Is Not Null))" DoCmd.RunSQL sqldel, no sqldel = "DELETE tbl_noDataForTag.* FROM tbl_noDataForTag" DoCmd.RunSQL sqldel, no sqldel = "DELETE tbl_SAPmaterials.* FROM tbl_SAPmaterials" DoCmd.RunSQL sqldel, no MsgBox "All previous inventory data has been deleted and the next inventory load may continue." End Sub DoCmd.RunSQL sqldel, no after delete the record I have run time error, Please advice. Gee1 ...Show All

  • Visual Studio Workaround for subreport within subreport

    I have several reports - entirely SQL driven, and subreports within subreports, obviously I didn't realise until the last minute that it disregards subreports within sub-reports. Is there a workaround for this Or am I stuffed Thanks Kev Hi Thanks the advice, in the end I've just moved these sub-subreports into the parent report instead, I've got it working fine now. Thanks Kev ...Show All

  • Windows Search Technologies Popping up seachindexer.exe

    This problem came up when I installed a ION USB Turntable on this system. It hadn't come up before that. I have Office 2007 beta on this system as well as Adobe Reader 7.0.8. Looking at other threads, that Adobe could be the problem. What do I do to stop the popping up System: Athlon 2400 1 Gig memory 350 Gig HD Nvidia 128 bit graphics card Win Home XP SP2 windows installer cleanup ,utility install this from microsoft free and use it to completely uninstall adobe old version and install new ver, hope this works ,it did for me i`m running xp sp2 catch you later. ...Show All

  • Visual Basic DataTable or DataSet

    I'm trying to create an SQL statement that will return duplicate fields from a Text file that I imported. The imported file is NOT in a Database, but rather in memory. What should I query against, the DataSet or the DataTable Also, how do you create a complex SQL statement and use it against the DataSet/DataTable Looking for something like this: SELECT * FROM myTable WHERE ssn IN(SELECT ssn FROM mytable GROUP BY ssn HAVING COUNT(*) > 1; Any sugguestions would be great!!! I would say a dataset(if this is a window based application, else if its web based, then use datatable). Datasets more flexable, well from my experience at least. Also you can use the select method from a dataset and dataview. Also I believe you can use the ...Show All

  • SQL Server How do you get a result set back from a stored procedure

    I am trying to get data back from stored procedure output arguments. I am in a Visual C++ enviroment calling the stored procedure via the ODBC function SQLExecDirect. When the stored procedure has only a single output argument, everything works fine. When there are multiple output arguments, I get an error "Invalid Cursor State' from the SQLFetch. This is telling me there is no result set. Below is a pseudo code fragment which shows what I am doing. I want to use SQLGetData to convert the data into C variables. I do not want to use SQLBindParameter or Parameter Markers. Sql = "DECLARE @outarg1 int DECLARE @outarg2 datetime {CALL ProcName('Inarg1','Inarg2',.......@outarg1 OUTPUT,@outarg2 OUTP ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA GameStudio Express: Calculate Normals

    Hi. Right now I'm using VertexPositionColor and an index buffer to create a terrain and I'm going to do a transition to VertexPositionColorNormal. I currently have the following code: using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Components; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; namespace _DStarField { public class Terrain { private GraphicsComponent graphics; private Camera _cam; private int width; private int height; private int [ ...Show All

  • SQL Server Incremental processing and aggregations

    If I use the incremental processing option do I have to issue a separate process index command to get the aggregations rebuilt on the partitions that has been touched Or is this handled automatically by the incremental processing command Thanks - I should have remembered that. The reason I didn't is that I'm using AMO and there seems to be no way to set the affected objects parameter using the ProcessableObject.Process method. In fact looking around a little with Net Reflector it seems this parameter is hardcoded to false in the statement base.WriteStartBatch(true,false) of the Microsoft.AnalysisServices.AnalysisServicesClient.Process method. In my current case I just added an extra row doing ProcessI ...Show All

  • Visual Basic StatusStrip usage

    Hi,      Have a little usage issue and yes I'm new to VB..Simple little program that will update the text of statusstrip. Works with If Then or Select Case but NOT For next The following code wil not show 1,2,3,4,etc only 10 is shown....   Private Sub Button3_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim i For i = 0 To 10 ToolStripStatusLabel1.Text = "SuperTest: " & i Sleep(500) Next End Sub problem fixed... Just a bit more searching and I found my answer... Application.DoEvents()   Application.doevents is definately preferable over a sleep which will suspen ...Show All

  • Visual Studio Express Editions URL?

    I have been asking about this a few times and gotten no answer to my question. I have a tabbed browser with no url textbox(for input). I want to however display the url of the current tab in a textbox or a label. So I can use for instince. If URL = "http://" then Webbrowser1.navigate("http://") EndIf well right now I can say that this is bad - to have your own navigation system to login the user or redirect them since the website could change - meaning links in your application would be invalid. Still, best to let the user type in the url etc... as you do in internet explorer for example. however, you need to know: the url of the login page the unsuccessful l ...Show All

©2008 Software Development Network