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

Software Development Network >> Ralph Deleja-Hotko's Q&A profile

Ralph Deleja-Hotko

Member List

Flaatten
Roger McKinney
RajanSelliah
tdpro
HackShack
Cano
TunnyFish
Harjinder Singh
w_jackson
Sreejith K
MadDawg2020
DBornack
grcor
Saila
Ron Hamer
danfeng
TheSavage4
Dirk Klaren
JSheble
JasonFang
Only Title

Ralph Deleja-Hotko's Q&A profile

  • .NET Development The difference of TableAdapter

    Hi, TableAdapter is a new feature of VS2005. When I design the DataSet (named MyDataSet)  in WinForm Application, it will generate 4 file: MyDataSet.xsd, MyDataSet..xss, MyDataSet.xsc, MyDataSet.Desginer.cs. But if I desgin the DataSet in Web Applicaiton, it only generate two file: MyDataSet.xsd,  MyDataSet.xss Why How can I modify the desginer.cs when I design TableAdapter with Web Application I think Microsoft web.net team does not expose the the .designer.cs file on purpose for the web project. Anyway, you should not touch the .designer.cs file in general. This file is generated by the des ...Show All

  • Visual Basic Indexing a String

    In VBA is there a way as there is in C++ to retrieve a character from a string by passing it the location.  In C++ this would be as follows: sTemp = "Test" sTemp1 = sTemp[2] In this example sTemp1 would contain "s".  Is there a way to do this in VBA without using the Mid() or Mid$() ... functions   Thanks. .net allows you to do this: DIm MyString as string = "test" mystring = mystring . Chars (2) 'mystring is now "s" old vba your stuck with mid ...Show All

  • SQL Server Suggest Column Types

     Is there a parameter/ registry setting I could use to change "Number of rows" in "Suggest Column Types". Number of rows to scan is defaulted to 100. I believe the maximum rows you can set to 1000. If you try to set anything more than 1000, system will change from what ever you set it back to 1000. I came across this problem during testing. I was wondering anyone else came across this and how they resolved it! Thanks Sutha I have raised a suggestion for this. And also to have it allow for just strings to be suggested, to allow for data not be converted when it doesn't need to be http://lab.msdn.microsoft.com/P ...Show All

  • Visual Studio Express Editions Need advice on running VB apps from network

    I have been assigned the task of finding a way to make our VB apps run-able from our network. From everything I've read about doing this, it sounds like I have to run the .net framework wizard & change the setting for the .exe file to be fully trusted. I don't actually have the wizard on my machine to try it & our network admin is reluctant to try it without knowing exactly what to do. So I have several questions on this: 1) Can someone walk me through the exact steps in the wizard to configure a VB app to run from a network share location 2) Will every machine need to be configured individually for each app that needs to be ru ...Show All

  • SQL Server General error handling

    Hello, Originally we had laid out how we wanted our packages to work. In that concept we never really wanted our packages to fail but to offload the problem data to a file so that we could examine it (finding a problem in 1, 10, or 100 rows is easier than finding problems in 100,000 lines). The 2nd thing we want to achieve is to audit each task at the beginning and at the end. Very similar to how the the number of rows is shown in the dataflow. Our first problem is that each task would require us to create a new file to offload the problem data. This quickly became a huge concern due to the number of files that we would have to maintai ...Show All

  • Smart Device Development A multithreading question

    Hi there, I'm using a printer dll (PrintCE.dll) to print into a mobile printer I have via bluetooth. Now everything worked well until I wanted to have a nice error message (and a quick one) if the terminal can't connect to the printer (if it's offline for example), What happens today is that it takes more than 60 seconds until it finally give up the try and gives the error. so what i've done is i've put the start printing procedure in a difrent function, and called it via a new thread like this: ThreadStart job = new ThreadStart (StartPage); Thread thread = new Thread (job); thread.Start(); Thread .Sle ...Show All

  • Visual C# How can I hide a TabPage?

    Hello, I want to hide a TabPage (not delete it), how can I do that Please help. You'll find code for this as well as just about anything else you can think of to do with TabControls, on my site: http://www.dotnetrix.co.uk/tabcontrols.html --> Hide and Show Tabpages in a Tabcontrol. ...Show All

  • Visual C++ error when linking a Fortran library to c++ code in VC8 (.NET2005)

    I get the following error when i try to link a fortran library to a c++ code in .NET 2005. LINK : fatal error LNK1104: cannot open file 'libc.lib' the code was working fine when built using .NET2003. also, when I do not try to link the fortran library (just to see if that was the cause), it builds the exe without any problems. i don't even know how to begin addressing this problem...any help would be appreciated. please let me know if u need any more information thanks, Julian. Julian V wrote: I understand that libc.lib is part of the old runtime libraries which is not present in th ...Show All

  • Windows Search Technologies WDS Query from VBScript or COM

    I'm looking at integrating WDS functionality with an existing application and have been trying to call the ExecuteQuery from VB6 but am having problems. Does anyone else have some example code that they've managed to get working I've worked out that passing empty strings seems to case issues and am passing null references instead but am getting some errors raised ("Inv. Proc. Call"). This is for a small quick research project to decide between WDS and GDS so any suggestions would be very gratefully accepted! Many Thanks, John I'm not really a VB6 or VBScript expert, but I think this ...Show All

  • Visual Studio Team System Areas on Scenario

    I would like to set a list of areas for scenarios or do anything else that would let me categorize the scenarios. If I try to set an area I get a message TF20034: The area does not exist or you do not have permission to save work items in the area 'e'. Change the value for 'Area Path' to an area you have write permissions. I have no idea what to do with this. Any help Thank you. That worked well. One follow up question. I am not seeing my new areas on the report dropdowns. What do I need to do get them to appear ...Show All

  • Windows Forms One Click Installation of a deployment Project From the Web?

    How do set up a web page to install A deployment project with a Setup.Exe and a Setup.msi When you publish your program it can automatically create a .htm webpage for you with the links with "launch" and "install". In solution explorer right click you project and select properties. Then select the "publish" tab| Option button. I didn't like the default publish.htm so I created my own version and made one change to the install link. ...this part is the same... Launch < a href ="Software.application">software </ a > here the change I made to the other link... < asp ...Show All

  • SQL Server Recreating the functionality of a extended stored procedure that uses srv_impersonate_client

    I need help rewriting an extended stored procedure as a CLR. What this extended stored procedure does is to return the domain username of the person connected via named pipes. This is accomplished by using the srv_impersonate_client and GetUserName functions from opends60.lib. I have tried rewriting this in CLR using Microsoft.SQLServer.Server.SQLContext.WindowsIdentity but have been unable to replicate the functionality to return the same values as the srv_impersonate_client. If anyone knows how I can rewrite this as CLR, let me know, Also I am looking for where I can get a 64bit version of opends60.lib to run on an amd64 Thanks Darryl ...Show All

  • SQL Server System tables are not visible at all, why?

    Dear all, When you go to Sql Management Studio->Object Explorer and select Tables and then System you don’t see any at all. Why are not visible system tables for each user database as previously did Sql Server 2000 They are hidden or there is other stuff Any thought or view would be very appreciated. Tools forum is better for Management Studio questions: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=84&SiteID=1 ...Show All

  • .NET Development One more time

    Ok guys 10th time lucky I think (Hope) I am trying to build a VERY BASIC Windows Form Application using Visual Studio 2005 and C# I have a MSQL db attached to the application, on the table are 2 columns IDNum (int) Primary AutoIncrement Nombre (varchar(50)) on the form I have TextBox called txtIDNum A button called btnSubmit another TextBox called txtNombre What I want to happen is someone types a number in the txtIDNum. Press the submit button Then the Application will look in the MSQL table where IDNum = txtIDNum.Text Then it will get the data from Nombre field, and show that in txtNombre Easy yes. Please help, if you can, make a dummies t ...Show All

  • Visual C# Hi everybody ! Help me about Charset of Dataset.

    I Wirte application with database and I have trouble like this. In my database store data in charset Windows CP 1258, When I get data show in Grid it show Not correct. I was used EmcodingUnicode for convert from CP 1258 to unicode but it display not correct too. Can You Give me the Way to change Charset and show correct in form I'm look forward hearignn from everyone. Thanks for your Help. Your DataSet doesn't have an Encoding, it just work with object's. You need to Encode the data before adding it to the DataSet or displaying it. ...Show All

©2008 Software Development Network