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

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

petrHloz

Member List

James Lissiak
hasfad
DmitryMS
Sebi Tauciuc
WQP
cbpd86
Cybesystem
etones
Scratattack
The WB
CBuilder
franjorge
SelvaVenkatesh
Tryin2Bgood
Miguel Carvajal
FranklinIssac
Corinna Vinschen
Alex Farber
_Michael_
sanjeevm
Only Title

petrHloz's Q&A profile

  • SQL Server Query to another server

    Hi, I'm trying to do a query from ine server to another, something like this: " SELECT * FROM FILESERVER . SharePointConnectingDB . dbo . vDepartmentsNames" where FILESERVER is the other SQL server name, SharePointConnectingDB is the the DB in the other server, etc. as a return i get the following error (in spanish becuse the server is in spanish): in El proveedor OLE DB "SQLNCLI" para el servidor vinculado "FILESERVER" devolvio el mensaje "Especificacion de autorizacion no valida". Msg 7399, Level 16, State 1, Line 1 El proveedor OLE DB "SQLNCLI" para el servidor vinculado "FILESERVER" informo de un error. Error de autenticacion. ...Show All

  • .NET Development Web Service and a problem in Web Reference

    Hello, I have Web Service which contains classes. Public Class Foos Public Sub New() End Sub <XmlElement("Foo")> Public Foo As Foo() End Sub Public Class Foo Public Sub New() intSomething = Nothing End Sub <XmlElement("intSomething")> Public intSomething As Integer End Sub Then I have WebMethod <WebMethod(Description:="Lists all Foos")> _ Public Function AllFoos() As Foos Dim F As Foos = New Foos F.Foo = ListOfFoos() '-- ListOfFoos is a functions that returns array of Foos where intSomething is set for every Foo Return F End Sub Now the problem is, or I don't know is it problem or only something that I don't understand. If I ...Show All

  • Windows Search Technologies WDS 3.0 Beta2 / WDS 2.6.5 and PDF files / Adobe Reader 7.0

    I see that PDF is not currently supported (unchecked filetype in Advanced; and this PostID: 615984 ) in WDS 3.0 beta2, but I have had problems with 2.6.5 and one or other of the Adobe iFilters. I'm not sure which iFilter version is currently installed. I have Reader 7.0.7 installed now. Can anyone report iFilter which is most suitable for WDS 2.6.5 I had frequent crashes of an already-running instance of Adobe Reader 7.0 when WDS 2.6.5 was previewing a PDF file, and I then right-clicked that filename in the top pane to open it with Adobe Reader. And less frequently, WDS itself closed when a PDF was being previewed. And a minor but annoying feature: when a PDF preview occurs, focus changes to the preview pane rather than stay ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Got a Feature Suggestion for the Next Version of the XNA Framework?

    Cross posted from: http://blogs.msdn.com/xna/archive/2006/12/03/got-a-feature-suggestion-for-the-next-version-of-xna-game-studio-express.aspx We're putting the final touches on our first release of XNA Game Studio Express and our launch on December 11 th is less than three weeks away! Many of the team’s members have started to think about features that could be implemented in versions of XNA Game Studio Express down the road. While the team has ideas about things we’d like to do, we rely on you to tell us about the things you’re interested in or that you’d like us to change in future releases of the Product. The best way to share this information with us is by using Microsoft Connect . If you’re unfamiliar with Microsoft Connect, plea ...Show All

  • Visual Studio Express Editions Windows layout bug when running the application

    I have a problem that's driving me nuts! When i run my application in debug, all my windows ( properties,Solution explorer,locals,call stack,output, database explorer...) are going all over the place (in floating mode) on my main window. Even if i reset the window layout using the reset function, it still don't work. I try to fix it using the guide diamond to dock the layout window..same thing, the settings are not saved and the windows are going all over the place in floating mode. I also imported *.vssettings from another computer where the application and layout is running good and it still don't work. I reinstalled VB express, same result. Somebody help me!! do you experienced bug like this Thanks a lot! ...Show All

  • Visual Basic VB6.FixedLengthString(intBufferSize)

    When converting VB6 code to VB 2005, I get some conversions that are in the form "VB6.FixedLengthString(cintBufferSize)". This usually occurs in a Type declaration where a string has to be of a certain length. What does this mean, and what would be the correct format to use in a Structure in VB 2005 Thanks, Mike if a string has to be of a fixed length, you can either: 1) use a stringbuilder and specify a specific capacity (and best practice to do this for handling strings) 2) take a look at this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvbpj01/html/gs0601.asp I guess from reading it, you can specify the "space" length: Dim theString as String = Space( leng ...Show All

  • SQL Server [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure

    I am new to SQL Server and stored procedures and here is my problem. I am stepping into a stored procedure ‘ storedProced1’ using T-SQL debugger. ‘ storedProced1 ’ is calling ‘ storedProced2’ . When I step into the following line where storedProced2’ is being executed, exec storedProced2 @Parameter1, @ Parameter2, @ Parameter3 I got the following message in the immediate window. [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'storedProced2’. @RETURN_VALUE = N/A But “ storedProced2 ” does exists. What am I doing wrong Make sure that the procedure exists within the actual database and make sure that you are using ...Show All

  • Windows Forms Binding a drop down list to a SQL SERVER 2005 database

    How do you bind the items of a dropdown list to SQL SERVER 2005 database Please help me out. Ronald ...Show All

  • .NET Development ftp, for a beginner

    is there an ftp primer... or a freeware or public domain, or inexpensive library, preferably working with the express .net compilers (hopefully with visual basic 2005.express)... some thing to get me started. There is an System.Net.FtpWebRequest class you can wor with (see the documentation). Additionally you can use the wrapper for this class, take a look at: http://www.codeproject.com/cs/internet/ftplib.asp and at http://www.c-sharpcorner.com/UploadFile/danglass/FtpClient12062005053849AM/FtpClient.aspx I suppose you can use one of them :) ...Show All

  • Visual Basic Checkbox Addhandler....

    I need help pronto!!! Im using a datalist that has an ID DL1 and in it is also a datalist with an ID DL2... I called the ItemDataBound Event of DL2 using an addhandler.... Now Im putting a checkbox inside DL2... and I want to see the event of the checkbox using also an addhandler.... but my does'nt seem to work..... I've added a watch but it said.. CheckBoxCheckchanged is not a member of checkbox... what is the problem HELP URGENT!!!! Benson, You will receive faster and better help with your problem if you post the relevant part of the code you are having problems with ...Show All

  • Visual Studio Express Editions Painting into an image box

    Hi I know you can draw lines and things into a picture box with picturebox.CreateGraphics.DrawLine(Pens.Green, 5, 5, 6, 6)   etc   But why will it not work with variables in place of the 5, 5, 6, 6 Is there a way of painting a custom colour instead of a pen colour     Is there a better thing to use that allows me to just change pixel coordinate colours as it is easier to imagine and write code for, this is confusing to me. Yeah that works.. but I want to do it in a loop to draw a map from a game file, using variables in place of the 5, 5, 6, 6 thing. And nothing shows up :/ Also I want to change the colour according to how high the land is ...Show All

  • Visual FoxPro Passing multiple variables from forms w/ VFP7SP1

    I'm an old Clipper (S' 87) programmer that needs to figure out forms with VFP. The attached code generates a form containing a set of four optiongroups that set basic comm port parameters on the local host for serial communication with an instrument (usually an electronic balance). I'm trying to use the form to replace a series of cascading menus in the original program. My intent is for the form to recognize the 5 existing parameters in the main prg, permit user input and then pass any changes back to the calling procedure or function using a array embedded in the form when the user clicks [OK]. Clicking [Cancel] should leave the parameters unchanged. Can somebody please suggest a technique for passing multiple variables back and forth be ...Show All

  • Visual Basic map string value to a variable name dynamically?

    Hi, I'll use a really simple example to describe what I want to do. Say I have a Class Person, with members being Name, Height, Age, Sex. I want to be able to call a function say person.NextValue, and it will return the value of one of the member variables. So if it is called the first time, it will return the value assigned to Name. The second time the value assigned to Height and etc... Any ideas on how to do this I have had a crack at it and have done the following. In my class I have created an arraylist containing the names of each member as a string. When .NextValue is called it steps to the next string in my arraylist and returns the Name of the member. For my approach to work what I need to do now is return the Value associa ...Show All

  • SQL Server How long will a database detach take?

    Hello Everyone, Does anyone know how to calculate for the time it will take for a database to get detached if a detach command is invoked We have an extremely large database and often the log file grows too big that the only way to reduce it is by detaching the database itself. It would be nice if we could calculate how long our database would take to finish detaching. Thanks, Joseph Pareng Joseph...musta na ang dbWizards A detach time depends on how big the database is.  In our environment (average 50-100GB database size) we don't do detach regularly as it takes on the average 5-20 mins.  You mentioned that your transaction log files grow very big.  There are a lot of reasons why the database files ...Show All

  • .NET Development What tool can view the data the sent by IE?

    hi, guys, I remember there is some tool that you can see the data that IE sends or receives, but don't know what tool it is. Does anyone know it Thanks. ...Show All

©2008 Software Development Network