22 Discussion / Question Topics

Remove Filter
Member Avatar for Oxiegen

Let's say, for instance, that you posted an answer to a question. Only to realize a few seconds later that your answer is not correct. How do I delete that post, or do I just add a comment for the moderators, asking them to remove it for me?

Member Avatar for JamesCherrill
0
615
Member Avatar for Oxiegen

Hi! It's been a while since I last posted here. I've just gotten started with Windows Service, and have created a sort of 24/7 service to update a database. But because it's my very first project (besides the tutorial one) I feel that I could use some assistance in checking …

Member Avatar for Paul.Esson
0
1K
Member Avatar for Oxiegen

Hi. I'm in the process of learning Swift coding and decided to attempt a porting of one of my existing Windows programs. The thing is, that program relies heavily on connecting to a remote MySQL server. I've seen a few attempts to provide various connectors to an assortment of databases, …

Member Avatar for Tim_11
0
1K
Member Avatar for Oxiegen

Hi guys! It's been a while since I last posted here. I'm having an issue with not being able to remove non-installed fonts. Meaning, the fonts are not installed in the Windows/Fonts folder and cannot be uninstalled the proper way. These fonts came with some kind of hidden-object game that …

Member Avatar for rproffitt
0
263
Member Avatar for Oxiegen

Hey, I've got kind of a weird problem. I've set up a local network at home using a Netgear WNDR3700v3 router, which works flawlessly. And I've set it up so that connected computers get all the IP-information from the router (DHCP), including using the router as the dns. But every …

Member Avatar for Oxiegen
0
151
Member Avatar for Oxiegen

Hi. I'm currently developing a CRM in ASP.NET 4.0. It has a database connection that resides on a separate computer. The development and dev-hosting of the site is done locally. Until yesterday everything worked almost flawlessly (except for those part I'm working on), but suddenly all postbacks and redirects slowed …

Member Avatar for Oxiegen
0
1K
Member Avatar for Oxiegen

Hi! Ok. So I've got this problem. I have a reference to a WebService that provides a whole bunch of classes representing a table in a database. Now, it's a simple thing to retrieve a list of all those classes and store them for future use. What I would like …

Member Avatar for Oxiegen
0
137
Member Avatar for Oxiegen

Hey! I know Dani has a lot of important stuff to do, but I am a bit curious. I thought it was kind of nifty that you could type :) or :-) and get that yellow little smiley staring back at you. Is that a thing of the past, or …

Member Avatar for Oxiegen
0
56
Member Avatar for Oxiegen

Hello. I'm having a bit of difficulty implementing Drag and Drop. The scenario is this. I have a project with an MDI child where I want to drop documents from Windows Explorer. The code is all in place (this is just for debugging purposes) and I have set AllowDrop to …

Member Avatar for Oxiegen
0
216
Member Avatar for Oxiegen

I'm not entirely sure if this thread belongs here, or in "JavaScript / DHTML / AJAX". Anyway. I have a bit of a problem here, hoping that a kind soul might be able to help. On one of the webpages for the site I'm developing I have a bunch of …

Member Avatar for Oxiegen
0
196
Member Avatar for Oxiegen

Hi, it's me agin. I would like to know if it's possible to customize a tabcontrol, so that I can have the tabpages shown horizontally when alignment is set to left or right. If so, could someone give an example, or a link, of how to accomplish this? I've been …

Member Avatar for Oxiegen
0
360
Member Avatar for Oxiegen

Hi! It's been a while since i last posted, and now I'm in need of some expert assistance. I've found this Control written in C# with .NET 1.0 on vbAccelerator and wanted to use it with my current project. I decided to convert the entire code to VB.NET but one …

Member Avatar for Oxiegen
0
224
Member Avatar for Oxiegen

Hi, all! I'm trying to send a HttpWebRequest to an url that, other than %20, does not take escaped characters. But for some reason, when I do: [ICODE]_HttpWebRequest = DirectCast(System.Net.HttpWebRequest.Create(New Uri("http://web_address")), System.Net.HttpWebRequest)[/ICODE] I end up with an escaped uri string. For example, a string containing the swedish letters å, ä …

0
300
Member Avatar for Oxiegen

Hi, all! Here's another one that's starting to boggle my mind. I have a form that, with a button, adds a bunch of text-fields in a tablerow. For every press of the button another row is added. This works in both IE and FF. No probs. When pressing another button, …

Member Avatar for ~s.o.s~
0
4K
Member Avatar for Oxiegen

Hi. As suggested by ~s.o.s~ in another thread, I'm posting this question here in the high hopes that someone might be able to help me. I have a JSON string coming in from a javascript that I need to convert to a predefined class object. I'd even settle for a …

Member Avatar for Oxiegen
0
360
Member Avatar for Oxiegen

Hi! I don't know if this has been answered already and a search gave to many results. I have a website that is built with ASP.NET and that uses some javascript. When I run a debug on localhost to check for errors the ASP.NET code works just fine, but every …

Member Avatar for hielo
0
202
Member Avatar for Oxiegen

Hi! Sorry about my bad grammer and/or spelling. English is not my native language. I don't know if this already have been asked and answered, however... I'm currently developing a program in which it will be possible to select table fields from a database and set various criteria using dropdown-lists. …

Member Avatar for Oxiegen
0
236
Member Avatar for Oxiegen

Hi. I'm having some difficulty here. Perhaps someone here has some ideas. I would like to implement some kind of P2P functionality in an existing application that is designed to work within a local network. The concept of this functionality is that the application stores the username of the current …

0
86
Member Avatar for Oxiegen

Hi! I've come across an interesting, and annoying, bug(?) in Visual Studio 2005. I don't know if anyone else has been experiencing this bug, and I don't know if this is something that exists in all versions, but it does in mine. I'm using version 8.0.50727.42. I have set the …

0
71
Member Avatar for Oxiegen

Hi, guys! Got a problem here. :) I have a form that when it loads spawns a thread which in turn fills a publicly declared dataset with a table by a dataadapter and then binds a field from the table to a combobox. [code=vb]combobox1.DisplayMember = "fieldName" combobox1.ValueMember = "fieldName" combobox1.DataSource …

Member Avatar for Oxiegen
0
189
Member Avatar for Oxiegen

Hello! Now I have another problem. I have successfully implemented cross-page postback with ASP.NET 1.1 using: [code] [COLOR=#0000ff]Protected[/COLOR] [COLOR=#0000ff]Sub[/COLOR] submit_Click([COLOR=#0000ff]ByVal[/COLOR] sender [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]Object[/COLOR], [COLOR=#0000ff]ByVal[/COLOR] e [COLOR=#0000ff]As[/COLOR] System.EventArgs) [COLOR=#0000ff] For[/COLOR] [COLOR=#0000ff]Each[/COLOR] o [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]Object[/COLOR] [COLOR=#0000ff]In[/COLOR] Page.Request.Form [COLOR=#0000ff] Dim[/COLOR] ctlName [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]String[/COLOR] = o.ToString() [COLOR=#0000ff] If[/COLOR] [COLOR=#0000ff]Not[/COLOR] ctlName.StartsWith(UniqueID & [COLOR=#800000]":"[/COLOR]) [COLOR=#0000ff]Then [/COLOR][COLOR=#0000ff] …

0
118
Member Avatar for Oxiegen

Hi, all! I've been trying to pass a javascript variable to an asp.net webapp through a hidden input field. All according to post [URL="http://www.daniweb.com/techtalkforums/thread26184.html"]http://www.daniweb.com/techtalkforums/thread26184.html[/URL]. But something seems to be garbled. Here's what parts of my aspx code looks like. [code] ... [COLOR=#0000ff] var[/COLOR] src = document.documentElement.outerHTML; document.getElementById([COLOR=#800000]"pSource"[/COLOR]).Value = src; } …

Member Avatar for Oxiegen
0
137

The End.