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

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

Elad_23

Member List

Mike Hildner
Stéphane Beauchemin
UncleSam89
Jan Meeusen
The Naked Programmer
BubbaRichard
Leonard Lee
DawnJ
Wellnow
ahmed921983
Santor
KevinBurton
Woyler
Zoinky
Luke Chalkley
Jim Sz
BillyB
chaza
Rajesh batchu
StephanZ
Only Title

Elad_23's Q&A profile

  • SQL Server Upload a Sql website to a host server

    Hi I have built a site in Visual Web developer Express 2005. it works fine on my local machine but when I load it up to the server I get the following error message: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) My connectionstring in my web config file: < add name = " ConnectionString " connectionString = " Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True " providerName ...Show All

  • Software Development for Windows Vista Where should I store Global Application data on Vista?

    I have some files which should be accessible for all users for read and write. Where should put this type of files on Vista In XP I would put it into Program Files\[MyApp] folder, but in Vista you need to have Administrator rights to write into Program Files. I thought about putting files into All Users folder, but not all users can write there. 1.start menu>run>type "cmd" 2. type "set" it will show like this ALLUSERSPROFILE=C:\ProgramData APPDATA=C:\Users\<users>\AppData\Roaming CommonProgramFiles=C:\Program Files\Common Files COMPUTERNAME=RASAK-PC ComSpec=C:\Windows\system32\cmd.exe FP_NO_HOST_CHECK=NO HOMEDRIVE=C: HOMEPATH=\Users\<users> LOCALAPPDATA= ...Show All

  • Visual Basic VB6 dll to .NET- basic question

    Hello there, as the name suggests I'm a complete novice, so apologies in advance... I have a VB6 dll that I need to use in VS2005. After using the VS upgrade tool, the dll (which deals with scanning) works, but not as it should. Instead of opening its own scanning dialog box, I get the scanner dialog box. After doing some research, I've tried to use the tlbimp as well as the regsvr32 tools with no success (the tlb told me the dll is not a library type and the regsvr returned a message saying the DllRegisterServer entry point was not found). I don't have any idea what to do or where to look for info for beginners, and would be grateful for any suggestions. I haven't encountered that error. How are you adding the reference Here's ...Show All

  • Visual Studio Express Editions Making a textbox into an array and reading from each point in the array

    I'm trying to build a name generator, that takes a letter from one point in an array, (Which originally comes from a textbox), and changes that letter to some other character. So for instance, if i put the name "Sam" in textbox one and clicked the "Generate" button, the out put, (Which has random keyboard typings of each letter, like S as "Ess" or "$") would go to textbox 2. So basically i want to build a name generator for The "Leet" or "L33t" Language. What i need to know is: 1.How to assign the Data of Textbox1 to a String array 2. How to read from each point in this array and 3. How to set the output to go to a certain point in an array for textbox2. Any help would be greatly ...Show All

  • Visual Studio Express Editions USB Program

    I am new to Visual Basic and started with Visual Basic Expres. The reason i started to learn Visual Basic is that i want to design USB peripherals. But to do that i have to make a Software with GUI from wich i have to access functions from DLLs provided by the many companies tha produce USB ICs. I know C progamming. My questions are: 1) How can i access functions from a DLL 2)Can fuctions written in C, within a DLL be accesed 3) IS it simple 4) Is Visual Basic the right language to achieve this goal Hi. Yes, you can call functions from a DLL provided that you know the name and parameters. Here's an example of a classic win32 api: Imports System.Run ...Show All

  • .NET Development How to register a program as a trusted application?

    Does anyone know how to register your program as a trusted application in Windows so that the user is not prompted with security concerns throughout its execution ...Show All

  • SQL Server Sql Monitor or something to manage SQL

    Hello Everybody: I need something to manage my querys in SQL server 2000. I dont know how to make a graph of the querys from the users, or make some kind of report of store procedure (user's store procedure, querys, etc), and i'm not talk about Performance Tools of Windows 2000, i need something more complete and visual. any information about this will be very useful. thanks can you be more specific about your requirements it sounds like to me that you want a report of queries being ran against your server, but I am not sure ...Show All

  • Microsoft ISV Community Center Forums Efficent Way to manage multiple textboxes (maybe a loop?)

    This might be really easy, or maybe it's really hard I'm pretty new to VBA I'm using the VBA editor in Excel 2003 to automate some data entry into a spreadsheet. I have several userforms all with various numbers of textboxes, the largest having 34. What I am trying to do is use some sort of loop to clear the value out of each textbox when the user creates a new record. I want to do this mostly because I’m lazy, but also because I foresee the need to be able to expand this later. I’m trying to avoid the following situation: With userform1 .TextBox1.value = "" .TextBox2.value = "" .TextBox3.value = "" [etc…] End With I’ve ...Show All

  • Windows Forms How do you save size and position of windows form?

    Hi everyone, I have a question. On almost all win. apps. when you close the form and reopen it again it remembers the size and position on the screen. Is there a property in the IDE to make your form do that or do you do that programmatically If programmatically can you maybe point me to an example Thank you very much The program does not break. It does not appear that AutoSaveSettings() is being called. In answer to your next question, yes, Save My.Settings on Shutdown is checked in the project properties. ...Show All

  • SQL Server Population size in Naive Bayesian algorithm

    Hi, I am working with Naive Bayesian Algorithm and I do not understand why if the original table has 8.000 rcds the size of the entire population shown in Hystogram viewer is only of 2000. Do you have any answer Histogram In the Attribute Profiles part of the viewer If this is the case, then the most probable cause is that teh column you marked as Key in the mining structure does not contain unique values. Another possibility is that some of the conditional probabilities detected by the algorithm fall below the limit considered by the algorithm (which is controlled by the MINIMUM_DEPENDENCY_PROBABILITY algorithm parameter). So -- you could make sure that the key is unique, or lower the value ...Show All

  • Smart Device Development x509Certificate(filename) constructor missing

    Hi, Using the full framework I am easily able to check the cert that was used to sign an assembly. How do I do this on a PocketPC The x509Certificate class in the Compact Framework requires me to have read the certificate into a byte array. Furthermore, evidence related members are not available in the Compact Framework version of the Reflection namespace... How do I read the certificate from a signed assembly into a byte array Platform invoke I've been combing the web for days. Can someone please help me out. Thanks. Thanks Sandy. But I titled the thread wrong, so I will create a new one. I have to find out how to deal with the lack of the x509Certificate.CreateFromSignedFile(filename) member. ...Show All

  • Visual Basic Region/Xml-comment Text Color Bug

    I found this weird bug the other day, which colors the text describing a #Region or an Xml-comment that is collapsed. The bug can be recreated like this: 1. Create a Project(e.g. VB Windows Application, the only one I tried) . 2. Create a #Region in the code and name it something, preferably a long string for more colors. 3. Collapse the region so that only the name of it is visible. 4. Place the input cursor above or in front of the region. 5. Press Ctrl+X until the line containing the collapsed region is cut to the clipboard. 6. Finally press Ctrl+Z to undo the deletion. -The description of the region should now be colored. Note: I have not found this bug to cause any damage to the project or source files. The coloring will disappe ...Show All

  • SQL Server Can I build a cube using a SQL data source and a DB2 data source

    We are trying to build a cube using data from SQL and DB2. Is this possible and if so, how db1 - SQL Server 2005 db2 - DB2\AIX64 We are using the Microsoft OLE DB Provider for DB2. On issue is encountered when defining the DB2 connection; AIX is not an option for the OS, so we are using DB2\NT. I can get both Data Sources defined and the connections test successfully. I can get both Data Views defined just fine. When I build the Dimension using the DB2 Data Source, the only way to get it to process was to Check the box in the SQL Data Source definition that read something like 'Maintain a references to another object'. That actually changes the Provider in the connection string to DB2OLE ...Show All

  • SQL Server Problem installing SQL 2005 Server Express

    I have the beta versions installed, got an error: Microsoft SQL Server 2005 Setup beginning at Wed Aug 16 18:14:14 2006 Process ID : 4668 c:\8c27e35b5d509dc8609c33e266\setup.exe Version: 2005.90.2047.0 Running: LoadResourcesAction at: 2006/7/16 18:14:13 Complete: LoadResourcesAction at: 2006/7/16 18:14:13, returned true Running: ParseBootstrapOptionsAction at: 2006/7/16 18:14:14 Loaded DLL:c:\8c27e35b5d509dc8609c33e266\xmlrw.dll Version:2.0.3609.0 Complete: ParseBootstrapOptionsAction at: 2006/7/16 18:14:14, returned true Running: ValidateWinNTAction at: 2006/7/16 18:14:14 Complete: ValidateWinNTAction at: 2006/7/16 18:14:14, returned true Running: ValidateMinOSAction at: 2006/7/16 18:14:14 Complete: ValidateMinOSAction at: 2006/7/16 18 ...Show All

  • Windows Forms How do i access BindingSource current row ?

    How do i access BindingSource current row and change value of specific field I have client table with 4 elements client_guid code name surname My form is binded through BindingSource to all fields except client_guid I want to create new client. So i enter values in all fields and hit save. But i get error that client_guid should be supplied. I use BindingSource.AddNew() and then i use BindingSource.EndEdit() to save new clients - this works fine and new row is created, but it works only if i also bind client_guid to some textbox... sure it is not what i want. I wan to assign client_guid value in code not from UI textbox I can't get it how do i access this client_guid field to set it's value. I would do it before callin ...Show All

©2008 Software Development Network