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

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

Oleg63

Member List

MCFH
Chimme
gabit7
AVVIT
pratap gaikwad
Basani
hellomahesh
nhaas
Ryn
Rajesh Kumar J
michal.kreslik
Will George
GoldRunner
Samall
IRANEW
Cory Cundy
hobbestherat
James A Howard
Simon Dahlbacka
CPS
Only Title

Oleg63's Q&A profile

  • SQL Server SQL Server 2005 Everywhere Edition with Sql Server Management Studio Express

    Can I use SQL Server 2005 Everywhere Edition with Sql Server Management Studio Express If not, what do I need to access sdf file Thanks Currently you can use SQL Server 2005 Edition to access the .sdf file or you can use VS 2005. In future we will be integrating SQL Server Everywhere with SQL Server Express as well. Thanks Sachin ...Show All

  • Visual Studio Team System Adding Change Set #, Revision Number and Comments to the header of the file during checking

    Is there a way to add during check in the Change Set#, Revision and Comments supplied into the header of the file(s) checked into Version Control Thanks, staffan You could write a checkin policy that expands many of the most common keywords. (Changeset # is not possible; it would have to be done by the server.) ...Show All

  • Smart Device Development Install Shield .NET?

    I've heard from a guy that uses Delphi 2006, that it comes with a InstallShield capable of including just the neccessary DLLs to the source programm to run in its installer, thus, making unneccessary to install the .NET Framework in the client pc (where it will run). Is it Possible Is it aplicable in other .NET platafforms instead of Delphi, just like Visual Studio And the CLI, is it installed together, creating a micro-.Net Framework Is just bullshit at all ...Show All

  • SQL Server Displaying RTF fields in a report

    Hi, I would appreciate it anyone could help. I've saved RTF formatted data to a text field in the sql server db. I want to display this formatted text in a report with. Any ideas shot I have the same problem, but I think I'm reallllly close to the solution. I'm rendering the RTF to an image file and trying to load it into an image control via a referenced class. I have the class returning either an image or a byte array. Reporting services image controls apparently only work with a byte array, but as of yet I can't get it to work. Using the same assembly reference I am able to view the resulting image with the pictureBox control, and the byte array appears to be populated as intended, it jus ...Show All

  • Windows Forms datagridview doesnt save in editmode

    Hi, I'm unable to save when a column is in editmode. it doesnt save the new value. it shows only the last saved value for the column under editing. thanks venp-- Hi, If i setfocus on some other control before saving the data, it works. But still i need to know proper way of doing this. Venp-- ...Show All

  • Visual Basic My program dont stop when an error occurs

    Sometimes in my program, when i run it in visual studio and there is an error, it dont stop and show the debug window. Instead it just exits the sub where the error is and continues. Is this some function i can set to on/ off The reason i now is that, in my program it was suppodes to do one thing in an opened up form, but instead it just closed the window. I then inserted a break to manually go through the code one line at a time, and i then found the error in an sql command. But the thing that stroke me with this, was that when it got to the cmd.executenonquery command, it exited the sub (and when the sub was exited the window would close as it should). Normally when i make an error in an sql comm ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX Asks the user for IP address - Help me please!

    I'm aiming to produce a P2P chat engine using DirectPlay. I have the basic system up and running, but when the client connects to the network (my computer is the host), it asks the user for an IP address. I was wondering how to supply it with an IP address so that the user doesn't have to know my address in order to chat. Thank you for your reply. If my IP address should change for any reason, the software already knows how to retreive the latest version of itself, and my new IP will be inside it. ...Show All

  • SQL Server Logging packages info

    Hi! I want to log package info like when the package starts and ends, and write info to a sql server table. there are of course many ways to do this. I just want some opinions from you if you have some clever ways to do this. regards geir f ...Show All

  • Visual C++ conio

    i am using the header conio i my program do i need to include any library files in my linker I am using visual studio 2003 Your VC++ project should automatically include the correct library files. You'll need to link to one of libc.lib, libcmt.lib, or msvcrt.lib, depending on the threading and dependency model in your app. More information is at http://msdn2.microsoft.com/en-us/library/abx4dbyh.aspx . ...Show All

  • Visual Studio Setting a color on a report.

    Hi Folks. I have a report where I print some product items, every product item has color value(like: 000000). Besides the products name I would like have a litle square that is filled with the color from the color value field in the database. How could this be achived Cheers Add a rectangle next to the product item (e.g. if you use a table layout, put the rectangle into a column besides the product information). Then, on the rectangle specify the background color as an expression. Let's assume you have a dataset field called ProductColor that contains the color value as a string (e.g. "000000"), you would use the following expression: ="#" & Fields!ProductColor.Value Note: thi ...Show All

  • Visual Studio Express Editions Getting data out of a database column

    I've got a database connection via VB code and i've got my filter ... Does anyone know how to get the data out of record 1 and out of a certain column As you dont say whether you've actually populated your dataset, you mention you have a filter but without seeing code and vague description is difficult to tell what stage your at. A dataset comprises of one or more datatable which comprises of columns and rows collections. To access the value in the first table, first row Dim s As String = x.Tables(0).Rows(0).Item( "Col2" ).ToString Item can be either the column name or you can use an integer value as this is a zero based collection. Dim s As String = x.Tables(0).Rows(0).Item(1 ).ToString     ...Show All

  • Visual Studio Tools for Office InsertAutotext() not working properly in VSTO 2005. (Word, C#)

    This is my problem. I have a Word-template created in Word 2000. I use this template as template to create a VSTO-enabled version of the same template for Word 2003 (basically nothing more than adding an actionpane and stripping out the old VBA-junk.) The template has several autotextentries and I thought it would be a piece of cake to just convert this into C# using the nice litte bookmark object which has both a text attribute and a InsertAutotext() method. You fill in the text and call the method. Seemed straightforward enough. Well, I was wrong. When it does work, once in about every 200 times, it indeed is straightforward enough but It just doesn't work the other 199 times and for the life of me I cant figure out why. When I ...Show All

  • Visual Studio Express Editions how some help fix my code?

    'Create a new MailMessage object and specify the"From" and "To" addresses Dim Email As New System.Net.Mail.MailMessage(" From@abc.com ", " To@abc.com ") Email.Subject = "test subject" Email.Body = "this is a test" Dim mailClient As New System.Net.Mail.SmtpClient() 'This object stores the authentication values Dim basicAuthenticationInfo As _ New System.Net.NetworkCredential("username", "password") 'Put your own, or your ISPs, mail server name onthis next line mailClient.Host = "Mail.RemoteMailServer.com" mailClient.UseDefaultCredentials = False mailClient.Credentials = basicAuthenticationInfo ...Show All

  • SQL Server SSIS Syntax issue

    Hello Can someone show me what I'm doing wrong with: C:\\FolderName\\"+ @[User::varName] +".xml Error at Data Flow Task [XML Source [1]]: The component "XML Source" (1) was unable to read the XML data. Error at Data Flow Task [XML Source [1]]: There was an error setting up the mapping. Pipeline component has returned HRESULT error code 0xC02090D0 from a method call. (Microsoft Visual Studio) Thanks Worf If this is used in an expression I would say that the right syntax is:   "C:\\FolderName\\"+ @[User::varName] +".xml"  Rafael Salas ...Show All

  • Windows Search Technologies Would it be possible to use a central index location for our whole network clients?

    Hi developers, we would like to offer Windows desktop search to every employee in order to search our fileserver for useful content. Two problems still to be solved: A Indexing of network drives consumes a lot of bandwidth - would it be possible to create a central index every day and point the clients' desktop search to it B If those clients could use an index created by an administrator of that fileserver (see A), would it be possible to find words but to hide the cached content Background: Sometimes people are looking for information they are not allowed to access at the moment. If they could find some words that lead them to the information needed, they could ask for permission afterwards. But, and that's the reason for que ...Show All

©2008 Software Development Network