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

Software Development Network >> Suren...'s Q&A profile

Suren...

Member List

gfcgamer
David Toland
hafez
yss
Prabs
Brian Speck
Radenko Zec
DrNickRiviera
Peter van de Put
craig kelly-soens xpectworld.net
Erik Steiner
Dawnyy
Greg Palmer
p3aul
burov
Kishmir L. Burke
David Maltby
Pecachew
boriss
Ujoshi
Only Title

Suren...'s Q&A profile

  • Visual Basic How to Read, Write, Modify & Remove Application Settings From Config File Using VB 2005?

    .NET Framework 1.1 provides System.Configuration Namespace which exposes methods for reading information from the config file, but there are no methods for modifying the contents. Is there anyway this can be done using Visual Basic 2005, without implementing a custom class I have already set it up to use this sort of settings setup and I have used the My.Settings.Save() command after having made a series of changes. I set it up so that there are 18 button name and link settings and 5 user name, password and limits (eg is admin sort of things). I get the user name things to work perfectly, which can be changed by an admin. ...Show All

  • Visual C# TextBox

    Hi every one, I have a TextBox on witch the user has to enter a series of INTeger numbers separated by comma. Each of these numbers need to be assigned to parameteres intro a SQL query... i am new to C# ...so,  how can i "read" the numbers and assign them to variables... it is unknown how many numbers the user will enter. Thank you , i appreciate any input. I dont know if this will help, but here is a SQL UDF implementation of split: CREATE FUNCTION SPLIT (@S AS varchar(8000), @DELIM AS varchar(8000))    RETURNS @SPLITTABLE TABLE (ID INT IDENTITY(0,1) PRIMARY KEY, VALUE varchar(8000)) AS   &nbs ...Show All

  • SQL Server CTP June Dev.Edition:TCP/IP protocol is disabled at default

    I have tested Developer Edition CTP June but when I connect to remote SQL Server, " A connection was successfully established with the server, but then an error occurred during the pre-login handshake." error occured. I find out TCP/IP protocol is disabled at default at CTP June. When you meet with same situation, try enable TCP/IP protocol being enabled on "SQL Server Configration Manager" It's bug or by design Regards Hajime Gondo This is in fact by design. As part of only making available services that you need we are defaulting the Developer Edition to not listen on TCP/IP. -Euan ...Show All

  • Visual Basic Accessing data from a datatable

    Hi, I've been really struggling with this concept for a while now so i really need help. Im trying to retrieve data from one of my datatables but i just dont understand all this datarow/datacolumn stuff. I would have thought it would have been a simple exercise but its not. Can someone do some sample code for me. Lets just say i have the following in my project. Dataset called Dataset1 Datatable called Datatable1 which looks like this: Topic Data1 Data2 Data3 A 100 200 300 B 400 500 600 C 700 800 900 If i want to retrieve the value fro ...Show All

  • SQL Server Client side redirect -- timeout period

    Can I configure the amount of time that the redirect will ping between the two servers if it cannot get a connection to either ...Show All

  • Visual C# Missing character in string

    Hi to all! I miss a certain character in my string! The character is the symbol for female (this editor won't let me use it). It indicates the end of a page in a .txt file that is converted from a .pdf file. Has anyone an idea how I can still use it with a string.indexOf(symbol) *UPDATE* The question is actually, how can I select a form feed character (= ascii code 12 = page-break) from a string Kind regards, Nele As long as you know the character code for it you can write the character literal with an escape sequence, e.g. string.IndexOf('\xNNNN') ...Show All

  • Visual C++ Linkage C, UNRESOLVED LINKER ERRORS.

    I wanna use Linkage C in my code in visual Studio 2003 , when i add library file in Tools/Options in Lib section (in these case my library is C:\WINDDK\3790\lib\wxp\i386) I get linker error ! that can not resolve some things. test error LNK2019: unresolved external symbol @_RTC_CheckStackVars@8 referenced in function "unsigned int __stdcall ATL::_AtlGetThreadACPThunk(void)" ( _AtlGetThreadACPThunk@ATL@@YGIXZ) test error LNK2001: unresolved external symbol @_RTC_CheckStackVars@8 test error LNK2001: unresolved external symbol @_RTC_CheckStackVars@8 test error LNK2019: unresolved external symbol __RTC_CheckEsp referenced in funct ...Show All

  • Visual Basic EventID ?? is now InstanceID

    Guys, On VB 2005 microsoft had the wonderfull idea of change the Eventid for InstanceID.  I'm trying of retrieve the eventid in my application but it come with a very long number in some cases.  How can I retrieve the EventID that you can see in the Event Viewer instead of the InstanceID   Is there a way I can convert the InstanceID to EventID Ejemple: Private Sub btnSee_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFind.Click ' Create an EventLog instance and assign its source. 'Dim myLog As New EventLog("myNewLog", ".", "MySource") Dim entry As EventLogEn ...Show All

  • Visual Studio Express Editions Flash Movie

    Hello everybody, I've this question: How can I add a Flash Movie with c# and visual web developer express edition, because a need to add a banner on some web page, and I don't know how, and I don't want to use dreamweaver. Thanks for your help. hi, you just embed the swf to your page body its something like that <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  codebase=" http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0 "  ID=employee WIDTH=514 HEIGHT=184>  <PARAM NAME=movie VALUE="employee.swf"> <PARAM NAME=quality VALUE=high> ...Show All

  • SQL Server SSIS will not start after SQL Server 2005 SP1 upgrade

    Hi guys, I have experienced a problem with a SQL Server 2005 SP1 upgrade, where hotfix.exe reported an error during the SSIS component upgrade, and then the SSIS service would not start back up. I have since attempted an additional SP1 upgrade on the server, which completed successfully, however the SSIS service still will not start. The server is running Windows Server 2003 Standard Edition SP1 with SQL Server 2005 Standard Edition (x86), which had been a clean RTM install prior to the SP1 upgrade attempt. The following information was located in the C:\Windows\Hotfix\DTS9\Logs\DTS9_Hotfix_KB913090_0.log file (the servers name has bee ...Show All

  • .NET Development Namespace or type specified in the Imports 'MySql.Data.MySqlClient' doesn't contain any public member or cannot be found.

    Dear All, I'm trying to connect to a MySQL server via ASP.NET 2.0 using the Visual Web Developer 2005 Express Edition. I've downloaded and installed the MySQL Connector/Net . I'm using the following code: <% @ Page Language ="VB" debug ="true" %> <% @ Import Namespace = "System.Data" %> <% @ Import Namespace = "MySql.Data.MySqlClient" %> <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < script language =vbscript runat ="server"> Sub Page_Load( ByVal sender As Object, ByVal e As EventAr ...Show All

  • Windows Forms Replicating VISIO Functionality (IMPORTANT)

    I have to replicate VISIO's ability to create the FLOWCHARTS using VB.NET.  Please provide me a basic roadmap, as to how should I proceed . I am new to GDI and am going through the basics through the material and source code availaible over net.. Would like to have active guidance from the members.. My requirement is to bind the flowchart objects  ...Show All

  • Visual C# Process

    Does anyone have a code snippet that shows how to kill Process on Remote Pc (I have all permision) Dear PJ. van de Sande I have two Pc have the same WorkGroup and I can Log on Remotly by using Remote Desktop so I think my code must be done and Enable to remote I respect your help and your answer thanks ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Convert Samples from Directx 9.0 to Samples for Directx 9.0c

    Hello everybody! I want to make a 3d engine out of the samples of dx9.0c but there is a small problem. In Directx 9.0 SDK there are some samples which i want to have in Directx 9.0c.Is there a way to take these samples of dx 9.0 in dx 9.0c samples or is there anywhere a site where i can find other samples for Directx 9.0c,for example bumpmapping ,glas effects,particle effects or water things These would are some of the samples i need for dx 9.0c but i can’t find them anywhere Thanks for responds All samples from the old DirectX 9.0 SDK should still work with the newest SDK as long as you copy all s ...Show All

  • Windows Forms Problem resizing my DualList UserControl

    Hi, I was wondering if anybody could help me with some resizing I have usercontrol with 2 listviews and 4 buttons in the middle to move items between them. I have tried but doesnt resize properly THis is what I have UserControl  =DualList 3 Panels 4 buttons 2 listviews 2 labels   (lblAvailable,lblSelected) PanelLeft Docked Left LblLeft within panel left docked top lvwLeft within panel left docked fill Panel Middle docked none BtnMoveoneLeft BtnMoveAllToLeft BtnMoveOneRight BtnMoveAllToRight PanelRight Docked right LblRight within panel left docked top lvwRight within panel left docked fill    usercontrol_Res ...Show All

©2008 Software Development Network